:root {
  --bg: #0B1220;
  --bg-2: #0F1929;
  --bg-3: #162035;
  --fg: #FFFFFF;
  --fg-2: #8BA3C7;
  --cyan: #00D9FF;
  --amber: #FFB84D;
  --red: #FF4D6A;
  --green: #00E676;
  --border: rgba(255,255,255,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--cyan); }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-2);
  display: none;
}
@media (min-width: 640px) { .nav-tagline { display: block; } }
.nav-cta {
  background: rgba(0,217,255,0.15);
  border: 1px solid rgba(0,217,255,0.3);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s;
  margin-left: auto;
}
.nav-cta:hover { background: rgba(0,217,255,0.25); border-color: rgba(0,217,255,0.5); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,217,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,184,77,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,217,255,0.1);
  border: 1px solid rgba(0,217,255,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--cyan), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.hero-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan);
}
.hero-stat-label {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 2px;
}
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-phone {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 60px rgba(0,217,255,0.05);
}
.hero-phone::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,217,255,0.3), transparent, rgba(255,184,77,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.phone-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.phone-badge {
  background: var(--cyan);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}
.stream-list { display: flex; flex-direction: column; gap: 8px; }
.stream-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-3);
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.stream-row:hover { border-color: rgba(0,217,255,0.2); }
.stream-row-best {
  border-color: rgba(0,230,118,0.3);
  background: rgba(0,230,118,0.05);
}
.stream-left { display: flex; align-items: center; gap: 12px; }
.stream-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}
.stream-name {
  font-size: 14px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}
.stream-tagline {
  font-size: 11px;
  color: var(--fg-2);
}
.stream-right { text-align: right; }
.stream-price {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.stream-score {
  font-size: 11px;
  color: var(--cyan);
}
.stream-best-tag {
  display: inline-block;
  background: var(--green);
  color: var(--bg);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 2px;
}

/* Section base */
.section { padding: 100px 0; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 560px;
  line-height: 1.65;
}

/* Compare section */
.compare { background: var(--bg-2); }
.compare-header { margin-bottom: 64px; }
.compare-table {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.compare-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 24px;
  background: rgba(255,255,255,0.03);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-2);
  border-bottom: 1px solid var(--border);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.2s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.02); }
.compare-row-best { background: rgba(0,230,118,0.04); }
.compare-row-best:hover { background: rgba(0,230,118,0.07); }
.compare-service { display: flex; align-items: center; gap: 14px; }
.compare-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}
.compare-service-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
}
.compare-service-tag {
  font-size: 11px;
  color: var(--fg-2);
  margin-top: 2px;
}
.compare-price {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.compare-score {
  font-size: 14px;
  color: var(--cyan);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}
.compare-value-badge {
  display: inline-block;
  background: var(--green);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Optimize section */
.optimize {}
.optimize-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 768px) {
  .optimize-grid { grid-template-columns: 1fr 1fr; }
}
.opt-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}
.opt-card-cancel { border-color: rgba(255,77,106,0.2); }
.opt-card-save { border-color: rgba(0,230,118,0.2); }
.opt-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.opt-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.opt-label-red { color: var(--red); }
.opt-label-green { color: var(--green); }
.opt-big-number {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
}
.opt-big-number-red { color: var(--red); }
.opt-big-number-green { color: var(--green); }
.opt-description {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}
.opt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.2s;
}
.opt-btn:hover { opacity: 0.85; }
.opt-btn-cancel {
  background: rgba(255,77,106,0.15);
  color: var(--red);
  border: 1px solid rgba(255,77,106,0.3);
}
.opt-btn-save {
  background: rgba(0,230,118,0.15);
  color: var(--green);
  border: 1px solid rgba(0,230,118,0.3);
}
.optimize-total {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(0,217,255,0.08), rgba(255,184,77,0.06));
  border: 1px solid rgba(0,217,255,0.2);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.optimize-total-label {
  font-size: 15px;
  color: var(--fg-2);
}
.optimize-total-value {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--amber);
}

/* Autopilot section */
.autopilot {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.autopilot::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,217,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.autopilot-schedule {
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.schedule-header {
  display: grid;
  grid-template-columns: 160px repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 0 0 0 8px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 160px repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}
.schedule-service {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-3);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  border: 1px solid var(--border);
}
.schedule-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
}
.schedule-month {
  height: 40px;
  border-radius: 6px;
  position: relative;
}
.schedule-active {
  background: linear-gradient(135deg, rgba(0,230,118,0.3), rgba(0,217,255,0.3));
  border: 1px solid rgba(0,230,118,0.4);
}
.schedule-inactive {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 10px 16px;
  background: rgba(0,217,255,0.08);
  border: 1px solid rgba(0,217,255,0.2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--cyan);
}

/* Manifesto */
.manifesto {
  text-align: center;
  padding: 120px 0;
}
.manifesto h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.1;
}
.manifesto h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.manifesto p {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
}
.footer-logo span { color: var(--cyan); }
.footer-copy {
  font-size: 13px;
  color: var(--fg-2);
}

/* Responsive */
@media (max-width: 640px) {
  .compare-table-header { grid-template-columns: 1.5fr 1fr 1fr; }
  .compare-table-header span:nth-child(2) { display: none; }
  .compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
  .compare-row span:nth-child(2) { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .schedule-header { grid-template-columns: 100px repeat(6, 1fr); font-size: 9px; }
  .schedule-row { grid-template-columns: 100px repeat(6, 1fr); }
}
