/* ============================================================
   D3 Digital Media — WAVES Growth OS
   Page-specific styles. Imports the same tokens as home-d3v0101.css
   so the page reads as a sibling to the homepage.
   ============================================================ */

@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');

: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;
}

/* Override Divi inline h1-h6 { color:#333 } — see home-d3v0290.css for full notes */
#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; }

#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 .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-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 .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 .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 .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; }

/* ============================================================
   HERO — variant for WAVES Growth OS page (no video)
   ============================================================ */
#top .wgos-hero {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: grid;
  place-items: center;
  padding: clamp(80px, 12vh, 140px) 0 clamp(56px, 9vh, 100px);
  overflow: hidden;
  background: var(--bg);
}
#top .wgos-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 25%, var(--sky-glow), transparent 70%),
    radial-gradient(ellipse 70% 50% at 10% 95%, rgba(16, 221, 224, 0.08), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
#top .wgos-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(28, 32, 41, 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(28, 32, 41, 0.5) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}
#top .wgos-hero .container { position: relative; z-index: 1; }
#top .wgos-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(--sky);
  background: var(--sky-soft);
  margin-bottom: 28px;
}
#top .wgos-hero__chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sky); box-shadow: 0 0 12px var(--sky);
}
#top .wgos-hero h1 {
  font-family: var(--display); font-weight: 600;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.025em; line-height: 1.02;
  font-size: clamp(54px, 8vw, 112px);
  text-wrap: balance;
  color: #ffffff;
  margin-bottom: 28px;
  max-width: 14ch;
}
#top .wgos-hero h1 .accent {
  font-style: italic; font-weight: 500; color: var(--sky);
}
#top .wgos-hero__sub {
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55;
  color: var(--text-muted); max-width: 56ch;
  margin-bottom: 36px;
  text-wrap: pretty;
}
#top .wgos-hero__sub strong { color: var(--text); font-weight: 600; }
#top .wgos-hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* ============================================================
   §01 DIAGNOSTIC
   ============================================================ */
#top .diagnostic { background: var(--bg); }
#top .diagnostic__head { margin-bottom: 48px; }
#top .diagnostic__head h2 { margin-top: 18px; margin-bottom: 18px; }
#top .diagnostic__checkboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
#top .diagnostic__option {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
#top .diagnostic__option:hover {
  border-color: var(--sky);
  background: rgba(16, 221, 224, 0.04);
}
#top .diagnostic__option input[type="checkbox"] {
  appearance: none;
  width: 22px; height: 22px;
  border: 1.5px solid var(--border-strong);
  border-radius: 5px;
  background: var(--bg);
  display: grid; place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--t-fast) var(--ease);
}
#top .diagnostic__option input[type="checkbox"]:checked {
  background: var(--sky); border-color: var(--sky);
}
#top .diagnostic__option input[type="checkbox"]:checked::before {
  content: '✓'; color: #000; font-weight: 800; font-size: 14px;
}
#top .diagnostic__option:has(input:checked) {
  border-color: var(--sky);
  background: rgba(16, 221, 224, 0.06);
}
#top .diagnostic__label-text {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px); line-height: 1.3;
  color: var(--text);
}
#top .diagnostic__static-cta {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
}
#top .diagnostic__hint {
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 12px;
}
#top .diagnostic__full-cta-lead {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 1.6vw, 24px); line-height: 1.35;
  margin-bottom: 22px;
}
#top .diagnostic__rec-card {
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(16,221,224,0.06), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--sky);
  border-radius: var(--r-card);
  box-shadow: 0 30px 80px -30px var(--sky-glow);
}
#top .diagnostic__rec-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 14px;
}
#top .diagnostic__rec-text {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(18px, 1.4vw, 21px); line-height: 1.45;
  color: var(--text); margin-bottom: 28px;
  text-wrap: pretty;
}
#top .diagnostic__rec-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* ============================================================
   §02 WAVES SYSTEM — pillars + drawers
   ============================================================ */
#top .waves-system { background: var(--bg-card); }
#top .waves-system__head { margin-bottom: 56px; max-width: 800px; }
#top .waves-system__head h2 { margin-top: 18px; margin-bottom: 18px; }
#top .waves-pillars__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 24px;
}
#top .waves-pillar__card {
  --pillar-color: var(--sky);
  background: var(--bg);
  border: none;
  text-align: left;
  padding: 36px 24px 32px;
  position: relative;
  cursor: pointer;
  font: inherit; color: inherit;
  transition: background var(--t-medium) var(--ease);
}
#top .waves-pillar__card:hover,
#top .waves-pillar__card[aria-expanded="true"] {
  background: var(--bg-card);
}
#top .waves-pillar__card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--pillar-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-medium) var(--ease);
}
#top .waves-pillar__card:hover::before,
#top .waves-pillar__card[aria-expanded="true"]::before { transform: scaleX(1); }
#top .waves-pillar__letter {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(72px, 7vw, 104px); line-height: 0.9;
  color: var(--pillar-color);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
#top .waves-pillar__name {
  font-family: var(--display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.01em;
  margin-bottom: 4px; color: var(--text);
}
#top .waves-pillar__role {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 14px;
}
#top .waves-pillar__desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 14px;
}
#top .waves-pillar__tool {
  font-family: var(--display); font-style: italic;
  font-size: 12px; color: var(--sky);
  letter-spacing: 0.02em;
}

/* Drawers */
#top .waves-pillar__drawer {
  --pillar-color: var(--sky);
  margin-top: 16px;
  background:
    linear-gradient(180deg, rgba(16,221,224,0.04), transparent 60%),
    var(--bg);
  border: 1px solid var(--pillar-color);
  border-radius: var(--r-card);
  box-shadow: 0 30px 60px -30px var(--sky-glow);
}
#top .waves-pillar__drawer-inner {
  padding: clamp(28px, 3vw, 48px);
  position: relative;
}
#top .waves-pillar__drawer-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer; font-size: 14px;
  transition: all var(--t-fast) var(--ease);
}
#top .waves-pillar__drawer-close:hover {
  color: var(--text); border-color: var(--sky);
}
#top .waves-pillar__drawer-letter {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(48px, 5vw, 72px); line-height: 0.9;
  color: var(--pillar-color);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
#top .waves-pillar__drawer-name {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--text);
}
#top .waves-pillar__drawer-role {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted);
  margin-left: 12px; vertical-align: middle;
}
#top .waves-pillar__drawer-phases {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 28px;
}
#top .waves-pillar__phase h4 {
  font-family: var(--display); font-weight: 500;
  font-size: 16px; letter-spacing: -0.005em;
  color: var(--sky); margin-bottom: 12px;
}
#top .waves-pillar__phase ul {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
#top .waves-pillar__phase li {
  position: relative; padding-left: 16px;
  font-size: 14px; line-height: 1.5; color: var(--text-muted);
}
#top .waves-pillar__phase li::before {
  content: ''; position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--pillar-color);
}
#top .waves-pillar__badge {
  display: inline-block;
  font-family: var(--body); font-weight: 700; font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 2px 6px; border-radius: 3px;
  background: var(--sky-soft); color: var(--sky);
  margin: 0 4px;
}
#top .waves-pillar__drawer-flow {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px; color: var(--text-muted); line-height: 1.55;
}
#top .waves-pillar__drawer-flow strong { color: var(--text); font-weight: 600; }

/* ============================================================
   §03 JOURNEY — tracks + coaching layer
   ============================================================ */
#top .journey { background: var(--bg); }
#top .journey__head { margin-bottom: 48px; max-width: 800px; }
#top .journey__head h2 { margin-top: 18px; margin-bottom: 18px; }
#top .journey__anchor {
  text-align: center;
  margin-bottom: 36px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--sky);
  border-radius: var(--r-card);
  box-shadow: 0 0 0 1px var(--sky), 0 30px 80px -30px var(--sky-glow);
}
#top .journey__anchor-label {
  display: block;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--text);
  margin-bottom: 6px;
}
#top .journey__fork-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sky);
}
#top .journey__tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
#top .journey__track {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px 24px;
}
#top .journey__track--dfy {
  background: linear-gradient(180deg, rgba(16,221,224,0.04), transparent 70%), var(--bg-card);
  border-color: var(--border-strong);
}
#top .journey__track-header {
  padding-bottom: 18px; margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
#top .journey__track-name {
  display: block;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 4px;
  color: var(--text);
}
#top .journey__track--dfy .journey__track-name { color: var(--sky); }
#top .journey__track-sub {
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
}
#top .journey__tiers {
  display: flex; flex-direction: column; gap: 14px;
}
#top .journey__tier-card {
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--t-fast);
}
#top .journey__tier-card:hover { border-color: var(--border-strong); }
#top .journey__tier-meta { margin-bottom: 16px; }
#top .journey__tier-label {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 6px;
}
#top .journey__tier-name {
  font-family: var(--display); font-weight: 600;
  font-size: 18px; line-height: 1.2;
  letter-spacing: -0.005em; color: var(--text);
  margin-bottom: 8px;
}
#top .journey__tier-price {
  display: inline-block;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.01em; color: var(--text);
}
#top .journey__tier-note {
  display: block;
  font-size: 11px; color: var(--text-dim);
  margin-top: 4px;
}
#top .journey__tier-tools {
  list-style: none;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 16px;
}
#top .journey__tier-tools li {
  position: relative; padding-left: 14px;
}
#top .journey__tier-tools li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sky);
}
#top .journey__tier-desc {
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
  margin-bottom: 16px;
}
#top .journey__tier-card .btn {
  width: 100%; justify-content: center;
}

/* Coaching layer */
#top .journey__coaching {
  margin-top: 36px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-card);
}
#top .journey__coaching-toggle {
  background: none; border: none; cursor: pointer;
  font: inherit; font-family: var(--display);
  font-weight: 500; font-size: clamp(18px, 1.5vw, 22px);
  color: var(--sky); padding: 0;
  margin-bottom: 8px;
}
#top .journey__coaching-toggle:hover { color: var(--sky-bright); }
#top .journey__coaching-sub {
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em;
  margin-bottom: 0;
}
#top .journey__coaching-panel { margin-top: 24px; }
#top .journey__coaching-header { margin-bottom: 24px; }
#top .journey__coaching-parallel {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 8px;
}
#top .journey__coaching-desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.55;
  max-width: 75ch;
}
#top .journey__coaching-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 18px;
}
#top .journey__coaching-card {
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
}
#top .journey__coaching-card--featured {
  background: linear-gradient(180deg, rgba(16,221,224,0.05), transparent 60%), var(--bg);
  border-color: var(--sky);
  box-shadow: 0 0 0 1px var(--sky), 0 20px 50px -25px var(--sky-glow);
}
#top .journey__coaching-badge {
  position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--sky); color: #000;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 10px; border-radius: var(--r-pill);
  white-space: nowrap;
}
#top .journey__coaching-name {
  font-family: var(--display); font-weight: 600;
  font-size: 18px; letter-spacing: -0.005em;
  margin: 12px 0 4px; color: var(--text);
}
#top .journey__coaching-price {
  display: inline-block;
  font-family: var(--display); font-weight: 500;
  font-size: 22px; color: var(--sky);
  margin-bottom: 12px;
}
#top .journey__coaching-body {
  font-size: 13px; line-height: 1.55; color: var(--text-muted);
  margin-bottom: 16px;
}
#top .journey__coaching-seo {
  padding-top: 14px; border-top: 1px solid var(--border);
}
#top .journey__coaching-seo-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text); margin-bottom: 10px;
}
#top .journey__coaching-seo ul {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  font-size: 12px; line-height: 1.5; color: var(--text-muted);
}
#top .journey__coaching-seo li {
  position: relative; padding-left: 14px;
}
#top .journey__coaching-seo li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--sky);
}
#top .journey__coaching-footnote {
  font-size: 12px; color: var(--text-dim); line-height: 1.55;
  text-wrap: pretty;
}

/* Final CTA bar */
#top .journey__final-cta {
  margin-top: 56px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  text-align: center;
}
#top .journey__final-cta h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(24px, 2.2vw, 32px); line-height: 1.15;
  margin: 16px 0 14px; color: var(--text);
}
#top .journey__final-body {
  font-size: 15px; color: var(--text-muted); line-height: 1.55;
  max-width: 60ch; margin: 0 auto 24px;
}
#top .journey__final-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 22px;
}
#top .journey__meta {
  font-size: 12px; color: var(--text-dim); line-height: 1.55;
  max-width: 75ch; margin: 0 auto;
}
#top .journey__meta strong { color: var(--text-muted); font-weight: 600; }
#top .journey__sprint-link {
  margin-top: 28px;
  text-align: center;
  font-size: 14px; color: var(--text-muted);
}
#top .journey__sprint-link a { color: var(--sky); }
#top .journey__sprint-link a:hover { text-decoration: underline; }

/* ============================================================
   §04 FINAL CTA (page-level)
   ============================================================ */
#top .wgos-final-cta {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#top .wgos-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 .wgos-final-cta .container { position: relative; z-index: 1; }
#top .wgos-final-cta__inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
#top .wgos-final-cta h2 { margin: 16px 0 28px; }
#top .wgos-final-cta .lede { margin: 0 auto 36px; }
#top .wgos-final-cta__buttons {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  #top .diagnostic__checkboxes { grid-template-columns: repeat(2, 1fr); }
  #top .waves-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  #top .journey__tracks { grid-template-columns: 1fr; }
  #top .journey__coaching-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  #top .diagnostic__checkboxes { grid-template-columns: 1fr; }
  #top .waves-pillars__grid { grid-template-columns: 1fr; }
  #top .wgos-hero { min-height: 60vh; padding: 80px 0 56px; }
  #top .waves-pillar__drawer-phases { grid-template-columns: 1fr; }
}

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