/* ============================================================
   D3 Digital Media — Homepage (scroll-driven wave hero)
   Self-contained bundle — does not depend on main-*.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&display=swap');

@property --p {
  syntax: '<number>';
  initial-value: 0;
  inherits: true;
}

:root {
  --sky: #10dde0;
  --sky-bright: #14e8eb;
  --sky-deep: #0a8a8c;
  --sky-soft: rgba(16, 221, 224, 0.12);
  --sky-glow: rgba(16, 221, 224, 0.35);

  --bg: #050608;
  --bg-card: #0c0e12;
  --bg-elevated: #11141a;
  --bg-soft: #161922;
  --border: #1c2029;
  --border-strong: #2a2f3a;

  --text: #f4f6f8;
  --text-muted: #dde3ea;
  --text-dim: #b8c0c8;

  --p-w: #10dde0;
  --p-a: #f5b942;
  --p-v: #4ade80;
  --p-e: #fb7185;
  --p-s: #a78bfa;

  --r-btn: 4px;
  --r-card: 14px;
  --r-pill: 999px;

  --t-fast: .18s;
  --t-medium: .32s;
  --t-slow: .6s;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --display: 'Fraunces', Georgia, serif;
  --body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Fix Divi parent overflow breaking position: sticky on marketing pages */
html, body, #page-container, #et-main-area, #main-content, .entry-content, .post-content {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

/* ───────────────────────────────────────────────────────────────────
   DIVI INLINE-CSS OVERRIDE
   Divi (parent theme) injects an inline `h1,h2,h3,h4,h5,h6 { color:#333 }`
   rule into every page. With higher specificity than a bare element, this
   single line forces every heading inside our `#top` scope to inherit the
   theme's text color by default. Light-themed sections re-darken via
   `#top .is-light h2…` blocks below — those have ID+class+element specificity
   so they correctly beat this rule.
   ─────────────────────────────────────────────────────────────────── */
#top h1, #top h2, #top h3, #top h4, #top h5, #top h6 { color: var(--text); }

#top, #top * { box-sizing: border-box; }
#top {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
#top img, #top svg { display: block; max-width: 100%; }
#top a { color: inherit; text-decoration: none; }
#top ::selection { background: var(--sky); color: #000; }

/* -------------- Layout -------------- */
#top .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

#top .section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
}
#top .section--tight { padding: clamp(56px, 8vw, 100px) 0; }

/* -------------- Type -------------- */
#top .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
}
#top .eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--sky);
}

#top .eyebrow-num {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

#top .h-display {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(48px, 7.5vw, 104px);
  text-wrap: balance;
  color: #ffffff;
}

#top .h-section {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: 'opsz' 96;
  letter-spacing: -0.018em;
  line-height: 1.05;
  font-size: clamp(36px, 5vw, 64px);
  text-wrap: balance;
  color: #ffffff;
}

#top .h-subsection {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: 'opsz' 64;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-size: clamp(24px, 2.4vw, 32px);
}

#top .accent { color: var(--sky); }
#top .italic { font-style: italic; }

#top .lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 60ch;
  text-wrap: pretty;
}

#top .muted { color: var(--text-muted); }

/* -------------- Buttons -------------- */
#top .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
}
#top .btn--primary { background: var(--sky); color: #000; }
#top .btn--primary:hover {
  background: var(--sky-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--sky-glow);
}
#top .btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
#top .btn--ghost:hover { border-color: var(--sky); color: var(--sky); }
#top .btn .arrow {
  width: 16px;
  height: 12px;
  position: relative;
  display: inline-block;
}
#top .btn .arrow::before, #top .btn .arrow::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 1.5px;
  background: currentColor;
  right: 0;
  top: 50%;
}
#top .btn .arrow::before { transform: translateY(-50%) rotate(35deg); transform-origin: right; top: 4px; }
#top .btn .arrow::after  { transform: translateY(-50%) rotate(-35deg); transform-origin: right; top: 8px; }

/* ============================================================
   HERO — scroll-driven wave
   ============================================================ */
#top .hero {
  position: relative;
  height: 140vh;
  background: var(--bg);
}
#top .hero__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  --p: 0;
  --hero-text-scale: 0.4;
}
#top .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
#top .hero__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
  display: none;
}
#top .hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    /* Left-anchored scrim — strong where the headline sits, fades right */
    linear-gradient(90deg,
      rgba(5, 6, 8, 0.88) 0%,
      rgba(5, 6, 8, 0.72) 30%,
      rgba(5, 6, 8, 0.42) 55%,
      rgba(5, 6, 8, 0.18) 80%,
      rgba(5, 6, 8, 0.00) 100%),
    /* Soft top/bottom darkening for chrome + edge */
    linear-gradient(180deg,
      rgba(5, 6, 8, 0.45) 0%,
      rgba(5, 6, 8, 0.00) 22%,
      rgba(5, 6, 8, 0.00) 70%,
      rgba(5, 6, 8, 0.80) 100%);
}
@media (max-width: 640px) {
  /* On phones the headline is wider and centered-ish, so use a uniform
     darkening instead of left-anchored. iPad uses the desktop scrim. */
  #top .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(5, 6, 8, 0.55) 0%,
        rgba(5, 6, 8, 0.40) 35%,
        rgba(5, 6, 8, 0.55) 65%,
        rgba(5, 6, 8, 0.90) 100%);
  }
}
@media (max-width: 1024px) {
  /* Tablets and phones: hide the scroll-scrubbed video, show the static poster. */
  #top .hero__video { display: none; }
  #top .hero__poster { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  #top .hero__video { display: none; }
  #top .hero__poster { display: block; }
}
#top .hero__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 10%,
      rgba(16, 221, 224, calc(0.06 + var(--p) * 0.14)) 0%,
      transparent 70%),
    linear-gradient(180deg,
      #050608 0%,
      #07090e 50%,
      #050608 100%);
  transition: background-color var(--t-slow);
}
#top .hero__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 26% 32%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 48% 12%, rgba(16,221,224,0.5), transparent),
    radial-gradient(1px 1px at 72% 24%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 88% 8%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 60% 38%, rgba(16,221,224,0.3), transparent),
    radial-gradient(1px 1px at 36% 6%, rgba(255,255,255,0.25), transparent);
  opacity: calc(1 - var(--p) * 0.5);
}
#top .hero__horizon {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(58% - var(--p) * 6%);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(16,221,224, calc(0.4 + var(--p) * 0.3)) 30%,
    rgba(16,221,224, calc(0.6 + var(--p) * 0.4)) 50%,
    rgba(16,221,224, calc(0.4 + var(--p) * 0.3)) 70%,
    transparent 100%);
  box-shadow: 0 0 calc(20px + var(--p) * 60px) rgba(16,221,224, calc(0.2 + var(--p) * 0.5));
}
#top .hero__content {
  position: relative;
  z-index: 10;
  height: calc(100vh - 120px);
  height: calc(100dvh - 120px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 90px var(--gutter) 40px;
  max-width: var(--container);
  margin: 0 auto;
}
#top .hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  opacity: calc(1 - var(--p) * 1.5);
}
#top .hero__brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
#top .hero__brand-mark img { height: 28px; width: auto; }
#top .hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(12, 14, 18, 0.6);
  backdrop-filter: blur(8px);
}
#top .hero__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 12px var(--sky);
}

#top .hero__proof-shelf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--sky);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(16, 221, 224, 0.08);
  backdrop-filter: blur(8px);
  transition: all var(--t-fast) var(--ease);
}
#top .hero__proof-shelf-link:hover {
  background: rgba(16, 221, 224, 0.15);
  box-shadow: 0 0 16px var(--sky-glow);
  transform: translateY(-1px);
}
#top .hero__center {
  align-self: center;
  display: grid;
  gap: 36px;
  max-width: 1100px;
  transform-origin: left center;
  transform:
    translateY(calc(var(--p) * -8vh))
    scale(var(--hero-text-scale));
  /* Headline stays fully visible across the entire hero scroll. */
  opacity: 1;
  will-change: transform;
}
@media (max-width: 1024px) {
  /* Tablets and phones: no scroll-scrub — text stays put at full size. */
  #top .hero__stage { --hero-text-scale: 1; }
  #top .hero__center { transform: none; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  #top .hero__stage { --hero-text-scale: 1; }
  #top .hero__center { transform: none; opacity: 1; }
}
#top .hero__h1 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(46px, 8.4vw, 124px);
  text-wrap: balance;
  color: #ffffff;
  /* Light shadow only — heavy 24px blur was washing perceived brightness.
     The scrim handles contrast against the video now. */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
#top .hero__h1 .accent { font-style: italic; font-weight: 600; }
#top .hero__sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  /* Pulled brighter than --text-muted for hero readability over busy frames. */
  color: #dde2e7;
  max-width: 56ch;
  text-wrap: pretty;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
}
#top .hero__sub strong { color: var(--text); font-weight: 600; }
#top .hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* Prevent text cutoff on screens with shorter viewport heights */
@media (max-height: 900px) {
  #top .hero__content {
    padding-top: 80px;
  }
  #top .hero__center {
    gap: 20px;
  }
  #top .hero__h1 {
    font-size: clamp(40px, 6vw, 90px);
  }
  #top .hero__sub {
    font-size: clamp(15px, 1.2vw, 18px);
  }
}
@media (max-height: 760px) {
  #top .hero__content {
    padding-top: 70px;
    padding-bottom: 30px;
  }
  #top .hero__center {
    gap: 16px;
  }
  #top .hero__h1 {
    font-size: clamp(32px, 5vw, 70px);
  }
  #top .hero__sub {
    font-size: clamp(14px, 1vw, 15px);
  }
}

#top .hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: calc(1 - var(--p) * 1.2);
}
#top .hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
}
#top .hero__scroll-line {
  width: 60px;
  height: 1px;
  background: var(--text-dim);
  position: relative;
  overflow: hidden;
}
#top .hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sky);
  animation: d3scrollHint 2s infinite var(--ease);
  transform-origin: left;
}
@keyframes d3scrollHint {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}
#top .hero__post {
  /* The main headline now stays visible throughout the scroll, so the
     "The wave arrives" post-reveal is suppressed to avoid overlap. */
  display: none;
}
#top .hero__post-suppressed-styles {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + (1 - var(--p)) * 30vh));
  text-align: center;
  opacity: calc(max(0, var(--p) - 0.55) * 2.5);
  pointer-events: none;
  width: min(900px, 90vw);
}
#top .hero__post-mark {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
#top .hero__post-mark .accent { color: var(--sky); }
#top .hero__post-line {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================ PROOF */
#top .proof {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
#top .proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  list-style: none;
}
#top .proof__item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-left: 1px solid var(--border-strong);
  padding-left: 24px;
}
#top .proof__item:first-child { border-left: none; padding-left: 0; }
#top .proof__num {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: 'opsz' 96;
  font-size: clamp(40px, 4.5vw, 60px);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
#top .proof__num .accent { color: var(--sky); }
#top .proof__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 22ch;
}

/* ============================================================ SPLINTER */
#top .splinter { background: var(--bg); }
#top .splinter__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
#top .splinter__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  /* Italic Fraunces "2" has a descending tail. Earlier 120px / line-height 0.8
     was clipping that tail on iPad Safari. Lower max + 1.0 line-height
     prevents glyph clipping at every viewport tested. */
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  color: var(--sky);
  opacity: 0.5;
}
#top .splinter__cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}
#top .splinter__story {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 44px);
}
#top .splinter__chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--sky);
  margin-bottom: 18px;
  padding: 5px 12px;
  border: 1px solid var(--sky-soft);
  border-radius: var(--r-pill);
  background: var(--sky-soft);
  text-transform: uppercase;
}
#top .splinter__story h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  color: #ffffff;
}
#top .splinter__story p { color: var(--text); margin-bottom: 14px; }
#top .splinter__story p:last-child { margin-bottom: 0; color: var(--text); }
#top .splinter__pain { list-style: none; display: flex; flex-direction: column; gap: 0; }
#top .splinter__pain-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
#top .splinter__pain-item:first-child { border-top: none; padding-top: 0; }
#top .splinter__pain-letter {
  font-family: var(--display);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sky);
  border-radius: 8px;
  color: var(--sky);
}
#top .splinter__pain-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.3;
  color: var(--text);
}
#top .splinter__pain-gap {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ============================================================ PILLARS */
#top .pillars { background: var(--bg); }
#top .pillars__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
#top .pillars__head .lede { justify-self: end; }
#top .pillars__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#top .pillars__card {
  --pc: var(--sky);
  padding: 36px 24px 32px;
  border-left: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--t-medium) var(--ease);
}
#top .pillars__card:first-child { border-left: none; }
#top .pillars__card:hover { background: var(--bg-card); }
#top .pillars__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-medium) var(--ease);
}
#top .pillars__card:hover::before { transform: scaleX(1); }
#top .pillars__letter {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(72px, 7vw, 104px);
  line-height: 0.9;
  color: var(--pc);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
#top .pillars__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
#top .pillars__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
#top .pillars__desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

/* ============================================================ K-WAVE */
#top .kwave { background: var(--bg-card); }
#top .kwave__head { margin-bottom: 64px; max-width: 800px; }
#top .kwave__list { border-top: 1px solid var(--border-strong); }
#top .kwave__row {
  display: grid;
  grid-template-columns: 100px 1.2fr 1fr 140px;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: padding var(--t-medium) var(--ease), background var(--t-medium) var(--ease);
}
#top .kwave__row:hover { background: rgba(16,221,224, 0.03); padding-left: 16px; padding-right: 16px; }
#top .kwave__step {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--sky);
  letter-spacing: 0.05em;
}
#top .kwave__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
#top .kwave__name span:first-child { color: var(--sky); }
#top .kwave__role {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
#top .kwave__desc { font-size: 15px; color: var(--text); line-height: 1.55; }
#top .kwave__desc em { font-family: var(--display); font-style: italic; color: var(--text); }
#top .kwave__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  text-align: center;
  white-space: nowrap;
}
#top .kwave__levels {
  margin-top: 72px;
  padding: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
}
#top .kwave__levels-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
#top .kwave__levels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
#top .kwave__levels-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--sky-soft) 15%,
    var(--sky) 50%,
    var(--sky-soft) 85%,
    transparent 100%);
}
#top .kwave__level { text-align: center; position: relative; padding-top: 56px; }
#top .kwave__level::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--sky);
}
#top .kwave__level:nth-child(5)::after { background: var(--sky); box-shadow: 0 0 16px var(--sky); }
#top .kwave__level-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  display: block;
}
#top .kwave__level-range {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--sky);
  margin: 4px 0;
}
#top .kwave__level-desc {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  line-height: 1.4;
}

/* ============================================================ VOICES */
#top .voices { background: var(--bg); }
#top .voices__head { margin-bottom: 64px; }
#top .voices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
#top .voices__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "attr  mark"
    "attr  quote";
  gap: 0 clamp(32px, 4vw, 64px);
  align-items: start;
}
#top .voices__card--featured {
  background: linear-gradient(180deg, rgba(16,221,224,0.06), transparent 70%), var(--bg-card);
  border-color: var(--sky);
  box-shadow: 0 0 0 1px var(--sky), 0 30px 60px -30px var(--sky-glow);
}
#top .voices__mark {
  grid-area: mark;
  font-family: var(--display);
  font-weight: 500;
  font-size: 64px;
  line-height: 0.7;
  color: var(--sky);
  height: 24px;
  margin-bottom: 4px;
}
#top .voices__quote {
  grid-area: quote;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--text);
  margin: 0;
  text-wrap: pretty;
}
#top .voices__attr {
  grid-area: attr;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-right: clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--border);
  height: 100%;
  text-align: left;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}
#top .voices__attr strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
#top .voices__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-deep), var(--sky));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
  margin-bottom: 4px;
}

/* ============================================================ CLIENTS */
#top .clients { background: var(--bg); }
#top .clients__head { margin-bottom: 56px; }
#top .clients__group { margin-bottom: 36px; }
#top .clients__group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
#top .clients__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 12px var(--sky);
  animation: d3pulse 2.5s infinite var(--ease);
}
@keyframes d3pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
#top .clients__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}
#top .clients__list li {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1;
  padding: 22px 32px 22px 24px;
  letter-spacing: -0.015em;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex: 1 0 calc(33.333% - 1px);
  display: flex;
  align-items: center;
  transition: color var(--t-fast), background var(--t-fast);
}
#top .clients__list li:hover { color: var(--sky); background: var(--bg-card); }
#top .clients__list--past li { color: var(--text); }

/* ============================================================ OPERATOR */
#top .operator { background: var(--bg-card); }
#top .operator__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
#top .operator__cover {
  position: sticky;
  top: 40px;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  margin: 0;
}
#top .operator__cover img { width: 100%; height: auto; display: block; }
#top .operator__body { padding-top: 8px; }
#top .operator__h2 { margin-top: 12px; margin-bottom: 28px; }
#top .operator__quotes {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
#top .operator__quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
#top .operator__quote-bar { width: 2px; background: var(--sky); align-self: stretch; }
#top .operator__quote p {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.4;
  color: var(--text);
}
#top .operator__quote em { font-style: italic; color: var(--sky); }

/* ============================================================ DIFFERENT */
#top .different { background: var(--bg); }
#top .different__head { margin-bottom: 64px; max-width: 800px; }
#top .different__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
#top .different__card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background var(--t-medium) var(--ease);
}
#top .different__card:hover { background: var(--bg-card); }
#top .different__card-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  color: var(--sky);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  display: block;
}
#top .different__card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
#top .different__card p { font-size: 14px; line-height: 1.55; color: var(--text); }

/* ============================================================ REFUSALS */
#top .refusals { background: var(--bg-card); }
#top .refusals__head { margin-bottom: 56px; max-width: 700px; }
#top .refusals__h2 {
  text-decoration-line: line-through;
  text-decoration-color: rgba(251, 113, 133, 0.4);
  text-decoration-thickness: 1px;
}
#top .refusals__h2 .accent { text-decoration: none; }
#top .refusals__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
}
#top .refusals__item {
  background: var(--bg-card);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
#top .refusals__x {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #fb7185;
  color: #fb7185;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
#top .refusals__item h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
#top .refusals__item p { font-size: 14px; color: var(--text); line-height: 1.5; }

/* ============================================================ PATHS */
#top .paths { background: var(--bg); }
#top .paths__head { margin-bottom: 64px; }
#top .paths__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
#top .paths__grid--two {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
#top .paths__card--two {
  padding: 44px 36px;
}
#top .paths__from {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
#top .paths__card--two .paths__price {
  display: block;
  margin-bottom: 4px;
}
#top .paths__card--two .paths__amount {
  font-size: clamp(48px, 4vw, 56px);
}
#top .paths__card--two .paths__name {
  font-size: clamp(28px, 2.4vw, 34px);
  margin-bottom: 22px;
}
#top .paths__card--two .paths__includes li strong {
  color: var(--text);
  font-weight: 600;
}
#top .paths__card--two .paths__includes li {
  font-size: 14px;
  line-height: 1.5;
}
#top .paths__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--t-medium) var(--ease), border-color var(--t-medium) var(--ease);
}
#top .paths__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
#top .paths__card--featured {
  background: linear-gradient(180deg, rgba(16,221,224,0.06), transparent 60%), var(--bg-card);
  border-color: var(--sky);
  box-shadow: 0 0 0 1px var(--sky), 0 30px 80px -30px var(--sky-glow);
}
#top .paths__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sky);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
#top .paths__tier {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sky);
  text-transform: uppercase;
  margin-bottom: 6px;
}
#top .paths__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
#top .paths__sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
  min-height: 36px;
}
#top .paths__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
#top .paths__amount {
  font-family: var(--display);
  font-weight: 600;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
}
#top .paths__period { font-size: 14px; color: var(--text-muted); }
#top .paths__annual {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
#top .paths__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex: 1;
}
#top .paths__includes li {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
}
#top .paths__includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}
#top .paths__best {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.4;
}
#top .paths__best strong { color: var(--text); }
#top .paths__card .btn { width: 100%; justify-content: center; }

#top .paths__custom {
  margin-top: 32px;
  padding: 36px;
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-card);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
#top .paths__custom-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}
#top .paths__custom h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  margin-bottom: 8px;
}
#top .paths__custom p { font-size: 14px; color: var(--text); max-width: 60ch; }
#top .paths__footnote {
  margin-top: 28px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  text-wrap: pretty;
}
#top .paths__footnote strong { color: var(--text-muted); font-weight: 600; }

/* ============================================================ FINAL CTA */
#top .final-cta {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#top .final-cta::before {
  content: '';
  position: absolute;
  inset: -50% -10% auto auto;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, var(--sky-glow), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
#top .final-cta .container { position: relative; z-index: 1; }
#top .final-cta__inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
#top .final-cta h2 { margin: 16px 0 28px; }
#top .final-cta .lede { margin: 0 auto 36px; }
#top .final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================================ MOBILE */
@media (max-width: 1024px) {
  #top .splinter__cols,
  #top .pillars__head,
  #top .operator__cols { grid-template-columns: 1fr; gap: 32px; }
  #top .voices__card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "mark"
      "quote"
      "attr";
    gap: 0;
  }
  #top .voices__quote { margin-bottom: 24px; }
  #top .voices__attr {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding-right: 0;
    padding-top: 22px;
    border-right: none;
    border-top: 1px solid var(--border);
    height: auto;
  }
  #top .voices__attr strong { display: inline; margin-bottom: 0; }
  #top .voices__avatar { margin-bottom: 0; }
  #top .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  #top .pillars__card { border-left: none; border-top: 1px solid var(--border); }
  #top .pillars__card:nth-child(odd) { border-right: 1px solid var(--border); }
  #top .different__grid { grid-template-columns: 1fr 1fr; }
  #top .paths__grid { grid-template-columns: 1fr 1fr; }
  #top .paths__grid--two { grid-template-columns: 1fr; gap: 24px; max-width: 600px; }
  #top .kwave__row { grid-template-columns: 60px 1fr 1fr; }
  #top .kwave__row .kwave__tier { grid-column: 2 / -1; justify-self: start; }
  #top .operator__cover { position: static; max-width: 480px; }
  #top .kwave__levels-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  #top .kwave__levels-grid::before { display: none; }
  #top .kwave__level { padding-top: 0; text-align: left; }
  #top .kwave__level::after { display: none; }
}

@media (max-width: 1024px) {
  #top .hero { height: 100vh; height: 100dvh; }
  #top .hero__top, #top .hero__bottom { display: none; }
}

@media (max-width: 640px) {
  #top .pillars__grid,
  #top .different__grid,
  #top .paths__grid,
  #top .refusals__list { grid-template-columns: 1fr; }
  #top .proof__grid { grid-template-columns: 1fr; gap: 24px; }
  #top .proof__item { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 20px; }
  #top .proof__item:first-child { border-top: none; padding-top: 0; }
  #top .clients__list li { flex: 1 0 calc(50% - 1px); font-size: 18px; padding: 16px 12px; }
  #top .kwave__row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  #top .paths__custom { grid-template-columns: 1fr; }
}

/* ============================================================ FADE-IN */
#top .fade-in {
  /* Always visible — animation was causing dim/invisible text on mobile
     when IntersectionObserver hadn't fired yet. Readability over motion. */
  opacity: 1;
  transform: none;
}
#top .fade-in.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  #top .fade-in { opacity: 1; transform: none; transition: none; }
  #top .hero__scroll-line::after { animation: none; }
  #top .clients__dot { animation: none; }
}

/* ============================================================
   §03b — OPERATING LAYER (Four Foundations + Four Rhythms)
   ============================================================ */
#top .oplayer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#top .oplayer__head { max-width: 800px; margin-bottom: 56px; }

#top .oplayer__group { margin-bottom: 48px; }
#top .oplayer__group:last-of-type { margin-bottom: 0; }
#top .oplayer__group-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
#top .oplayer__group-meta {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.65em;
  letter-spacing: 0;
}

#top .oplayer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
#top .oplayer__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px 22px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
#top .oplayer__card:hover {
  border-color: var(--sky);
  transform: translateY(-2px);
}
#top .oplayer__card-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.005em;
  color: #ffffff;
  margin-bottom: 10px;
}
#top .oplayer__card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
#top .oplayer__card-desc em {
  font-family: var(--display);
  font-style: italic;
  color: #ffffff;
  font-weight: 500;
}

/* Operator's Scoreboard callout */
#top .oplayer__scoreboard {
  margin: 56px 0 32px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(16,221,224,0.08), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--sky);
  border-radius: var(--r-card);
  box-shadow: 0 30px 80px -30px var(--sky-glow);
  text-align: center;
}
#top .oplayer__scoreboard-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}
#top .oplayer__scoreboard-line {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 10px;
  text-wrap: balance;
}
#top .oplayer__scoreboard-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0 auto;
  text-wrap: pretty;
}

#top .oplayer__footnote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 70ch;
  text-wrap: pretty;
}

/* ============================================================
   LIGHT SECTION OVERRIDES  (.is-light modifier)
   Used to break up the all-dark page rhythm. Applied to Proof (§02) and
   Voices (§06). Flips bg/text/border colors while preserving brand accents.
   ============================================================ */
#top .section.is-light,
#top .is-light {
  background: #f4f6f8;
  color: #0f1722;
  border-top: 1px solid #d8dee5;
  border-bottom: 1px solid #d8dee5;
}
#top .is-light .h-section,
#top .is-light .h-section *,
#top .is-light h2,
#top .is-light h3 { color: #0a1220; }
#top .is-light .eyebrow,
#top .is-light .h-section__sub,
#top .is-light .text-muted { color: #4a5568; }

/* Proof (§02) — light */
#top .proof.is-light .proof__num { color: #0a1220; }
#top .proof.is-light .proof__num .accent { color: var(--sky-deep, #007a8a); }
#top .proof.is-light .proof__label { color: #4a5568; }
#top .proof.is-light .proof__item { border-left-color: #c8d1da; }

/* Voices (§06) — light */
#top .voices.is-light .voices__card {
  background: #ffffff;
  border-color: #d8dee5;
  box-shadow: 0 8px 24px -16px rgba(15,23,34,0.18);
}
#top .voices.is-light .voices__card--featured {
  background: linear-gradient(180deg, rgba(0,122,138,0.04), #ffffff 70%);
  border-color: var(--sky-deep, #007a8a);
  box-shadow: 0 0 0 1px var(--sky-deep, #007a8a), 0 20px 50px -25px rgba(0,122,138,0.25);
}
#top .voices.is-light .voices__mark { color: var(--sky-deep, #007a8a); }
#top .voices.is-light .voices__quote { color: #0a1220; }
#top .voices.is-light .voices__attr { color: #4a5568; border-right-color: #d8dee5; }
#top .voices.is-light .voices__attr strong { color: #0a1220; }

/* ============================================================
   §13 BOOK PLACEHOLDER — Visible
   ============================================================ */
#top .book-placeholder {
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, var(--sky-soft), transparent 70%),
    var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
}
#top .book-placeholder::before {
  content: '';
  position: absolute;
  inset: -50% -10% auto auto;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--sky-glow), transparent 60%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
#top .book-placeholder .container { position: relative; z-index: 1; }
#top .book-placeholder__inner {
  max-width: 760px; margin: 0 auto;
}
#top .book-placeholder__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--sky-soft);
  border-radius: var(--r-pill);
  background: var(--sky-soft);
}
#top .book-placeholder__title {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(64px, 10vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 12px;
  text-wrap: balance;
}
#top .book-placeholder__subtitle {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.2;
  color: var(--sky);
  margin: 0 0 28px;
  text-wrap: balance;
}
#top .book-placeholder__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 auto 32px;
  text-wrap: pretty;
}
#top .book-placeholder__cta {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
#top .book-placeholder__cta .btn {
  font-size: 14px;
  padding: 16px 26px;
}
#top .book-placeholder__note {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
#top .book-placeholder__note em {
  font-style: italic;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   §03b/13 — responsive
   ============================================================ */
@media (max-width: 1024px) {
  #top .oplayer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  #top .oplayer__grid { grid-template-columns: 1fr; }
}
