*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --green: #1DB954;
  --purple: #8B5CF6;
  --text: rgba(255,255,255,0.70);
  --heading: #f4f1ff;
  --muted: rgba(255,255,255,0.35);
  --card-bg: rgba(255,255,255,0.038);
  --card-border: rgba(255,255,255,0.075);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.gt {
  background: linear-gradient(135deg, var(--green), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-back {
  display: flex; align-items: center; gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }
.nav-back svg { width: 14px; height: 14px; }
.nav-brand {
  display: flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.nav-brand img { width: 24px; height: 24px; }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--green), var(--purple));
  color: #fff; border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── SECTION NAV PILLS ── */
.section-nav {
  position: sticky; top: 53px; z-index: 190;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 12px 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.section-nav::-webkit-scrollbar { display: none; }
.section-nav-inner {
  display: flex; gap: 6px; justify-content: center;
  flex-wrap: wrap;
}
.sec-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px; font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.sec-pill:hover { color: var(--text); border-color: rgba(255,255,255,0.18); }
.sec-pill.active {
  background: linear-gradient(135deg, rgba(29,185,84,0.15), rgba(139,92,246,0.15));
  border-color: rgba(139,92,246,0.3);
  color: var(--heading);
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 88px 28px 48px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse 50% 55% at 50% 0%, rgba(29,185,84,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(29,185,84,0.08);
  border: 1px solid rgba(29,185,84,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: dot-pulse 2s ease infinite;
}
@keyframes dot-pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-archetype {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #e0d8ff 40%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 17px; color: var(--muted);
  margin-bottom: 36px;
}
.hero-stats {
  display: inline-flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.stat-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 7px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px; font-weight: 500;
  color: var(--muted);
}
.stat-chip svg { width: 13px; height: 13px; opacity: 0.5; }

/* ── LAYOUT ── */
.report { max-width: 800px; margin: 0 auto; padding: 0 24px 80px; }

/* ── SECTION CARDS ── */
.sec {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s;
}
.sec.visible { opacity: 1; transform: translateY(0); }
.sec:hover { border-color: rgba(139,92,246,0.18); }
.sec::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--purple));
  opacity: 0.65;
}

/* Section number */
.sec-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: block;
}

/* Section icon row */
.sec-header {
  display: flex; align-items: flex-start;
  gap: 18px; margin-bottom: 28px;
}
.sec-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.sec-icon svg { width: 44px; height: 44px; }
.sec-titles {}
.sec-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 6px;
}
.sec-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.sec-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem; font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.58);
  margin-bottom: 24px;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sec-body { font-size: 15.5px; line-height: 1.9; color: var(--text); }
.sec-body p { margin-bottom: 22px; }
.sec-body p + p { margin-top: 0; }
.sec-body strong { color: #1DB954; font-weight: 700; background: none; -webkit-text-fill-color: #1DB954; }
.sec-body em { color: rgba(167,139,250,0.9); font-style: italic; }

/* ── Featured sentence — Playfair Display with animated glow ── */
.feat-quote {
  position: relative;
  isolation: isolate;
  margin: 52px auto;
  max-width: 560px;
  padding: 40px 32px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.38rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  text-align: center;
  letter-spacing: -0.01em;
  border: none;
  background: none;
}

/* Breathing radial glow behind the text */
.feat-quote::before {
  content: '';
  position: absolute;
  inset: -20px -40px;
  background: radial-gradient(ellipse 80% 80% at 50% 50%,
    rgba(29,185,84,0.10) 0%,
    rgba(139,92,246,0.08) 42%,
    transparent 68%);
  border-radius: 40px;
  animation: feat-breathe 5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

/* Large faint quotation mark watermark */
.feat-quote::after {
  content: '\201C';
  position: absolute;
  top: -16px; left: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 9rem;
  line-height: 1;
  color: rgba(29,185,84,0.09);
  pointer-events: none;
  z-index: -1;
  user-select: none;
}

@keyframes feat-breathe {
  0%, 100% { opacity: 0.65; transform: scale(0.96); }
  50%       { opacity: 1;    transform: scale(1.04); }
}

.feat-quote strong {
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  background: none;
  -webkit-text-fill-color: rgba(255,255,255,0.95);
}

/* ── Rhythm divider — three dots ── */
.para-rule {
  margin: 36px 0;
  text-align: center;
  height: auto; width: auto; background: none; border-radius: 0; opacity: 1;
}
.para-rule::after {
  content: '· · ·';
  font-size: 14px;
  letter-spacing: 10px;
  color: rgba(139,92,246,0.38);
}

/* ── Short bold insight line ── */
.body-insight {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  margin: 28px 0 10px !important;
  background: linear-gradient(135deg, #fff 0%, #c0f0d0 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Lede — editorial first paragraph */
.lede {
  font-size: 17.5px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.88 !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
}

/* Gradient inline highlight */
.hl {
  background: linear-gradient(135deg, var(--green) 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Pull-quote callout block */
.callout {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--green);
  background: rgba(29,185,84,0.04);
  border-radius: 0 12px 12px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
.callout strong { color: rgba(255,255,255,0.9) !important; font-style: normal; }

/* Big stat row */
.stat-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin: 4px 0 28px;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--green), #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}

/* Song title poem block */
.song-poem {
  margin: 22px 0;
  padding: 20px 24px;
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.12);
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  letter-spacing: 0.01em;
}
.song-poem span {
  color: rgba(29,185,84,0.85);
  font-style: italic;
}

/* decorative graphic area */
.viz { margin: 28px 0; }

/* ── PILL TAG ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(29,185,84,0.08);
  border: 1px solid rgba(29,185,84,0.18);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--green);
  margin: 4px 3px;
}

/* ── RECOMMENDATION BLOCKS ── */
.rec-grid { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.rec-block {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 20px;
}
.rec-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(29,185,84,0.15), rgba(139,92,246,0.15));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
}
.rec-icon svg { width: 18px; height: 18px; }
.rec-artist {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--heading); margin-bottom: 4px;
}
.rec-artist span { font-weight: 400; color: var(--muted); margin-left: 6px; }
.rec-body { font-size: 13.5px; color: var(--text); line-height: 1.6; }

/* ── MOVEMENT TIMELINE ── */
.movements { display: flex; flex-direction: column; gap: 0; margin-top: 24px; position: relative; }
.movements::before {
  content: '';
  position: absolute; left: 17px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--purple));
  opacity: 0.3;
}
.movement {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 16px 0;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.movement.visible { opacity: 1; transform: translateX(0); }
.movement-dot {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29,185,84,0.2), rgba(139,92,246,0.2));
  border: 2px solid rgba(139,92,246,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.5);
  z-index: 1;
}
.movement-content {}
.movement-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 4px;
}
.movement-text { font-size: 14.5px; color: var(--text); line-height: 1.65; }

/* ── QUOTE SECTION ── */
.sec-quote {
  background: linear-gradient(160deg, rgba(29,185,84,0.06) 0%, rgba(139,92,246,0.1) 100%);
  border-color: rgba(139,92,246,0.25);
  text-align: center;
  padding: 64px 56px;
}
.quote-mark {
  font-family: 'DM Sans', sans-serif;
  font-size: 96px; line-height: 0.7;
  background: linear-gradient(135deg, var(--green), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; margin-bottom: 16px;
  font-weight: 800;
}
.quote-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  color: #ede8ff;
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 28px;
}
.quote-attr {
  font-size: 13px; color: var(--muted);
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.quote-attr span { display: block; font-weight: 400; letter-spacing: 0; margin-top: 4px; font-style: italic; }

/* ── BOTTOM CTA ── */
.bottom-cta {
  text-align: center;
  padding: 80px 28px;
  position: relative; overflow: hidden;
}
.bottom-cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(29,185,84,0.09), transparent 65%);
  pointer-events: none;
}
.bottom-cta-inner { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
.bottom-cta h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--heading); margin-bottom: 14px;
}
.bottom-cta p { font-size: 16px; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--green), var(--purple));
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 600;
  border-radius: 100px; text-decoration: none;
  animation: btn-breath 3s ease infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta:hover { transform: scale(1.04) translateY(-1px); animation: none; box-shadow: 0 8px 40px rgba(29,185,84,0.35); }
@keyframes btn-breath {
  0%,100%{ box-shadow:0 0 20px rgba(29,185,84,0.22),0 0 40px rgba(139,92,246,0.1); }
  50%{ box-shadow:0 0 32px rgba(29,185,84,0.4),0 0 60px rgba(139,92,246,0.18); }
}
.btn-fine { margin-top: 14px; font-size: 12.5px; color: var(--muted); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.25);
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.18); }

/* ══════════════════════════════════════
   ANIMATED VECTORS
══════════════════════════════════════ */

/* --- Constellation (Section 01) --- */
.viz-constellation { width: 100%; height: 120px; }
.constellation-star { animation: star-pulse 2.5s ease-in-out infinite; }
.constellation-star:nth-child(2) { animation-delay: 0.4s; }
.constellation-star:nth-child(3) { animation-delay: 0.8s; }
.constellation-star:nth-child(4) { animation-delay: 1.2s; }
.constellation-star:nth-child(5) { animation-delay: 1.6s; }
.constellation-star:nth-child(6) { animation-delay: 2.0s; }
@keyframes star-pulse {
  0%,100%{ r:2.5; opacity:0.6; }
  50%{ r:4; opacity:1; }
}
.constellation-line {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw-line 1.4s ease forwards;
}
.sec.visible .constellation-line { }
.constellation-line:nth-child(7)  { animation-delay: 0.2s; }
.constellation-line:nth-child(8)  { animation-delay: 0.4s; }
.constellation-line:nth-child(9)  { animation-delay: 0.6s; }
.constellation-line:nth-child(10) { animation-delay: 0.8s; }
.constellation-line:nth-child(11) { animation-delay: 1.0s; }
.constellation-line:nth-child(12) { animation-delay: 1.2s; }
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

/* --- Waveform (Section 02) --- */
.viz-wave { width: 100%; height: 80px; }
.wave-path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-wave 2s ease forwards;
}
.sec.visible .wave-path {}
@keyframes draw-wave { to { stroke-dashoffset: 0; } }

/* EQ bars */
.eq-bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; margin-top: 16px; }
.eq-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--green), var(--purple));
  opacity: 0.7;
  animation: eq-dance 1.2s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.sec.visible .eq-bar { animation-play-state: running; }
.eq-bar:nth-child(1)  { animation-delay: 0.0s; --h: 30%; }
.eq-bar:nth-child(2)  { animation-delay: 0.1s; --h: 75%; }
.eq-bar:nth-child(3)  { animation-delay: 0.2s; --h: 50%; }
.eq-bar:nth-child(4)  { animation-delay: 0.3s; --h: 90%; }
.eq-bar:nth-child(5)  { animation-delay: 0.4s; --h: 60%; }
.eq-bar:nth-child(6)  { animation-delay: 0.5s; --h: 40%; }
.eq-bar:nth-child(7)  { animation-delay: 0.6s; --h: 85%; }
.eq-bar:nth-child(8)  { animation-delay: 0.7s; --h: 55%; }
.eq-bar:nth-child(9)  { animation-delay: 0.8s; --h: 70%; }
.eq-bar:nth-child(10) { animation-delay: 0.9s; --h: 35%; }
.eq-bar:nth-child(11) { animation-delay: 1.0s; --h: 65%; }
.eq-bar:nth-child(12) { animation-delay: 1.1s; --h: 45%; }
.eq-bar:nth-child(13) { animation-delay: 0.25s; --h: 80%; }
.eq-bar:nth-child(14) { animation-delay: 0.75s; --h: 25%; }
.eq-bar:nth-child(15) { animation-delay: 0.55s; --h: 95%; }
.eq-bar:nth-child(16) { animation-delay: 0.15s; --h: 50%; }
@keyframes eq-dance {
  from { height: calc(var(--h) * 0.3); }
  to   { height: var(--h); }
}

/* --- Orbiting circles (Section 03) --- */
.viz-orbit { width: 100%; height: 100px; position: relative; }
.orbit-svg { width: 100%; height: 100%; }
.orbit-circle-a {
  animation: orbit-a 6s linear infinite;
  transform-origin: 400px 50px;
}
.orbit-circle-b {
  animation: orbit-b 6s linear infinite;
  transform-origin: 400px 50px;
}
@keyframes orbit-a {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(40px); }
  100% { transform: translateX(0); }
}
@keyframes orbit-b {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-40px); }
  100% { transform: translateX(0); }
}

/* --- Arc flow diagram (Section 04) --- */
.viz-weeks { width: 100%; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.viz-weeks::-webkit-scrollbar { display: none; }
.weeks-inner { display: flex; gap: 8px; min-width: 560px; }
.week-col { flex: 1; }
.week-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; text-align: center;
}
.week-bar-wrap { height: 80px; display: flex; align-items: flex-end; gap: 3px; }
.week-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  opacity: 0; transform: scaleY(0); transform-origin: bottom;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sec.visible .week-bar { opacity: 0.75; transform: scaleY(1); }
.week-bar.b-meditation { background: #60a5fa; }
.week-bar.b-folk       { background: var(--green); }
.week-bar.b-latin      { background: #f472b6; }
.week-bar.b-ambient    { background: var(--purple); }
.week-bar.b-pop        { background: #fbbf24; }
.week-artist {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px; font-weight: 600; color: var(--muted);
  text-align: center; margin-top: 6px;
  line-height: 1.3;
}
.legend { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 14px; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.legend-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }

/* --- Concentric rings (Section 05) --- */
.viz-rings { width: 100%; height: 120px; display: flex; align-items: center; justify-content: center; }
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  opacity: 0;
  animation: ring-expand 3s ease-out infinite;
  animation-play-state: paused;
}
.sec.visible .ring { animation-play-state: running; }
.ring:nth-child(1) { width: 40px; height: 40px; border-color: var(--green); animation-delay: 0s; }
.ring:nth-child(2) { width: 70px; height: 70px; border-color: rgba(29,185,84,0.6); animation-delay: 0.5s; }
.ring:nth-child(3) { width: 100px; height: 100px; border-color: rgba(139,92,246,0.5); animation-delay: 1.0s; }
.ring:nth-child(4) { width: 130px; height: 130px; border-color: rgba(139,92,246,0.3); animation-delay: 1.5s; }
.ring:nth-child(5) { width: 160px; height: 160px; border-color: rgba(139,92,246,0.15); animation-delay: 2.0s; }
@keyframes ring-expand {
  0%   { opacity: 0.8; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(1.4); }
}
.rings-wrap { position: relative; width: 160px; height: 160px; display: flex; align-items: center; justify-content: center; }
.rings-center {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--purple));
  box-shadow: 0 0 16px rgba(29,185,84,0.6);
  z-index: 1;
  animation: center-pulse 2s ease infinite;
}
@keyframes center-pulse {
  0%,100%{ transform:scale(1); box-shadow:0 0 16px rgba(29,185,84,0.6); }
  50%{ transform:scale(1.3); box-shadow:0 0 28px rgba(29,185,84,0.9); }
}

/* desire keywords */
.desire-words {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.desire-word {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sec.visible .desire-word { opacity: 1; transform: translateY(0); }
.desire-word:nth-child(1){ transition-delay:0.1s; border-color:rgba(29,185,84,0.3); color:rgba(29,185,84,0.8); }
.desire-word:nth-child(2){ transition-delay:0.2s; }
.desire-word:nth-child(3){ transition-delay:0.3s; border-color:rgba(139,92,246,0.3); color:rgba(139,92,246,0.9); }
.desire-word:nth-child(4){ transition-delay:0.4s; }
.desire-word:nth-child(5){ transition-delay:0.5s; border-color:rgba(29,185,84,0.3); color:rgba(29,185,84,0.8); }
.desire-word:nth-child(6){ transition-delay:0.6s; }
.desire-word:nth-child(7){ transition-delay:0.7s; border-color:rgba(139,92,246,0.3); color:rgba(139,92,246,0.9); }

/* --- Radar chart (Section 07) --- */
.viz-radar { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; }
.radar-polygon {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw-radar 1.8s ease forwards;
  animation-play-state: paused;
}
.sec.visible .radar-polygon { animation-play-state: running; }
@keyframes draw-radar { to { stroke-dashoffset: 0; } }

/* --- Interlocking rings (Section 08) --- */
.viz-rings2 { width: 100%; height: 90px; }
.ring2-a {
  animation: slide-left 3s ease-in-out infinite alternate;
}
.ring2-b {
  animation: slide-right 3s ease-in-out infinite alternate;
}
@keyframes slide-left  { from{ transform:translateX(20px); } to{ transform:translateX(-8px); } }
@keyframes slide-right { from{ transform:translateX(-20px); } to{ transform:translateX(8px); } }

/* --- Quote shimmer (Section 09) --- */
.quote-shimmer {
  background: linear-gradient(90deg, var(--green) 0%, #fff 40%, var(--purple) 60%, var(--green) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { 0%{ background-position:200%; } 100%{ background-position:-200%; } }

/* floating notes */
.note {
  position: absolute;
  font-size: 20px;
  opacity: 0;
  animation: float-note 4s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
@keyframes float-note {
  0%   { opacity: 0; transform: translateY(0) scale(0.8); }
  20%  { opacity: 0.3; }
  80%  { opacity: 0.15; }
  100% { opacity: 0; transform: translateY(-60px) scale(1.1); }
}
.note:nth-child(1){ left:8%;  top:20%; animation-delay:0s;   }
.note:nth-child(2){ left:88%; top:30%; animation-delay:1.3s; }
.note:nth-child(3){ left:20%; top:70%; animation-delay:2.6s; }
.note:nth-child(4){ left:75%; top:65%; animation-delay:0.8s; }

/* ── Mobile ── */
@media(max-width:600px){
  .sec { padding: 28px 20px; }
  .sec-quote { padding: 40px 24px; }
  .nav { padding: 12px 16px; }
  .section-nav { padding: 10px 16px; }
  .weeks-inner { min-width: 420px; }
  .stat-num { font-size: 2rem; }
  .callout { font-size: 0.97rem; padding: 14px 16px; }
  .stat-row { gap: 20px; }
}

/* ── ADDITIONAL NAV VARIANTS (report page) ── */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-btn:hover { opacity: 0.82; transform: translateY(-1px); }
.nav-btn-outline {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.1);
}
.nav-btn-primary {
  background: linear-gradient(135deg, var(--green), var(--purple));
  color: #fff;
}

.sec-body p:first-child { font-size:17.5px; color:rgba(255,255,255,0.82); line-height:1.88; }

/* ── BACK LINK (report page) ── */

/* ── EMPTY STATE (report page) ── */
/* ── Empty state ── */
.empty-state { text-align:center; padding:120px 28px; max-width:500px; margin:0 auto; }
.empty-state h2 { font-family:'DM Sans',sans-serif; font-size:1.8rem; font-weight:800; color:var(--heading); margin-bottom:14px; }
.empty-state p { color:var(--muted); margin-bottom:36px; }

.week-bar.b-reggae   { background: #34d399; }
.week-bar.b-afrobeat { background: #fbbf24; }
.week-bar.b-funk     { background: var(--purple); }
.week-bar.b-mpb      { background: #60a5fa; }

/* ══════════════════════════════════════
   STORY CANVAS
══════════════════════════════════════ */
#story-canvas-host {
  position: fixed;
  left: -9999px; top: 0;
  width: 540px; height: 960px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.sc-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #070710 0%, #0f0a1e 45%, #070f0a 100%);
}
.sc-glow-top {
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 520px;
  background: radial-gradient(ellipse, rgba(29,185,84,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.sc-glow-bot {
  position: absolute; bottom: -100px; right: -50px;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.sc-inner {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column;
  padding: 56px 48px 48px;
}
.sc-brand-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 0;
}
.sc-logo { width: 30px; height: 30px; }
.sc-brand-name {
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  color: rgba(255,255,255,0.45);
}
.sc-section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(29,185,84,0.75);
  margin-top: 60px; margin-bottom: 20px;
}
.sc-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, #1DB954, #8B5CF6);
  margin-bottom: 40px; border-radius: 1px;
}
.sc-quote-block {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
}
.sc-open-quote {
  font-size: 96px; line-height: 0.6; font-weight: 800;
  color: #1DB954; opacity: 0.5;
  display: block; margin-bottom: 28px;
  font-family: 'Playfair Display', Georgia, serif;
}
.sc-quote-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px; font-weight: 400; line-height: 1.45;
  letter-spacing: -0.01em; color: #f4f1ff;
}
.sc-attribution {
  font-size: 13px; color: rgba(255,255,255,0.3);
  font-weight: 500; margin-top: 36px; letter-spacing: 0.3px;
  font-style: italic;
}
.sc-footer-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 40px;
}
.sc-url { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.22); }
.sc-tag-pill {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(139,92,246,0.55);
}

/* ── Per-section share button ── */
.sec-share-btn {
  margin-left: auto; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.3);
  border-radius: 8px; padding: 5px 10px;
  font-size: 13px; cursor: pointer;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.sec-share-btn:hover {
  background: rgba(29,185,84,0.08);
  border-color: rgba(29,185,84,0.2);
  color: rgba(29,185,84,0.75);
}
.sec-share-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ══════════════════════════════════════
   SECTION 01: DNA ARCHETYPE ANIMATION
══════════════════════════════════════ */
.viz-archetype { width: 100%; height: 100px; }
.dna-top {
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  animation: draw-dna 2.2s ease forwards;
  animation-play-state: paused;
}
.dna-bot {
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  animation: draw-dna 2.2s ease 0.35s forwards;
  animation-play-state: paused;
}
.sec.visible .dna-top,
.sec.visible .dna-bot { animation-play-state: running; }
@keyframes draw-dna { to { stroke-dashoffset: 0; } }
.dna-rung {
  opacity: 0;
  animation: dna-fade 0.4s ease forwards;
  animation-play-state: paused;
}
.sec.visible .dna-rung { animation-play-state: running; }
@keyframes dna-fade { to { opacity: 1; } }
.dna-node {
  opacity: 0;
  animation: dna-fade 0.35s ease forwards;
  animation-play-state: paused;
  transform-box: fill-box; transform-origin: center;
}
.sec.visible .dna-node { animation-play-state: running; }

/* ══════════════════════════════════════
   SECTION 02: HEARTBEAT WAVE ANIMATION
══════════════════════════════════════ */
.viz-heartbeat { width: 100%; height: 72px; }
.heartbeat-path {
  stroke-dasharray: 2400; stroke-dashoffset: 2400;
  animation: draw-heartbeat 2.4s ease forwards;
  animation-play-state: paused;
}
.sec.visible .heartbeat-path { animation-play-state: running; }
@keyframes draw-heartbeat { to { stroke-dashoffset: 0; } }

/* ══════════════════════════════════════
   SECTION 06: WAVE MOVEMENTS TIMELINE
══════════════════════════════════════ */
.wave-movements { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.wave-movement {
  display: flex; gap: 20px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.wave-movement.visible { opacity: 1; transform: translateY(0); }
.wave-movement-left {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0; width: 38px; padding-top: 2px;
}
.wave-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(29,185,84,0.12), rgba(139,92,246,0.12));
  border: 1.5px solid rgba(139,92,246,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.45); flex-shrink: 0; z-index: 1;
}
.wave-connector {
  flex: 1; width: 2px; min-height: 16px;
  background: linear-gradient(to bottom, rgba(29,185,84,0.25), rgba(139,92,246,0.25));
  margin: 5px 0;
}
.wave-movement-body { padding: 2px 0 28px; }
.wave-movement-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: linear-gradient(135deg, #1DB954, #8B5CF6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 10px;
}
.wave-movement-text { font-size: 15px; color: var(--text); line-height: 1.75; }
.wave-movement-text p { margin-bottom: 12px; }
.wave-movement-text p:last-child { margin-bottom: 0; }
.wave-movement-text strong { color: rgba(255,255,255,0.9); }

/* ── PRINT COVER (hidden on screen, shown only when printing) ── */
.print-cover { display: none; }

/* ══════════════════════════════════════
   PRINT / PDF
══════════════════════════════════════ */
@media print {
  .print-cover {
    display: block !important;
    text-align: center; padding: 100px 48px; break-after: page;
  }
  .print-cover-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #999; margin-bottom: 32px; }
  .print-cover-title { font-family: 'DM Sans',sans-serif; font-size: 3rem; font-weight: 800; color: #111; margin-bottom: 24px; }
  .print-cover-rule { width: 48px; height: 3px; background: linear-gradient(90deg,#1DB954,#8B5CF6); margin: 0 auto 24px; }
  .print-cover-sub { font-size: 14px; color: #888; margin-bottom: 12px; }
  .print-cover-footer { font-size: 12px; color: #bbb; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  body { background: #fff !important; color: #222 !important; }
  .nav, .section-nav, .bottom-cta, footer, #story-canvas-host,
  .sec-share-btn { display: none !important; }
  .hero {
    background: #fff !important;
    padding: 40px 28px 28px !important;
  }
  .hero-glow { display: none !important; }
  .hero-badge {
    background: rgba(29,185,84,0.06) !important;
    border-color: rgba(29,185,84,0.25) !important;
    color: #555 !important;
  }
  .badge-dot { background: #1DB954 !important; box-shadow: none !important; animation: none !important; }
  .hero-archetype {
    background: linear-gradient(135deg, #1DB954, #8B5CF6) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
  .hero-sub { color: #888 !important; }
  .stat-chip { background: #f4f4f4 !important; border-color: #ddd !important; color: #777 !important; }
  .stat-chip svg { opacity: 0.4 !important; }
  .report { padding-bottom: 20px !important; }
  .sec {
    background: #fff !important;
    border: 1px solid #e0e0e8 !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06) !important;
    opacity: 1 !important; transform: none !important;
    break-inside: avoid; page-break-inside: avoid;
    margin-bottom: 18px !important;
  }
  .sec::before { opacity: 1 !important; }
  .sec-label {
    background: linear-gradient(135deg, #1DB954, #8B5CF6) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
  .sec-title { color: #111 !important; -webkit-text-fill-color: #111 !important; }
  .sec-icon { color: #bbb !important; }
  .sec-body { color: #333 !important; }
  .sec-body p:first-child { color: #111 !important; }
  .sec-body strong { color: #000 !important; background: none !important; -webkit-text-fill-color: #000 !important; }
  .para-rule { display: none !important; }
  .feat-quote { color: #444 !important; }
  .sec-body strong { color: #1a7a3c !important; -webkit-text-fill-color: #1a7a3c !important; }
  .sec-body em { color: #6d4bb5 !important; }
  .sec-body em { color: #1DB954 !important; }
  .sec-quote { background: #f8f6ff !important; border-color: #ddd8f8 !important; }
  .quote-mark {
    background: none !important;
    -webkit-text-fill-color: #1DB954 !important;
  }
  .quote-text { color: #111 !important; }
  .quote-attr { color: #999 !important; }
  .viz { display: none !important; }
  .wave-movements { display: flex !important; }
  .wave-dot { border-color: rgba(139,92,246,0.5) !important; color: #8B5CF6 !important; }
  .wave-movement-title {
    background: linear-gradient(135deg, #1DB954, #8B5CF6) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
  .wave-movement-text { color: #444 !important; }
  .wave-connector { background: linear-gradient(to bottom, #1DB954, #8B5CF6) !important; }
  .wave-movement { opacity: 1 !important; transform: none !important; }
  .movement { opacity: 1 !important; transform: none !important; }
  .movement-label {
    background: linear-gradient(135deg, #1DB954, #8B5CF6) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
  .movement-text { color: #444 !important; }
}
