:root {
  --bg: #05070c;
  --bg-soft: rgba(12, 16, 24, 0.82);
  --card: rgba(13, 18, 28, 0.82);
  --card-strong: rgba(17, 24, 38, 0.96);
  --text: #eef2ff;
  --muted: #a8b3c9;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --primary: #6be5ff;
  --primary-2: #8b7bff;
  --success: #89f0a8;
  --warning: #ffd98e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(107,229,255,0.12), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(139,123,255,0.12), transparent 25%),
    linear-gradient(180deg, #05070c 0%, #070b12 40%, #04060a 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.site-shell {
  position: relative;
  overflow: hidden;
}

.grid-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 78%);
  opacity: 0.35;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 12, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(255,255,255,0.06));
}

.brand-name {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tag {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.desktop-nav,
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a,
.link-btn {
  color: var(--muted);
  font-size: 0.95rem;
}

.desktop-nav a:hover,
.link-btn:hover { color: #fff; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  margin: 4px auto;
}

.mobile-nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  background: rgba(5, 7, 12, 0.94);
  border-bottom: 1px solid var(--line);
}

.mobile-nav.open { display: flex; padding-bottom: 16px; }
.mobile-cta { width: 100%; justify-content: center; }

.section,
.section-tight {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 20px;
  position: relative;
}

.section-tight { padding-top: 24px; padding-bottom: 24px; }

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 40px;
  align-items: center;
  padding-top: 64px;
}

.eyebrow-pill,
.eyebrow,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(107,229,255,0.2);
  background: rgba(107,229,255,0.08);
  color: #d9f9ff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 16px 0;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.hero h1 span,
.section-heading h2 span,
.offer-card h2 span,
.final-cta h2 span {
  background: linear-gradient(90deg, #6be5ff 0%, #8b7bff 55%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext,
.section-heading p,
.story-section p,
.dashboard-text p,
.fit-card p,
.offer-card p,
.final-cta p,
.faq-item p,
.footer-disclaimer,
.pain-card p,
.step-card p,
.comparison-card li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 26px;
}

.cta-row.center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #6be5ff 0%, #8b7bff 100%);
  color: #071018;
  box-shadow: 0 14px 30px rgba(107,229,255,0.18);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: var(--line);
  color: var(--text);
}

.btn-full { width: 100%; }

.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-proof-grid div,
.trust-item,
.pain-card,
.step-card,
.comparison-card,
.fit-card,
.offer-card,
.final-cta,
.faq-item,
.hero-card,
.panel-window {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mini-proof-grid div {
  padding: 18px;
  border-radius: 18px;
}

.mini-proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.mini-proof-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-visual { position: relative; }

.orbit-card {
  padding: 20px;
  border-radius: 28px;
  position: relative;
}

.hero-card::before,
.offer-card::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(107,229,255,0.14), transparent 28%, transparent 70%, rgba(139,123,255,0.18));
  pointer-events: none;
}

.hero-card-header,
.mock-topline,
.mock-grid,
.panel-content,
.content-metrics,
.offer-points,
.feature-list {
  display: grid;
}

.hero-card-header {
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--muted);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(137,240,168,0.15);
}

.dashboard-mock {
  border-radius: 22px;
  padding: 20px;
  background: rgba(5, 9, 14, 0.8);
  border: 1px solid rgba(255,255,255,0.05);
}

.mock-topline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.mock-topline div,
.mock-stat,
.content-metrics div,
.reasoning-box,
.panel-content aside,
.panel-content section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 16px;
}

label,
.mock-stat label,
.content-metrics label,
.mock-topline label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.mock-topline strong,
.content-metrics strong { font-size: 1.08rem; }

.mock-chart {
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(circle at 12% 20%, rgba(107,229,255,0.18), transparent 24%),
    linear-gradient(180deg, rgba(12,18,26,0.75), rgba(9,13,20,0.95));
  background-size: 38px 38px, 38px 38px, auto, auto;
  border: 1px solid rgba(255,255,255,0.05);
}

.chart-line {
  position: absolute;
  inset: auto 0 0 0;
  height: 70%;
  background: linear-gradient(180deg, rgba(107,229,255,0), rgba(107,229,255,0.1));
  clip-path: polygon(0% 85%, 8% 84%, 17% 80%, 25% 73%, 33% 76%, 40% 68%, 47% 70%, 56% 57%, 63% 60%, 71% 46%, 79% 50%, 87% 28%, 94% 33%, 100% 8%, 100% 100%, 0 100%);
}

.chart-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #6be5ff, #8b7bff);
  clip-path: polygon(0% 85%, 8% 84%, 17% 80%, 25% 73%, 33% 76%, 40% 68%, 47% 70%, 56% 57%, 63% 60%, 71% 46%, 79% 50%, 87% 28%, 94% 33%, 100% 8%, 100% 12%, 94% 37%, 87% 32%, 79% 54%, 71% 50%, 63% 64%, 56% 61%, 47% 74%, 40% 72%, 33% 80%, 25% 77%, 17% 84%, 8% 88%, 0% 89%);
}

.chart-overlay {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.chart-overlay-1 { width: 180px; height: 180px; background: rgba(107,229,255,0.16); left: 10%; bottom: 10%; }
.chart-overlay-2 { width: 150px; height: 150px; background: rgba(139,123,255,0.18); right: 8%; top: 8%; }

.chart-badges {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chart-badges span,
.offer-points span,
.trust-item,
.content-header .chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eef6ff;
  font-size: 0.88rem;
}

.mock-grid,
.feature-list,
.offer-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  border-radius: 16px;
  text-align: center;
  color: #e7f4ff;
  font-weight: 600;
}

.pain-grid,
.steps-grid,
.fit-grid {
  display: grid;
  gap: 18px;
}

.pain-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.pain-card,
.step-card,
.fit-card,
.comparison-card,
.faq-item,
.final-cta {
  border-radius: 24px;
  padding: 26px;
}

.pain-card h3,
.step-card h3,
.fit-card h3,
.comparison-card h3,
.offer-card h2,
.final-cta h2,
.faq-item summary {
  margin: 0 0 12px;
}

.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(107,229,255,0.12);
  border: 1px solid rgba(107,229,255,0.18);
  margin-bottom: 18px;
  font-weight: 800;
}

.comparison-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}

.comparison-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--muted);
}

.dashboard-section {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 26px;
  align-items: center;
}

.feature-list {
  margin-top: 22px;
}

.feature-list div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.feature-list strong { display: block; margin-bottom: 6px; }
.feature-list span { color: var(--muted); }

.panel-window {
  border-radius: 28px;
  overflow: hidden;
}

.panel-topbar {
  display: flex;
  gap: 8px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.panel-topbar span {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.panel-content {
  grid-template-columns: 280px 1fr;
  gap: 16px;
  padding: 16px;
  background: rgba(8, 12, 18, 0.82);
}

.panel-content ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.panel-content li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
  color: var(--muted);
}
.panel-content li.active {
  color: #fff;
  border-color: rgba(107,229,255,0.22);
  background: rgba(107,229,255,0.08);
}
.ticker { font-weight: 800; color: #fff; }
.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.reasoning-box { margin-bottom: 14px; }
.content-metrics { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 26px;
}

.offer-copy h2,
.final-cta h2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.08; }

.lead-form {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 24px;
  background: rgba(7, 11, 18, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
}

.lead-form h3 { margin: 0 0 10px; font-size: 1.35rem; }
.lead-form p { margin-top: 0; color: var(--muted); }
.lead-form label { color: #eef2ff; margin-bottom: 14px; }
.lead-form input,
.lead-form select {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: white;
  outline: none;
}
.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(107,229,255,0.45);
  box-shadow: 0 0 0 4px rgba(107,229,255,0.12);
}
.lead-form small,
.form-message {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list { display: grid; gap: 14px; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }

.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 42px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
}
.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-brand span,
.footer-links a { color: var(--muted); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-disclaimer { text-align: right; font-size: 0.92rem; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1120px) {
  .hero,
  .dashboard-section,
  .offer-card,
  .comparison-wrap,
  .footer {
    grid-template-columns: 1fr;
  }
  .comparison-divider, .footer-disclaimer { text-align: left; }
  .footer { padding-top: 24px; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .desktop-nav, .topbar-actions { display: none; }
  .menu-toggle { display: block; }
  .hero { padding-top: 44px; }
  .pain-grid,
  .fit-grid,
  .trust-strip,
  .mini-proof-grid,
  .mock-topline,
  .mock-grid,
  .content-metrics,
  .panel-content,
  .feature-list,
  .offer-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section, .section-tight { padding-left: 16px; padding-right: 16px; }
  .topbar { padding-left: 16px; padding-right: 16px; }
  .hero h1 { font-size: 2.8rem; }
  .section-heading h2, .offer-copy h2, .final-cta h2 { font-size: 2rem; }
  .btn { width: 100%; }
  .cta-row { flex-direction: column; }
  .pain-card, .step-card, .fit-card, .comparison-card, .faq-item, .offer-card, .final-cta, .lead-form { padding: 20px; }
}
