/* =========================================================================
   1v14 — customer-facing site
   One stylesheet. Dark, high-contrast creator-tech identity.
   Sections: tokens · reset · typography · layout · header · footer ·
             buttons · scrollytelling stage · scenes · content pages ·
             reduced motion
   ========================================================================= */

/* ----- tokens ----------------------------------------------------------- */
:root {
  --ink: #0B0B14;
  --ink-raised: #14141F;
  --slate: #1F1F2E;
  --line: #2A2A3D;
  --line-strong: #393252;

  --text: #F8FAFC;
  --text-dim: #A8A7BD;
  --text-mute: #6E6D84;

  --violet: #8B5CF6;
  --violet-deep: #6D28D9;
  --violet-soft: rgba(139, 92, 246, 0.16);

  --signal: #19D69A;
  --signal-ink: #06231A;
  --watch: #F8CC58;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 18px;

  --shell: min(1180px, 100% - 8vw);
  --header-h: 68px;

  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  --step: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 900px) {
  :root { --header-h: 56px; --shell: min(640px, 100% - 10vw); }
}

/* ----- reset ---------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--step);
  line-height: 1.6;
  font-feature-settings: "tnum" 1, "cv05" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--violet); color: #fff; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  background: var(--violet);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ----- typography ---------------------------------------------------- */
h1,
h2,
h3,
h4 {
  margin: 0 0 0.4em;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display {
  font-size: clamp(2.8rem, 1.6rem + 6vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.h-lead {
  font-size: clamp(2rem, 1.4rem + 3vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

p { margin: 0 0 1rem; max-width: 62ch; }

.lede {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  color: var(--text-dim);
  max-width: 54ch;
}

.metric-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.num {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

/* ----- layout ------------------------------------------------------- */
.shell { width: var(--shell); margin-inline: auto; }

main { display: block; }

.section {
  padding-block: clamp(4rem, 2rem + 9vw, 9rem);
}
.section + .section { padding-top: 0; }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 2rem; }

.eyebrow {
  display: inline-block;
  margin-bottom: 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--violet);
}

/* ----- header ----------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    height 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-condensed {
  background: rgba(11, 11, 20, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}

.site-header__inner {
  width: var(--shell);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  margin-right: auto;
}
.brand svg { width: 26px; height: 26px; }
.brand .num { color: var(--text); }

.primary-nav { display: flex; align-items: center; gap: 1.6rem; }
.primary-nav a {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.98rem;
  transition: color 0.16s var(--ease);
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] { color: var(--text); }

.header-cta { display: flex; align-items: center; gap: 0.9rem; }
.header-cta .login { font-weight: 700; }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 11, 20, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 6vw 1.4rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .primary-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .primary-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: transparent;
  }
  .nav-toggle svg { width: 20px; height: 20px; }
  .header-cta .login { display: none; }
}

@media (max-width: 460px) {
  .brand span.wordmark { display: none; }
}

/* ----- buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.14s var(--ease), background 0.16s var(--ease),
    border-color 0.16s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(120deg, var(--violet-deep), var(--violet));
  color: #fff;
}
.btn--primary:hover { background: linear-gradient(120deg, var(--violet), #a385ff); }

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--text-dim); background: rgba(255, 255, 255, 0.03); }

.btn--lg { padding: 0.95rem 1.6rem; font-size: 1.05rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* ----- pill / status ------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
}
.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-mute);
}
.pill--prototype { color: var(--signal); border-color: rgba(25, 214, 154, 0.4); }
.pill--prototype::before { background: var(--signal); }
.pill--planned { color: var(--watch); border-color: rgba(248, 204, 88, 0.36); }
.pill--planned::before { background: var(--watch); }

/* =========================================================================
   Scrollytelling stage (landing)
   ========================================================================= */
.scrolly {
  position: relative;
}

.scrolly__viz {
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.scrolly__steps {
  position: relative;
  z-index: 2;
}

.step {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 8vh;
}
.step__index {
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--violet);
  margin-bottom: 0.9rem;
}
.step h2 {
  font-size: clamp(1.8rem, 1.3rem + 2.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.step p { color: var(--text-dim); }

/* desktop split */
@media (min-width: 901px) {
  .scrolly {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    gap: 4vw;
  }
  .scrolly__viz {
    grid-column: 2;
    grid-row: 1;
  }
  .scrolly__steps {
    grid-column: 1;
    grid-row: 1;
  }
  .step { max-width: 40ch; }
}

/* mobile: viz band pinned above the text */
@media (max-width: 900px) {
  .scrolly__viz {
    top: var(--header-h);
    height: 54vh;
    margin-inline: calc(50% - 50vw);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #0d0d18, var(--ink));
  }
  .step { min-height: 78vh; }
  .step:first-child { min-height: 46vh; }
}

/* ----- viz scenes -------------------------------------------------- */
.scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 6%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease);
}
.scene.is-active { opacity: 1; visibility: visible; }
.scene.is-adjacent { opacity: 0.14; visibility: visible; }

.scene svg { width: 100%; height: 100%; overflow: visible; }

/* scene 1/2 — fragments converging */
.fragments {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
}
.core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128px;
  height: 128px;
  margin: -64px 0 0 -64px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: radial-gradient(120% 120% at 30% 20%, #241a44, #120f22);
  border: 1px solid var(--line-strong);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  box-shadow: 0 0 0 0 var(--violet-soft);
  transform: scale(calc(0.7 + 0.3 * var(--t, 0)));
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.scene[data-scene="converge"].is-active .core {
  box-shadow: 0 0 60px 4px var(--violet-soft);
}
.tile {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0.4rem 0.6rem;
  min-width: 96px;
  margin: -16px 0 0 -48px;
  border-radius: 9px;
  background: var(--ink-raised);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-dim);
  text-align: center;
  white-space: nowrap;
  transform: translate(
    calc(var(--tx) * (1 - var(--t, 0))),
    calc(var(--ty) * (1 - var(--t, 0)))
  )
  scale(calc(1 - 0.35 * var(--t, 0)));
  opacity: calc(1 - 0.85 * var(--t, 0));
  transition: transform 0.05s linear, opacity 0.05s linear;
}

/* scene 3 — signal field */
.signal-dot { transition: opacity 0.3s var(--ease); }

/* scene 4 — opportunity card */
.opp-card {
  width: min(100%, 420px);
  background: var(--ink-raised);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transform: translateY(calc(24px * (1 - var(--t, 0))));
  opacity: var(--t, 0);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.opp-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.opp-score {
  flex: none;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: var(--signal);
  color: var(--signal-ink);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
}
.opp-card__head h3 { margin: 0; font-size: 1.15rem; }
.opp-card__head .metric-label { color: var(--signal); }
.opp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.opp-cell {
  background: var(--slate);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
}
.opp-cell .val {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 0.15rem;
}
.opp-cell .val.is-watch { color: var(--watch); }
.opp-cell .val.is-signal { color: var(--signal); }

/* scene 5 — creation loop */
.loop-node { transition: opacity 0.3s var(--ease); }

/* scene 6 — extension frame */
.yt-frame {
  width: min(100%, 460px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0f0f17;
}
.yt-frame__bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-inline: 12px;
  background: #17171f;
  border-bottom: 1px solid var(--line);
}
.yt-frame__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #333;
  display: block;
}
.yt-frame__body { position: relative; padding: 14px; }
.yt-player {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: linear-gradient(135deg, #1c1c28, #101019);
  display: grid;
  place-items: center;
}
.yt-player svg { width: 46px; height: 46px; opacity: 0.5; }
.yt-overlay {
  position: absolute;
  right: 26px;
  top: 26px;
  background: rgba(11, 11, 20, 0.92);
  border: 1px solid rgba(25, 214, 154, 0.5);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  min-width: 160px;
  transform: translateY(calc(-10px * (1 - var(--t, 0)))) scale(calc(0.94 + 0.06 * var(--t, 0)));
  opacity: var(--t, 0);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.yt-overlay .big {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--signal);
}

/* scene 7 — promise */
.promise {
  text-align: left;
  width: min(100%, 460px);
}
.promise .display { font-size: clamp(2.4rem, 1.5rem + 4vw, 4rem); }

/* =========================================================================
   Content pages
   ========================================================================= */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 1rem + 8vw, 7rem));
  padding-bottom: clamp(2.5rem, 1rem + 5vw, 5rem);
}
.page-hero .lede { margin-top: 1.2rem; }

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* feature index — a structured list with status rails, not a card grid */
.feature-index { border-top: 1px solid var(--line); }
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: start;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.16s var(--ease);
}
.feature-row:hover { background: rgba(255, 255, 255, 0.02); }
.feature-row h3 {
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
}
.feature-row p { margin: 0; color: var(--text-dim); max-width: 60ch; }
.feature-row .go {
  align-self: center;
  color: var(--text-mute);
  font-weight: 700;
}
.feature-row:hover .go { color: var(--violet); }
@media (max-width: 640px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row .go { display: none; }
}

/* the connected loop, shown statically on content pages */
.loop-static {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}
.loop-static li {
  list-style: none;
  background: var(--ink-raised);
  padding: 1rem;
}
.loop-static li[data-current] { background: var(--violet-soft); }
.loop-static .n {
  font-variant-numeric: tabular-nums;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--violet);
}
.loop-static .s { display: block; font-weight: 700; margin-top: 0.3rem; }

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.4rem; font-size: 1.5rem; }
.prose ul { padding-left: 1.1rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }

/* two-column detail split */
.split {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}

.panel {
  background: var(--ink-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.panel h3 { font-size: 1.05rem; }
.panel .metric-label { display: block; margin-bottom: 0.2rem; }

.fact-list { display: grid; gap: 0.9rem; margin: 0; padding: 0; }
.fact-list div {
  padding-left: 1.1rem;
  border-left: 2px solid var(--violet);
}

/* pricing structure placeholder */
.tier-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 2rem;
}
.tier {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  background: var(--ink-raised);
}
.tier[data-emphasis] { border-color: var(--violet); }
.tier .price { font-size: 1.4rem; font-weight: 800; margin: 0.6rem 0; color: var(--text-dim); }

/* 404 */
.error-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--header-h);
}
.error-wrap .num { font-size: clamp(4rem, 2rem + 12vw, 9rem); font-weight: 800; color: var(--violet); }

/* ----- footer --------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 1.5rem + 5vw, 5rem);
  color: var(--text-dim);
}
.footer-grid {
  display: grid;
  gap: 2.5rem 2rem;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
}
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a:hover { color: var(--text); }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; }
.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-mute);
}

/* ----- nav scroll lock (mobile drawer open) -------------------- */
body.nav-open { overflow: hidden; }
@media (min-width: 901px) { body.nav-open { overflow: visible; } }

/* =========================================================================
   Extra scene mechanics (scenes 3 & 5) + landing intro
   ========================================================================= */

/* landing intro — sits above the scrollytelling stage, no manufactured gap */
.landing-intro {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 1rem + 6vw, 5.5rem));
  padding-bottom: clamp(1.5rem, 1rem + 3vw, 3rem);
}
.landing-intro .display { max-width: 14ch; }
.landing-intro .lede { margin-top: 1.4rem; }

/* the count-down chip: "14 → 1" */
.count-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.count-chip b { color: var(--violet); font-size: 1.15rem; }
.count-chip span { color: var(--text-mute); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* scene 3 — signal field */
.signal-field { width: min(100%, 460px); position: relative; }
.signal-field .noise {
  opacity: calc(0.85 - 0.55 * var(--t, 0));
  transition: opacity 0.45s var(--ease);
}
.signal-field .breakout {
  opacity: var(--t, 0);
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(calc(0.55 + 0.45 * var(--t, 0)));
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.signal-field .breakout-ring {
  opacity: calc((var(--t, 0) - 0.35) * 1.8);
  transition: opacity 0.4s var(--ease);
}
.signal-field figcaption {
  margin-top: 1rem;
  text-align: center;
  opacity: calc((var(--t, 0) - 0.4) * 1.8);
  transition: opacity 0.4s var(--ease);
}

/* scene 5 — creation loop */
.loop-diagram { width: min(100%, 430px); }
.loop-diagram .track {
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--t, 0));
  transition: stroke-dashoffset 0.6s var(--ease);
}
.loop-diagram .loop-node {
  transform-box: fill-box;
  transform-origin: center;
  opacity: calc(0.22 + 0.78 * var(--t, 0));
  transform: scale(calc(0.82 + 0.18 * var(--t, 0)));
}
.loop-diagram .loop-label {
  opacity: calc(0.2 + 0.8 * var(--t, 0));
  transition: opacity 0.4s var(--ease);
}

/* scene 7 — promise list */
.promise ul { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.promise li {
  padding: 0.4rem 0;
  font-weight: 700;
  border-top: 1px solid var(--line);
  opacity: calc(0.25 + 0.75 * var(--t, 0));
  transform: translateX(calc(-10px * (1 - var(--t, 0))));
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.promise li:first-child { border-top: 0; }
.promise li b { color: var(--signal); }

/* mobile: scenes read as a horizontal-safe band, tighten card widths */
@media (max-width: 900px) {
  .opp-card,
  .signal-field,
  .loop-diagram,
  .yt-frame,
  .promise { width: min(100%, 340px); }
  .opp-grid { grid-template-columns: 1fr 1fr; }
  .step__index { margin-bottom: 0.6rem; }
}

/* contact + about supporting layout */
.info-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}
.info-grid .panel p:last-child { margin-bottom: 0; }
.lead-links { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.4rem; }
.lead-links a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }

/* legal page meta line */
.doc-meta {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 2rem;
}
.placeholder-note {
  border-left: 2px solid var(--watch);
  padding: 0.4rem 0 0.4rem 1rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ----- reveal (used when reduced motion or as progressive enhancement) - */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: none; }

/* ----- no-JS + reduced motion fallbacks ------------------------- */
.no-js .scrolly {
  display: block;
}
.no-js .scrolly__viz {
  position: relative;
  top: 0;
  height: auto;
  min-height: 60vh;
  margin-inline: 0;
}
.no-js .scene {
  position: relative;
  opacity: 1;
  visibility: visible;
  min-height: 50vh;
  border-bottom: 1px solid var(--line);
}
.no-js .scene .core { transform: none; }
.no-js .tile { position: static; transform: none; opacity: 1; margin: 4px; display: inline-block; }
.no-js .fragments { display: flex; flex-wrap: wrap; gap: 6px; height: auto; aspect-ratio: auto; place-content: center; }
.no-js .fragments .core { position: static; margin: 8px auto; }
.no-js .opp-card,
.no-js .yt-overlay { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .scene { transition: none; }
}
