/* ============================================================
   Ryan Meza — Asymmetry through AI Implementation
   Dark / electric system · v2
   ============================================================ */

:root {
  color-scheme: dark;
  --bg: #07080a;
  --bg-2: #0b0d11;
  --panel: rgba(255, 255, 255, 0.025);
  --panel-solid: #0e1219;
  --panel-2: #141a24;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --ink: #e9ebef;
  --ink-2: #aab2bf;
  --ink-3: #6c7686;
  --violet: #7c5cff;
  --cyan: #22d3ee;
  --green: #34d399;
  --grad: linear-gradient(100deg, var(--violet) 0%, var(--cyan) 100%);
  --grad-soft: linear-gradient(100deg, color-mix(in srgb, var(--violet) 16%, transparent), color-mix(in srgb, var(--cyan) 12%, transparent));
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 24px;
  --max: 1180px;
  --narrow: 720px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Space Grotesk", var(--sans);
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }
::selection { background: rgba(124, 92, 255, 0.4); color: #fff; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.wrap-narrow { width: 100%; max-width: var(--narrow); margin-left: auto; margin-right: auto; padding: 0 clamp(20px, 5vw, 48px); }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--violet); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 16px; }

/* ---------- shared atoms ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2);
  margin-bottom: 20px;
}
.eyebrow a { color: var(--cyan); }

.grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-3); display: inline-block; flex: none; }
.dot--live {
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.btn {
  --bg-btn: var(--grad);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem; line-height: 1;
  color: #0a0b10; background: var(--grad); background-size: 140% 140%;
  border: 1px solid transparent; border-radius: 999px;
  padding: 14px 24px; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-position 0.5s var(--ease);
  box-shadow: 0 8px 26px -10px rgba(124, 92, 255, 0.7);
}
.btn:hover { transform: translateY(-2px); background-position: 100% 0; box-shadow: 0 14px 36px -10px rgba(34, 211, 238, 0.6); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line-2);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.04); border-color: var(--ink-2); box-shadow: none; transform: translateY(-2px); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.27rem); color: var(--ink-2); line-height: 1.6; max-width: 36ch; }

/* ---------- sections ---------- */
.section { padding: clamp(72px, 11vw, 132px) 0; position: relative; }
.section__head { max-width: 760px; margin-bottom: 56px; }
.section__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -0.02em;
}
.section__title em { font-style: normal; color: var(--ink-2); }
.section__sub { margin-top: 22px; font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--ink-2); max-width: 60ch; }
.section__sub strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 600; font-size: 1.02rem; }
.brand__mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px;
  background: var(--grad); color: #0a0b10; font-weight: 700; font-size: 0.82rem; letter-spacing: -0.02em;
  box-shadow: 0 6px 18px -8px rgba(124, 92, 255, 0.8);
}
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 0.92rem; color: var(--ink-2); font-weight: 500; position: relative; padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--grad);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 38px; padding: 9px; background: transparent; border: 1px solid var(--line-2); border-radius: 10px; cursor: pointer; }
.nav__burger span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: 0.25s var(--ease); }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(120px, 18vh, 200px) 0 clamp(60px, 9vw, 110px); overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 0%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 0%, transparent 78%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; pointer-events: none; }
.hero__glow--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(124, 92, 255, 0.55), transparent 65%); top: -120px; left: -80px; }
.hero__glow--2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(34, 211, 238, 0.4), transparent 65%); top: 60px; right: -100px; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.4rem, 5.6vw, 4.3rem); line-height: 1.02; letter-spacing: -0.03em;
  margin-bottom: 26px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__trust { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-3); }
.hero__trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); opacity: 0.6; }

/* hero console */
.console {
  background: linear-gradient(180deg, rgba(20, 26, 36, 0.9), rgba(10, 13, 18, 0.92));
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden; backdrop-filter: blur(8px);
}
.console__bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); }
.cdot { width: 11px; height: 11px; border-radius: 50%; }
.cdot--r { background: #ff5f57; } .cdot--y { background: #febc2e; } .cdot--g { background: #28c840; }
.console__title { margin-left: 8px; font-family: var(--mono); font-size: 0.8rem; color: var(--ink-2); }
.console__live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 0.72rem; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; }
.console__body { padding: 20px 20px 24px; font-family: var(--mono); font-size: 0.84rem; line-height: 1.9; color: var(--ink-2); min-height: 230px; }
.cline { display: flex; align-items: baseline; gap: 10px; opacity: 0; transform: translateY(6px); }
.cline.is-in { opacity: 1; transform: none; transition: 0.4s var(--ease); }
.c-key { color: var(--violet); }
.c-ok { color: var(--green); } .c-run { color: var(--cyan); }
.console__cursor { color: var(--ink-3); }
.caret { color: var(--cyan); animation: blink 1.1s steps(1) infinite; margin-left: 2px; }
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   METRICS
   ============================================================ */
.metrics { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.metrics__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { padding: clamp(32px, 4vw, 48px) 24px; text-align: center; border-right: 1px solid var(--line); }
.metric:last-child { border-right: none; }
.metric__num { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.metric__unit { -webkit-text-fill-color: transparent; }
.metric__label { display: block; margin-top: 10px; font-size: 0.86rem; color: var(--ink-2); letter-spacing: 0.01em; }

/* ============================================================
   STAKES / URGENCY
   ============================================================ */
.section--stakes { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.stakes__glow { position: absolute; width: 760px; height: 420px; top: -180px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(124, 92, 255, 0.18), transparent 70%); filter: blur(70px); pointer-events: none; }
.stakes__head { position: relative; max-width: 840px; margin: 0 auto 48px; text-align: center; }
.stakes__title { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.7vw, 3.4rem); line-height: 1.06; letter-spacing: -0.025em; }
.stakes__lead { margin-top: 22px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-2); }
.stakes__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1000px; margin: 0 auto; position: relative; }
.stake { display: flex; gap: 16px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.018); transition: 0.3s var(--ease); }
.stake:hover { border-color: var(--line-2); background: rgba(255, 255, 255, 0.03); }
.stake__n { font-family: var(--mono); font-size: 0.82rem; color: var(--violet); flex: none; padding-top: 2px; }
.stake p { color: var(--ink-2); line-height: 1.55; }
.stake strong { color: var(--ink); font-weight: 600; }
.stakes__foot { text-align: center; margin-top: 46px; position: relative; }
.stakes__kicker { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 2.7vw, 2rem); line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 28px; }

/* ============================================================
   THESIS / COMPARE
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare__col { padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); }
.compare__col--muted { background: rgba(255, 255, 255, 0.015); }
.compare__col--win { background: var(--grad-soft); border-color: rgba(124, 92, 255, 0.35); box-shadow: 0 30px 70px -50px rgba(124, 92, 255, 0.8); }
.compare__tag { font-family: var(--mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; color: var(--ink-3); }
.compare__col--win .compare__tag { color: var(--cyan); }
.compare__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.compare__col li { position: relative; padding-left: 26px; color: var(--ink-2); }
.compare__col--muted li::before { content: "✕"; position: absolute; left: 0; color: var(--ink-3); }
.compare__col--win li { color: var(--ink); }
.compare__col--win li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ============================================================
   AUDIT
   ============================================================ */
.section--audit { background:
    radial-gradient(60% 80% at 85% 10%, rgba(34, 211, 238, 0.08), transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(124, 92, 255, 0.1), transparent 60%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.audit { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.audit__bullets { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.audit__bullets li { display: flex; align-items: center; gap: 12px; color: var(--ink-2); }
.tick { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(52, 211, 153, 0.14); color: var(--green); font-size: 0.7rem; flex: none; }
.audit__panel { position: relative; }
.audit__app {
  background: linear-gradient(180deg, var(--panel-2), var(--panel-solid));
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 38px); min-height: 360px;
  box-shadow: 0 50px 100px -50px rgba(0, 0, 0, 0.9);
  display: flex; flex-direction: column; justify-content: center;
}
.audit__alt { margin-top: 16px; text-align: center; font-size: 0.88rem; color: var(--ink-3); }
.audit__alt a { color: var(--cyan); }

/* quiz (injected by JS) */
.quiz__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.quiz__meta { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.quiz__progress { height: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; margin-bottom: 28px; }
.quiz__bar { height: 100%; width: 0; background: var(--grad); border-radius: 999px; transition: width 0.45s var(--ease); }
.quiz__q { font-family: var(--display); font-weight: 600; font-size: clamp(1.25rem, 2.2vw, 1.55rem); line-height: 1.25; letter-spacing: -0.015em; margin-bottom: 24px; }
.quiz__opts { display: grid; gap: 12px; }
.quiz__opt {
  text-align: left; font-family: var(--sans); font-size: 0.98rem; color: var(--ink);
  background: rgba(255, 255, 255, 0.02); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 16px 18px; cursor: pointer; transition: 0.2s var(--ease); display: flex; align-items: center; gap: 13px;
}
.quiz__opt::before { content: ""; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line-2); flex: none; transition: 0.2s var(--ease); }
.quiz__opt:hover { border-color: var(--violet); background: rgba(124, 92, 255, 0.07); transform: translateX(3px); }
.quiz__opt.is-selected { border-color: var(--cyan); background: rgba(34, 211, 238, 0.08); }
.quiz__opt.is-selected::before { border-color: var(--cyan); background: var(--cyan); box-shadow: inset 0 0 0 3px var(--panel-solid); }
.quiz__actions { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; gap: 12px; }
.quiz__back { background: none; border: none; color: var(--ink-3); font-family: var(--sans); font-size: 0.9rem; cursor: pointer; padding: 8px; }
.quiz__back:hover { color: var(--ink); }
.quiz__back[hidden] { visibility: hidden; }

/* result */
.quiz__result { text-align: center; animation: fadeUp 0.6s var(--ease); }
.quiz__scorewrap { display: inline-grid; place-items: center; margin-bottom: 8px; }
.quiz__score { font-family: var(--display); font-weight: 700; font-size: 4rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.quiz__score small { font-size: 1.4rem; color: var(--ink-3); -webkit-text-fill-color: var(--ink-3); }
.quiz__band { font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; color: var(--cyan); margin-bottom: 18px; }
.quiz__meter { height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; margin: 0 auto 26px; max-width: 320px; }
.quiz__meter i { display: block; height: 100%; width: 0; background: var(--grad); border-radius: 999px; transition: width 1s var(--ease); }
.quiz__lever { background: rgba(255, 255, 255, 0.025); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; text-align: left; margin-bottom: 24px; }
.quiz__lever p:first-child { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); margin-bottom: 8px; }
.quiz__lever p:last-child { color: var(--ink); font-size: 1.02rem; }
.quiz__gate { display: grid; gap: 12px; }
.quiz__gatecopy { font-size: 0.92rem; color: var(--ink-2); }
.quiz__email { display: flex; gap: 10px; }
.quiz__email input { flex: 1; min-width: 0; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-2); border-radius: 999px; padding: 14px 18px; color: var(--ink); font-family: var(--sans); font-size: 0.95rem; }
.quiz__email input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18); }
.quiz__done { color: var(--green); font-size: 0.95rem; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* audit reveals / paths / takeaway */
.panel-accent { background: var(--grad-soft); border: 1px solid rgba(124, 92, 255, 0.34); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 42px); text-align: center; }
.panel-accent h3 { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 12px; }
.panel-accent p { color: var(--ink-2); max-width: 62ch; margin: 0 auto 24px; }
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.path { display: flex; flex-direction: column; padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.018); transition: 0.3s var(--ease); }
.path:hover { border-color: var(--line-2); transform: translateY(-4px); }
.path--featured { background: var(--grad-soft); border-color: rgba(124, 92, 255, 0.4); }
.path__tag { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px; }
.path h3 { font-family: var(--display); font-weight: 600; font-size: 1.28rem; margin-bottom: 10px; }
.path p { font-size: 0.94rem; color: var(--ink-2); line-height: 1.55; flex: 1; margin-bottom: 22px; }
.scarcity { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.05em; color: var(--ink-2); padding: 9px 16px; border: 1px solid var(--line-2); border-radius: 999px; }
.list-check { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.list-check li { position: relative; padding-left: 28px; color: var(--ink-2); }
.list-check li strong { color: var(--ink); font-weight: 600; }
.list-check li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--green); font-weight: 700; }

/* ============================================================
   CARDS / PROOF
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  position: relative; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018); overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--line-2); background: rgba(255, 255, 255, 0.035); }
.card__idx { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-3); }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 1.16rem; margin: 14px 0 10px; letter-spacing: -0.01em; }
.card p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.55; }
.card__tag { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; }
.card--accent { background: var(--grad-soft); border-color: rgba(124, 92, 255, 0.32); }
.card__tag--live { color: var(--green); border-color: rgba(52, 211, 153, 0.3); }

/* ============================================================
   STACK
   ============================================================ */
.section--stack { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stack { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stack__item { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.018); transition: 0.3s var(--ease); }
.stack__item:hover { border-color: rgba(34, 211, 238, 0.35); transform: translateY(-4px); }
.stack__name { font-family: var(--display); font-weight: 600; font-size: 1.08rem; margin-bottom: 10px; }
.stack__desc { font-size: 0.88rem; color: var(--ink-2); line-height: 1.55; }
.stack__pill { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-2); padding: 5px 11px; border-radius: 999px; background: rgba(255, 255, 255, 0.04); }

/* ============================================================
   OFFERS
   ============================================================ */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.offer { display: flex; flex-direction: column; padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.018); transition: 0.3s var(--ease); }
.offer:hover { transform: translateY(-5px); border-color: var(--line-2); }
.offer__kicker { font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 14px; }
.offer__name { font-family: var(--display); font-weight: 600; font-size: 1.28rem; letter-spacing: -0.01em; }
.offer__price { font-family: var(--mono); font-size: 0.86rem; color: var(--ink-2); margin: 8px 0 16px; }
.offer__desc { font-size: 0.9rem; color: var(--ink-2); line-height: 1.55; flex: 1; margin-bottom: 22px; }
.offer--featured { background: var(--grad-soft); border-color: rgba(124, 92, 255, 0.4); box-shadow: 0 40px 90px -50px rgba(124, 92, 255, 0.85); position: relative; }
.offer--featured .offer__kicker { color: var(--violet); }

/* ============================================================
   NOTES / SUBSCRIBE
   ============================================================ */
.section--notes { background:
    radial-gradient(60% 70% at 90% 0%, rgba(124, 92, 255, 0.08), transparent 60%);
}
.notes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.subscribe { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 30px; max-width: 440px; }
.subscribe input { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line-2); border-radius: 999px; padding: 14px 18px; color: var(--ink); font-family: var(--sans); font-size: 0.95rem; }
.subscribe input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18); }
.subscribe__msg { grid-column: 1 / -1; font-size: 0.85rem; margin: 2px 4px 0; display: none; }
.subscribe__msg--success { color: var(--green); }
.subscribe__msg--error { color: #ff7a7a; }
.notes__list { display: grid; gap: 12px; }
.note { display: grid; gap: 6px; padding: 22px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.018); transition: 0.25s var(--ease); }
.note:hover { border-color: var(--line-2); background: rgba(255, 255, 255, 0.035); transform: translateX(4px); }
.note__date { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.note__title { font-family: var(--display); font-weight: 600; font-size: 1.1rem; }
.note__excerpt { font-size: 0.9rem; color: var(--ink-2); }
.note__go { font-size: 0.82rem; color: var(--cyan); font-family: var(--mono); }
.note__go i { font-style: normal; transition: 0.2s var(--ease); display: inline-block; }
.note:hover .note__go i { transform: translateX(4px); }
.note--soon { opacity: 0.7; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { padding: clamp(70px, 10vw, 120px) 0; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 120%, rgba(124, 92, 255, 0.22), transparent 70%); }
.cta-band__inner { position: relative; text-align: center; }
.cta-band h2 { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.3rem); line-height: 1.08; letter-spacing: -0.025em; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 64px 0 36px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer__tag { margin-top: 18px; color: var(--ink-2); font-size: 0.92rem; max-width: 42ch; line-height: 1.6; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); margin-bottom: 4px; }
.footer__links a { color: var(--ink-2); font-size: 0.94rem; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--cyan); }
.footer__base { display: flex; align-items: center; justify-content: space-between; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 0.84rem; }
.footer__status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); }

/* ============================================================
   ARTICLE
   ============================================================ */
.article-shell { padding: clamp(110px, 14vh, 170px) 0 clamp(60px, 9vw, 110px); }
.article__head { text-align: center; margin-bottom: 40px; }
.article__title { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1.08; letter-spacing: -0.025em; margin: 12px 0; }
.article__excerpt { font-size: 1.2rem; color: var(--ink-2); margin-top: 14px; }
.article__meta { font-family: var(--mono); font-size: 0.8rem; color: var(--ink-3); margin-top: 18px; }
.article__feature { width: 100%; border-radius: var(--radius-lg); margin: 10px 0 40px; border: 1px solid var(--line); }
.gh-content { font-size: 1.08rem; line-height: 1.75; color: var(--ink-2); }
.gh-content > * + * { margin-top: 1.4em; }
.gh-content h2, .gh-content h3 { font-family: var(--display); color: var(--ink); letter-spacing: -0.015em; margin-top: 1.8em; }
.gh-content h2 { font-size: 1.7rem; } .gh-content h3 { font-size: 1.3rem; }
.gh-content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.gh-content strong { color: var(--ink); }
.gh-content blockquote { border-left: 2px solid var(--violet); padding-left: 20px; color: var(--ink); font-style: italic; }
.gh-content img { border-radius: var(--radius); border: 1px solid var(--line); }
.gh-content code { font-family: var(--mono); font-size: 0.88em; background: rgba(255, 255, 255, 0.06); padding: 2px 6px; border-radius: 6px; }
.gh-content pre { background: var(--panel-solid); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; overflow: auto; }
.gh-content pre code { background: none; padding: 0; }
.article__cta { text-align: center; margin-top: 64px; padding: 44px; border-radius: var(--radius-lg); border: 1px solid var(--line-2); background: var(--grad-soft); }
.article__cta h3 { font-family: var(--display); font-weight: 600; font-size: 1.5rem; margin: 8px 0 24px; }

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .cline { opacity: 1; transform: none; }
  .dot--live { animation: none; }
  .caret { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .cards, .stack, .offers { grid-template-columns: repeat(2, 1fr); }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; }
  .audit { grid-template-columns: 1fr; }
  .paths { grid-template-columns: 1fr; }
  .notes { grid-template-columns: 1fr; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(8, 9, 12, 0.97); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line); padding: 8px 0;
    transform: translateY(-120%); transition: transform 0.35s var(--ease); pointer-events: none;
  }
  .nav.is-open .nav__links { transform: none; pointer-events: auto; }
  .nav__links a { padding: 16px clamp(20px, 5vw, 48px); width: 100%; }
  .nav__links a::after { display: none; }
  .nav__burger { display: flex; }
  .nav__actions .btn--sm { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .compare { grid-template-columns: 1fr; }
  .stakes__grid { grid-template-columns: 1fr; }
  .cards, .stack, .offers, .metrics__grid { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 1px solid var(--line); }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__base { flex-direction: column; gap: 12px; text-align: center; }
  .quiz__email { flex-direction: column; }
  .subscribe { grid-template-columns: 1fr; }
}
