/* ============================================================================
   Shadowtype — landing design system (elevated)
   Dark, premium, on-device dev-tool aesthetic. Periwinkle + the icon's violet,
   blended into a two-tone aurora. System font stack only, no frameworks.
   ========================================================================== */

:root {
  /* ---- palette --------------------------------------------------------- */
  --bg:            #0a0b0e;
  --bg-1:          #101218;
  --bg-2:          #161922;
  --bg-3:          #1d212c;
  --line:          #262b37;
  --line-soft:     #1b1f29;

  --text:          #e8eaf0;
  --text-dim:      #a3a9b8;
  --text-faint:    #6c7283;
  --ghost:         #5a6076;

  /* periwinkle — caret / primary accent */
  --accent:        #7c9cff;
  --accent-bright: #a6bcff;
  --accent-deep:   #4b63c9;
  --accent-glow:   rgba(124, 156, 255, 0.35);

  /* violet — from the app icon, the deeper brand tone */
  --violet:        #8466ff;
  --violet-bright: #a78bff;
  --violet-deep:   #5b3fd6;
  --violet-glow:   rgba(132, 102, 255, 0.32);

  --good:          #5ee0a0;
  --warn:          #ffcf6e;
  --bad:           #ff7a7a;

  /* reserved ACTION color — primary CTAs ONLY (warm = max contrast on the
     cool page; Von Restorff isolation). Swappable live via the Tweaks panel. */
  --action:        #f5a623;
  --action-bright: #ffb13c;
  --action-deep:   #e0900f;
  --action-fg:     #1a1200;
  --action-glow:   rgba(245,166,35,0.40);

  /* ---- type ------------------------------------------------------------ */
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
             system-ui, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", "Menlo",
               "Cascadia Code", "Roboto Mono", monospace;

  --t-xs:   0.75rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-md:   1.125rem;
  --t-lg:   1.375rem;
  --t-xl:   1.75rem;
  --t-2xl:  clamp(1.9rem, 3.4vw, 2.5rem);
  --t-3xl:  clamp(2.6rem, 6.2vw, 4.4rem);

  /* ---- spacing --------------------------------------------------------- */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4.5rem;
  --s-9: 7rem;

  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --shadow: 0 1px 0 rgba(255,255,255,0.03) inset,
            0 18px 50px -18px rgba(0,0,0,0.7);
  --maxw: 1180px;
}

/* ---- reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-ui);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ambient background: two-tone aurora (violet + periwinkle) + faint grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(820px 480px at 18% -6%, rgba(132,102,255,0.20), transparent 60%),
    radial-gradient(760px 520px at 86% -2%, rgba(124,156,255,0.16), transparent 58%),
    radial-gradient(900px 700px at 50% 120%, rgba(91,63,214,0.10), transparent 60%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(ellipse 120% 78% at 50% 0%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 120% 78% at 50% 0%, #000 30%, transparent 80%);
  pointer-events: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(132,102,255,0.35); color: #fff; }

/* ---- layout helpers ---------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s-5); }
.section { padding-block: var(--s-9); }
.section--tight { padding-block: var(--s-8); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet));
}

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 650; }
h2 { font-size: var(--t-2xl); margin-bottom: var(--s-3); }
h3 { font-size: var(--t-md); letter-spacing: -0.01em; }
p { color: var(--text-dim); }

.lead { font-size: var(--t-md); color: var(--text-dim); max-width: 56ch; text-wrap: pretty; }
.section-head { max-width: 64ch; margin-bottom: var(--s-7); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .eyebrow { justify-content: center; }

/* ============================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  height: 66px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: var(--t-md);
  color: var(--text);
}
.brand__mark { width: 30px; height: 30px; flex: none; border-radius: 8px; }
.nav { display: flex; align-items: center; gap: var(--s-6); margin-left: auto; }
.nav__link { color: var(--text-dim); font-size: var(--t-sm); transition: color 0.15s ease; }
.nav__link:hover { color: var(--text); }
.nav__cta { margin-left: var(--s-2); }

@media (max-width: 820px) {
  .nav { gap: var(--s-4); }
  .nav__link { display: none; }
}

/* ============================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--bg-3);
  --btn-fg: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font: inherit;
  font-weight: 560;
  font-size: var(--t-sm);
  line-height: 1;
  padding: 0.72em 1.15em;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.15s ease,
              background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); border-color: #333a4a; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn--primary {
  --btn-fg: var(--action-fg);
  background: linear-gradient(180deg, var(--action-bright), var(--action));
  border-color: transparent;
  font-weight: 640;
  box-shadow: 0 10px 28px -10px var(--action-glow), 0 1px 0 rgba(255,255,255,0.4) inset;
}
.btn--primary:hover {
  box-shadow: 0 14px 34px -10px var(--action-glow), 0 1px 0 rgba(255,255,255,0.55) inset;
  border-color: transparent;
}
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,0.03); }
.btn--lg { padding: 0.98em 1.6em; font-size: var(--t-base); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

/* ============================================================================
   Hero
   ========================================================================== */
.hero { padding-top: var(--s-8); padding-bottom: var(--s-8); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: var(--s-8);
  align-items: center;
}
.hero h1 {
  font-size: var(--t-3xl);
  font-weight: 690;
  margin: var(--s-4) 0 var(--s-4);
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(96deg, var(--accent-bright), var(--violet-bright) 60%, var(--violet));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero__lead { font-size: var(--t-md); max-width: 47ch; text-wrap: pretty; }
.hero__lead em { color: var(--text); font-style: normal; font-weight: 560; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5);
  margin-top: var(--s-5);
  font-size: var(--t-sm);
  color: var(--text-faint);
}
.hero__meta li { list-style: none; display: inline-flex; align-items: center; gap: var(--s-2); }
.hero__meta li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--good); box-shadow: 0 0 8px var(--good); }

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero__demo { order: 2; }
}

/* ---- eyebrow as a pill in the hero ----------------------------------- */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(132,102,255,0.08);
  border: 1px solid rgba(132,102,255,0.24);
  border-radius: 999px; padding: 0.4em 0.85em;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 8px var(--good); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ============================================================================
   The interactive demo window (hero centerpiece)
   ========================================================================== */
.demo-stage { position: relative; }
.demo {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 26%),
    var(--bg-1);
  box-shadow: var(--shadow), 0 40px 90px -50px var(--violet-glow);
  overflow: hidden;
  z-index: 2;
}
.demo__bar {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.015);
}
.demo__dots { display: flex; gap: 7px; }
.demo__dots span { width: 11px; height: 11px; border-radius: 50%; background: #3a4150; }
.demo__app {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--t-xs); color: var(--text);
  font-weight: 560;
  padding: 0.3em 0.7em; border-radius: 999px;
  background: #232836; border: 1px solid #333a4a;
}
.demo__app .app-ico { width: 13px; height: 13px; border-radius: 4px; flex: none; }
/* network toggle */
.demo__net {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-mono); font-size: var(--t-xs);
  color: var(--text-faint);
  background: transparent; border: 1px solid var(--line);
  border-radius: 999px; padding: 0.28em 0.6em 0.28em 0.7em;
  cursor: pointer; user-select: none;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.demo__net:hover { border-color: #333a4a; color: var(--text-dim); }
.demo__net .wifi { width: 14px; height: 14px; }
.demo__net .switch {
  width: 30px; height: 17px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--line);
  position: relative; transition: background 0.2s ease, border-color 0.2s ease;
}
.demo__net .switch::after {
  content: ""; position: absolute; top: 1px; left: 1px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--text-faint); transition: transform 0.2s ease, background 0.2s ease;
}
.demo__net[data-online="true"] { color: var(--good); border-color: rgba(94,224,160,0.4); }
.demo__net[data-online="true"] .switch { background: rgba(94,224,160,0.18); border-color: rgba(94,224,160,0.5); }
.demo__net[data-online="true"] .switch::after { transform: translateX(13px); background: var(--good); }
.demo__net[data-online="false"] .wifi { color: var(--warn); }

.demo__body {
  position: relative;
  padding: var(--s-6) var(--s-5) calc(var(--s-7) + 0.5rem);
  font-size: var(--t-md);
  line-height: 1.85;
  min-height: 248px;
}
.demo__typed { color: var(--text); white-space: pre-wrap; }
.demo__ghost { color: var(--ghost); white-space: pre-wrap; transition: color 0.25s ease; }
.demo__ghost.accepting { color: var(--text); }
.demo__caret {
  display: inline-block;
  width: 2px;
  height: 1.12em;
  vertical-align: text-bottom;
  margin: 0 1px -0.13em;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  border-radius: 2px;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.demo__hint {
  position: absolute;
  bottom: var(--s-4);
  right: var(--s-4);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--text-faint);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--s-2) var(--s-3);
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.demo__offline-flag {
  position: absolute; bottom: var(--s-4); left: var(--s-4);
  font-family: var(--font-mono); font-size: var(--t-xs);
  color: var(--warn);
  background: rgba(255,207,110,0.08);
  border: 1px solid rgba(255,207,110,0.28);
  border-radius: var(--radius-sm);
  padding: var(--s-2) var(--s-3);
  display: inline-flex; align-items: center; gap: var(--s-2);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.demo__offline-flag.show { opacity: 1; transform: translateY(0); }

kbd {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: 0.15em 0.45em;
  color: var(--text);
  white-space: nowrap;
}
/* the "live" Tab key that visibly presses on accept */
.keycap {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.85em; font-weight: 600;
  background: var(--bg-3); color: var(--text);
  border: 1px solid var(--line); border-bottom-width: 3px;
  border-radius: 7px; padding: 0.2em 0.5em;
  transition: transform 0.09s ease, border-bottom-width 0.09s ease, background 0.09s ease, box-shadow 0.09s ease;
}
.keycap.press {
  transform: translateY(2px);
  border-bottom-width: 1px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: #0a0b0e;
  box-shadow: 0 0 16px var(--accent-glow);
}

/* floating proof badges around the demo */
.demo-badge {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--t-xs); font-weight: 560; color: var(--text);
  background: color-mix(in srgb, var(--bg-1) 88%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px; padding: 0.5em 0.85em;
  box-shadow: 0 14px 30px -16px rgba(0,0,0,0.8);
}
.demo-badge svg { width: 15px; height: 15px; color: var(--accent-bright); }
.demo-badge--tl { top: -22px; left: -18px; animation: float 6s ease-in-out infinite; }
.demo-badge--br { bottom: -16px; right: -14px; animation: float 6s ease-in-out infinite 1.6s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (max-width: 520px) { .demo-badge { display: none; } }

/* ============================================================================
   Trust strip
   ========================================================================== */
.trust {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--s-3) var(--s-6);
  padding-block: var(--s-6);
  border-block: 1px solid var(--line-soft);
}
.trust span {
  font-size: var(--t-sm);
  color: var(--text-faint);
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.trust svg { width: 16px; height: 16px; color: var(--accent); }

/* ============================================================================
   How it works
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  counter-reset: step;
}
.step {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent), var(--bg-2);
  border-radius: var(--radius);
  padding: var(--s-6) var(--s-5) var(--s-5);
  overflow: hidden;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  color: var(--accent-bright);
  background: rgba(132,102,255,0.1);
  border: 1px solid rgba(132,102,255,0.24);
  border-radius: 8px;
  padding: 0.2em 0.55em;
  display: inline-block;
  margin-bottom: var(--s-4);
}
.step h3 { margin-bottom: var(--s-2); }
.step p { font-size: var(--t-sm); }
.step__demo {
  margin-top: var(--s-5);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--bg);
  padding: var(--s-4);
  font-size: var(--t-sm);
  line-height: 1.7;
  min-height: 58px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.1em;
}
.step__demo .g { color: var(--ghost); }
.step__demo .mini-caret {
  display: inline-block; width: 2px; height: 1.05em; vertical-align: text-bottom;
  margin: 0 1px -0.1em; background: var(--accent); border-radius: 2px;
  animation: blink 1.1s step-end infinite;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================================
   Feature grid
   ========================================================================== */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.feature {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent), var(--bg-2);
  border-radius: var(--radius);
  padding: var(--s-5);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.feature:hover { border-color: #34324f; transform: translateY(-3px); box-shadow: 0 24px 48px -30px var(--violet-glow); }
.feature--feat {
  grid-column: span 2; grid-row: span 2;
  background:
    radial-gradient(420px 240px at 0% 0%, rgba(132,102,255,0.12), transparent 60%),
    var(--bg-1);
  border-color: rgba(132,102,255,0.28);
  display: flex; flex-direction: column;
}
.feature--feat h3 { font-size: var(--t-lg); }
.feature--feat .feature__big {
  margin-top: auto; padding-top: var(--s-5);
}
.feature__chips { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.feature__chips span {
  font-family: var(--font-mono); font-size: var(--t-xs); color: var(--text-dim);
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.3em 0.7em;
}
.feature__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: rgba(124,156,255,0.1);
  border: 1px solid rgba(124,156,255,0.22);
  color: var(--accent-bright);
  margin-bottom: var(--s-4);
}
.feature__icon svg { width: 21px; height: 21px; }
.feature h3 { margin-bottom: var(--s-2); }
.feature p { font-size: var(--t-sm); }

@media (max-width: 940px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature--feat { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .feature--feat { grid-column: span 1; }
}

/* ============================================================================
   Offline proof band
   ========================================================================== */
.offline {
  position: relative;
  border: 1px solid rgba(255,207,110,0.22);
  border-radius: var(--radius-lg);
  padding: var(--s-8) var(--s-7);
  overflow: hidden;
  background:
    radial-gradient(620px 300px at 88% 120%, rgba(255,207,110,0.08), transparent 60%),
    radial-gradient(520px 280px at 6% -10%, rgba(132,102,255,0.12), transparent 60%),
    var(--bg-1);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: center;
}
.offline h2 { font-size: var(--t-2xl); text-wrap: balance; }
.offline h2 .strike { color: var(--text-faint); text-decoration: line-through; text-decoration-color: var(--bad); text-decoration-thickness: 2px; }
.offline p { margin-top: var(--s-3); max-width: 46ch; }
.offline__visual {
  display: flex; align-items: center; justify-content: center;
}
.offline__plane {
  position: relative;
  width: 100%; max-width: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: var(--s-5);
  box-shadow: var(--shadow);
}
.offline__row { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }
.offline__row + .offline__row { margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--line-soft); }
.offline__label { font-size: var(--t-sm); color: var(--text-dim); display: inline-flex; align-items: center; gap: var(--s-2); }
.offline__label svg { width: 16px; height: 16px; color: var(--text-faint); }
.offline__val { font-family: var(--font-mono); font-size: var(--t-xs); font-weight: 600; padding: 0.3em 0.65em; border-radius: 999px; }
.offline__val.off { color: var(--warn); background: rgba(255,207,110,0.1); border: 1px solid rgba(255,207,110,0.3); }
.offline__val.on  { color: var(--good); background: rgba(94,224,160,0.1); border: 1px solid rgba(94,224,160,0.3); }
@media (max-width: 820px) { .offline { grid-template-columns: 1fr; padding: var(--s-7) var(--s-5); } }

/* ============================================================================
   Comparison table
   ========================================================================== */
.compare {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
.compare table { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.compare th, .compare td { padding: var(--s-4) var(--s-5); text-align: left; }
.compare thead th { font-weight: 600; color: var(--text); border-bottom: 1px solid var(--line); }
.compare thead th.col-us { color: var(--accent-bright); }
.compare tbody tr { border-top: 1px solid var(--line-soft); }
.compare tbody td:first-child { color: var(--text-dim); }
.compare .col-us { background: rgba(132,102,255,0.06); font-weight: 540; color: var(--text); }
.compare tbody .col-us { box-shadow: inset 1px 0 0 rgba(132,102,255,0.18), inset -1px 0 0 rgba(132,102,255,0.18); }
.compare .yes { color: var(--good); }
.compare .cell { display: inline-flex; align-items: center; gap: var(--s-2); }
.compare .cell svg { width: 15px; height: 15px; flex: none; }
.compare .no { color: var(--text-faint); }
.compare .badge-sub { color: var(--warn); }
@media (max-width: 660px) {
  .compare { overflow-x: auto; }
  .compare table { min-width: 480px; }
}

/* ============================================================================
   Founders ladder (scarcity staircase)
   ========================================================================== */
.ladder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
  border: 1px solid rgba(132,102,255,0.3);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  background:
    radial-gradient(560px 300px at 100% 0%, rgba(132,102,255,0.12), transparent 60%),
    var(--bg-1);
}
.ladder__steps { display: flex; align-items: flex-end; gap: var(--s-3); height: 230px; }
.rung {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  gap: var(--s-3);
  text-align: center;
}
.rung__bar {
  width: 100%;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border: 1px solid var(--line);
  border-bottom: none;
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: var(--s-3);
}
.rung__price { font-weight: 700; font-size: var(--t-md); letter-spacing: -0.02em; }
.rung__tag { font-size: var(--t-xs); color: var(--text-faint); }
.rung[data-state="done"] .rung__bar { background: linear-gradient(180deg, rgba(94,224,160,0.16), rgba(94,224,160,0.04)); border-color: rgba(94,224,160,0.35); }
.rung[data-state="done"] .rung__price { color: var(--text-faint); text-decoration: line-through; text-decoration-color: var(--good); }
.rung[data-state="done"] .rung__tag { color: var(--good); }
.rung[data-state="live"] .rung__bar {
  background: linear-gradient(180deg, var(--violet), var(--violet-deep));
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(167,139,255,0.5), 0 18px 40px -18px var(--violet-glow);
}
.rung[data-state="live"] .rung__price { color: #fff; }
.rung[data-state="live"] .rung__tag { color: var(--accent-bright); font-weight: 600; }
.rung[data-state="live"] .rung__bar::after {
  content: "YOU'RE HERE"; position: absolute; top: -1.7rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em;
  color: var(--accent-bright); white-space: nowrap;
}
.rung[data-state="upcoming"] .rung__price { color: var(--text-dim); }
.rung[data-state="ga"] .rung__bar { background: repeating-linear-gradient(135deg, var(--bg-2) 0 8px, var(--bg-3) 8px 16px); }
.rung[data-state="ga"] .rung__price { color: var(--text); }
.rung[data-state="ga"] .rung__tag { color: var(--accent-bright); }

.ladder__copy .eyebrow { margin-bottom: var(--s-3); }
.ladder__copy h2 { font-size: var(--t-xl); }
.ladder__copy p { font-size: var(--t-sm); margin-top: var(--s-3); }
.ladder__progress { margin-top: var(--s-5); }
.ladder__progress-head { display: flex; justify-content: space-between; align-items: baseline; font-size: var(--t-sm); margin-bottom: var(--s-2); }
.ladder__progress-head strong { color: var(--text); }
.ladder__progress-head .muted { color: var(--text-faint); font-size: var(--t-xs); font-family: var(--font-mono); }
.ladder__track { height: 10px; border-radius: 999px; background: var(--bg-3); border: 1px solid var(--line); overflow: hidden; }
.ladder__fill { height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg, var(--accent-bright), var(--violet)); box-shadow: 0 0 12px var(--violet-glow); transition: width 1s cubic-bezier(.2,.7,.2,1); }
.ladder__cta { margin-top: var(--s-5); display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
@media (max-width: 860px) { .ladder { grid-template-columns: 1fr; } .ladder__copy { order: -1; } }

/* ============================================================================
   Pricing
   ========================================================================== */
.pricing {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-5);
  align-items: stretch;
}
.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-7) var(--s-6);
  background: var(--bg-2);
  display: flex; flex-direction: column;
}
.price-card--hero {
  background:
    radial-gradient(520px 280px at 0% 0%, rgba(132,102,255,0.16), transparent 60%),
    var(--bg-1);
  border-color: rgba(132,102,255,0.35);
  box-shadow: 0 24px 70px -30px var(--violet-glow);
}
.price-card__flag {
  position: absolute; top: var(--s-5); right: var(--s-5);
  font-family: var(--font-mono); font-size: var(--t-xs);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #0a0b0e; font-weight: 700;
  background: linear-gradient(180deg, var(--accent-bright), var(--violet));
  padding: 0.4em 0.7em; border-radius: 999px;
}
.price-card h3 { font-size: var(--t-lg); margin-bottom: var(--s-2); }
.price-card__sub { font-size: var(--t-sm); color: var(--text-faint); }
.price-card__amount { display: flex; align-items: baseline; gap: var(--s-3); margin: var(--s-5) 0 var(--s-2); }
.price-card__amount .num { font-size: var(--t-3xl); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.price-card__was { font-size: var(--t-md); color: var(--text-faint); text-decoration: line-through; text-decoration-color: var(--bad); }
.price-card__once { font-size: var(--t-sm); color: var(--text-dim); margin-bottom: var(--s-5); }
.price-list { list-style: none; padding: 0; margin: 0 0 var(--s-6); display: grid; gap: var(--s-3); }
.price-list li { display: flex; gap: var(--s-3); font-size: var(--t-sm); color: var(--text-dim); }
.price-list svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--accent); }
.price-card .btn { margin-top: auto; }
.price-card__note { font-size: var(--t-xs); color: var(--text-faint); margin-top: var(--s-3); text-align: center; }
.beta-pill {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--t-sm); color: var(--warn);
  background: rgba(255,207,110,0.08);
  border: 1px solid rgba(255,207,110,0.25);
  border-radius: 999px; padding: 0.3em 0.85em; margin-bottom: var(--s-4);
  align-self: flex-start;
}
.beta-pill svg { width: 14px; height: 14px; flex: none; }
@media (max-width: 800px) { .pricing { grid-template-columns: 1fr; } }

/* risk-reversal chips */
.risk-reversal {
  list-style: none; padding: 0; margin: var(--s-4) 0 0;
  display: flex; flex-wrap: wrap; gap: var(--s-2);
}
.risk-reversal li {
  font-size: var(--t-xs); color: var(--text-dim);
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.3em 0.7em;
}
.risk-reversal li::before { content: "✓ "; color: var(--good); }

.founders-stat {
  margin: var(--s-4) auto 0; font-size: var(--t-sm); font-weight: 560;
  color: var(--accent-bright);
  background: rgba(132,102,255,0.08);
  border: 1px solid rgba(132,102,255,0.25);
  border-radius: 999px; padding: 0.4em 1em; width: fit-content;
}

/* ============================================================================
   Wall of love
   ========================================================================== */
.love {
  display: grid; gap: var(--s-4); margin-top: var(--s-6);
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) { .love { grid-template-columns: 1fr; } }
.love-card {
  margin: 0; padding: var(--s-5) var(--s-6);
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.love-card blockquote { margin: 0 0 var(--s-4); font-size: var(--t-sm); color: var(--text); line-height: 1.6; }
.love-card figcaption { font-size: var(--t-xs); color: var(--text-faint); }
.love-card__placeholder { color: var(--warn); opacity: 0.8; }

/* ============================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; gap: var(--s-3); max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) var(--s-5);
  font-weight: 560;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  transition: background 0.15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-3); }
.faq summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq summary::after {
  content: "+"; font-family: var(--font-mono); font-size: var(--t-lg);
  color: var(--accent); transition: transform 0.2s ease; flex: none; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 var(--s-5) var(--s-5); color: var(--text-dim); font-size: var(--t-sm); }
.faq .faq__a a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  border: 1px solid rgba(132,102,255,0.3);
  border-radius: var(--radius-lg);
  padding: var(--s-8) var(--s-6);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(700px 320px at 50% -20%, rgba(132,102,255,0.2), transparent 60%),
    var(--bg-1);
}
.cta-band h2 { font-size: var(--t-2xl); text-wrap: balance; }
.cta-band p { max-width: 52ch; margin: var(--s-3) auto var(--s-6); }
.cta-band .hero__cta { justify-content: center; }

/* ============================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line-soft);
  margin-top: var(--s-8);
  padding-block: var(--s-7) var(--s-6);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s-6);
}
.site-footer__brand p { font-size: var(--t-sm); color: var(--text-faint); margin-top: var(--s-3); max-width: 34ch; }
.site-footer h4 { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); margin-bottom: var(--s-3); }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: var(--s-2); }
.site-footer a { font-size: var(--t-sm); color: var(--text-dim); transition: color 0.15s ease; }
.site-footer a:hover { color: var(--text); }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between;
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid var(--line-soft);
  font-size: var(--t-xs); color: var(--text-faint);
}
@media (max-width: 760px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================================
   Sticky Founders bar
   ========================================================================== */
.founders-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(16,18,24,0.92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 40px -20px rgba(0,0,0,0.8);
  padding: var(--s-3) 0;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.founders-bar.show { transform: translateY(0); }
.founders-bar[hidden] { display: none; }
.founders-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); }
.founders-bar__msg { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.founders-bar__msg strong { font-size: var(--t-base); }
.founders-bar__detail { font-size: var(--t-xs); color: var(--text-dim); }
.founders-bar .btn { flex: none; }
@media (max-width: 560px) { .founders-bar__detail { display: none; } }

/* utility */
.center { text-align: center; }
