/* ============================================================
   ValuationOS — Apple-style minimal landing
   ============================================================ */

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

:root {
  --bg:           #000;
  --surface:      #0a0a0c;
  --card:         #0e0e12;
  --border:       rgba(255,255,255,0.08);
  --blue:         #4fc3f7;
  --purple:       #a78bfa;
  --green:        #34d399;
  --text:         #f5f7fb;
  --text-sec:     #a0a8b4;
  --text-muted:   #6b7380;
  --font: -apple-system, 'SF Pro Display', 'Inter', 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  line-height: 1.5;
}

::selection { background: rgba(79,195,247,0.3); color: var(--text); }

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--blue); color: #000;
  padding: 10px 18px; border-radius: 8px;
  font-weight: 700; z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── REVEAL ANIMATIONS (focus-in: fade + scale + blur) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(.16,1,.3,1),
    transform 1s cubic-bezier(.16,1,.3,1),
    filter 1s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform, filter;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #000;
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em;
  padding: 15px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #7dd8f8;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(79,195,247,0.32);
}
.btn-primary.btn-lg {
  font-size: 17px;
  padding: 17px 38px;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--text-sec);
  font-size: 14px; font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.24);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 56px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  min-width: 0;
}
.nav-logo {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo span { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0;
  transform: translateX(-50%) scale(0.6);
  transition: opacity 0.35s cubic-bezier(.16,1,.3,1), transform 0.35s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 0 12px rgba(79,195,247,0.6);
}
.nav-links a.active {
  color: var(--text);
}
.nav-links a.active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ── HERO ── */
#hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(79,195,247,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-center {
  position: relative;
  max-width: 900px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}
h1 {
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 28px;
}
.gradient-text {
  background: linear-gradient(120deg, var(--blue) 0%, var(--purple) 45%, #c4b5fd 70%, var(--blue) 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-shift 10s ease-in-out infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-tagline {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--text-sec);
  max-width: 580px;
  margin: 0 auto 44px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ── BIG STATEMENT (between hero & pillars) ── */
#statement {
  padding: 180px 24px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.statement-text {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 1000px;
  margin: 0 auto;
}
.statement-text .muted-line {
  color: var(--text-muted);
}
.statement-text .arrow {
  color: var(--text-muted);
  font-weight: 300;
  display: inline-block;
  margin: 0 0.15em;
}

/* ── PILLAR SECTION (Valuation, DD) ── */
.pillar {
  padding: 110px 24px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.pillar-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pillar-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.pillar h2 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 24px;
}
.pillar-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-sec);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 400;
}
.pillar-visual {
  display: flex;
  justify-content: center;
}

/* ── MOCK WINDOW (used in pillars) ── */
.mock-window {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 540px;
  box-shadow:
    0 0 0 1px rgba(79,195,247,0.05),
    0 50px 120px rgba(0,0,0,0.7),
    0 0 90px rgba(79,195,247,0.06);
  text-align: left;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.mock-titlebar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.mock-title {
  font-size: 11px; color: var(--text-muted);
  font-weight: 500; flex: 1; text-align: center;
  letter-spacing: 0.01em;
}
.mock-body { padding: 24px; }
.mock-deal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.mock-deal-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
}
.mock-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 22px;
}
.mock-metric {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.mock-metric-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.mock-metric-value {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.02em;
}
.mv-b { color: var(--blue); }
.mv-a { color: #fbbf24; }
.mv-g { color: var(--green); }
.mock-progress-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.mock-pl { font-size: 11px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.mock-pb { flex: 1; height: 5px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.mock-pf {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), #7dd8f8);
  position: relative; overflow: hidden;
}
.mock-pf::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2.4s infinite;
}
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }
.mock-pct { font-size: 10px; font-weight: 700; color: var(--blue); }

/* ── DD MOCK (span highlight) ── */
.dd-mock {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 30px;
  width: 100%;
  max-width: 540px;
  text-align: left;
  box-shadow:
    0 0 0 1px rgba(167,139,250,0.04),
    0 50px 120px rgba(0,0,0,0.7),
    0 0 90px rgba(167,139,250,0.05);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.dd-mock-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}
.dd-mock-doc {
  font-family: 'SF Mono','Fira Mono', ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-sec);
  padding: 18px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
}
.dd-mock-doc .span-hl {
  background: rgba(167,139,250,0.18);
  color: var(--text);
  padding: 2px 5px;
  border-radius: 4px;
  border-bottom: 1.5px solid var(--purple);
}
.dd-mock-meta {
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dd-mock-meta .dot {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── STEPS (How it works) ── */
#steps {
  padding: 140px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.steps-inner { max-width: 1100px; margin: 0 auto; }
.steps-header { margin-bottom: 72px; }
.steps-eyebrow {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}
.steps-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px 40px;
  transition: border-color 0.25s, transform 0.25s;
}
.step-card:hover {
  border-color: rgba(79,195,247,0.2);
  transform: translateY(-2px);
}
.step-num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--blue);
  margin-bottom: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.6;
}

/* ── MEMO MOCK (3rd pillar visual) ── */
.memo-mock {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  width: 100%;
  max-width: 540px;
  overflow: hidden;
  text-align: left;
  box-shadow:
    0 0 0 1px rgba(52,211,153,0.04),
    0 50px 120px rgba(0,0,0,0.7),
    0 0 90px rgba(52,211,153,0.05);
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.memo-mock-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.memo-mock-header .doc-icon {
  width: 18px; height: 18px;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--green);
}
.memo-mock-body {
  padding: 28px 30px 32px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-sec);
}
.memo-mock-body strong {
  color: var(--text);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.memo-cursor {
  display: inline-block;
  width: 2px; height: 16px;
  background: var(--blue);
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink 1s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── COMING NEXT (DocumentationOS preview) ── */
#next-product { padding: 60px 24px 50px; }
#next-product .pillar-sub { margin-bottom: 24px; }
#next-product h2 {
  font-size: clamp(36px, 5.2vw, 66px);
  margin-bottom: 18px;
}
.next-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 0;
  text-align: left;
}
.next-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 24px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.next-card:hover {
  border-color: rgba(167,139,250,0.25);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.next-marker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--purple);
  margin-bottom: 14px;
}
.next-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
}
.next-desc {
  font-size: 13.5px;
  color: var(--text-sec);
  line-height: 1.6;
}
.next-footer {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* ── DATA SOURCES STRIP ── */
#data-strip {
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.data-strip-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.data-strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.data-source {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-sec);
  opacity: 0.55;
  transition: opacity 0.25s, color 0.25s;
  white-space: nowrap;
}
.data-source:hover {
  opacity: 1;
  color: var(--text);
}

/* ── PROOF STRIP ── */
#proof {
  padding: 100px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proof-item {
  padding: 8px;
}
.proof-num {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.proof-num .accent { color: var(--blue); }
.proof-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* ── FAQ ── */
#faq {
  padding: 160px 24px 140px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.faq-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item[open] {
  border-color: rgba(79,195,247,0.22);
  background: rgba(79,195,247,0.03);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  margin-left: auto;
  font-size: 26px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s, color 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-item summary:hover { color: var(--blue); }
.faq-answer {
  padding: 0 28px 26px;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ── BELIEF (closer) ── */
#belief {
  padding: 200px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.belief-text {
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 900px;
  margin: 0 auto;
}

/* ── CTA ── */
#cta {
  padding: 140px 24px 160px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
#cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(79,195,247,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
#cta h2 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.cta-sub {
  font-size: 18px;
  color: var(--text-sec);
  line-height: 1.55;
  margin-bottom: 42px;
}
.waitlist-form {
  display: flex; gap: 10px;
  max-width: 460px;
  margin: 0 auto 16px;
}
.waitlist-form input {
  flex: 1;
  padding: 16px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.waitlist-form input::placeholder { color: var(--text-muted); }
.waitlist-form input:focus {
  border-color: rgba(79,195,247,0.4);
  background: rgba(255,255,255,0.06);
}
.waitlist-meta {
  font-size: 13px;
  color: var(--text-muted);
}
.success-msg {
  display: none;
  align-items: center; justify-content: center;
  gap: 8px;
  font-size: 15px; font-weight: 600;
  color: var(--green);
  padding: 14px 24px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 100px;
  max-width: 400px;
  margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  padding: 36px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-left {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.footer-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.footer-logo span { color: var(--blue); }
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ── LEGAL / CONTACT PAGES ── */
.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.legal-back {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--text); }

.legal-page {
  padding: 80px 24px 120px;
  min-height: 60vh;
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.legal-inner h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 14px;
}
.legal-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 36px;
}
.legal-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 40px;
}
.legal-inner h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 44px 0 14px;
}
.legal-inner p {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin: 0 0 16px;
}
.legal-inner ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-inner li {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
}
.legal-inner a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(79,195,247,0.3);
  transition: border-color 0.2s;
}
.legal-inner a:hover { border-bottom-color: var(--blue); }
.legal-inner strong { color: var(--text); font-weight: 600; }

.contact-inner h1 { margin-bottom: 18px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 12px 0 36px;
}
.contact-card {
  display: block;
  padding: 22px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.contact-card:hover {
  border-color: rgba(79,195,247,0.3);
  background: rgba(79,195,247,0.04);
  transform: translateY(-1px);
}
.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-card-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.contact-card-meta {
  font-size: 12.5px;
  color: var(--text-muted);
}
.contact-footer {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 32px;
}

@media (max-width: 600px) {
  .legal-nav { padding: 14px 18px; }
  .legal-page { padding: 56px 20px 80px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
}
@media (max-width: 768px) {
  nav { padding: 0 18px; }
  #hero { min-height: 100vh; min-height: 100svh; padding: 56px 20px 40px; overflow: hidden; }
  .hero-glow { width: 100%; max-width: 600px; height: 600px; }
  #statement { padding: 64px 20px; }
  .pillar { padding: 80px 20px; }
  #belief { padding: 90px 20px; }
  #cta { padding: 72px 20px 88px; }
  #proof { padding: 56px 20px; }
  #steps { padding: 72px 20px; }
  #data-strip { padding: 56px 20px; }
  .next-grid { grid-template-columns: repeat(2, 1fr); }
  #faq { padding: 80px 20px 64px; }
  .faq-item summary { padding: 20px 22px; font-size: 16px; }
  .faq-answer { padding: 0 22px 22px; font-size: 14.5px; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .proof-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .data-strip-list { gap: 32px; }
  .data-source { font-size: 16px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { border-radius: 14px; }
  .waitlist-form .btn-primary { border-radius: 14px; width: 100%; justify-content: center; }
  footer { flex-direction: column; text-align: center; padding: 28px 20px; }
  .nav-actions { gap: 10px; }
  .nav-actions .btn-ghost { padding: 8px 12px; font-size: 13px; }
  .nav-actions .btn-primary { padding: 8px 16px !important; font-size: 13px !important; }
}
@media (max-width: 480px) {
  .hero-eyebrow { letter-spacing: 0.16em; }
  .next-grid { grid-template-columns: 1fr; }
}
