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

:root {
  --crimson:          #C6093F;
  --crimson-bright:   #E8153F;
  --dark:             #1A050D;
  --dark-ink:         #F9F1F3;
  --dark-ink-muted:   rgba(249, 241, 243, 0.62);
  --hero-rose:        #9A6070;
  --spring:           cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: auto; }

body {
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: var(--dark-ink);
  overflow-x: hidden;
}

/* ─── S0: NAV ────────────────────────────────────────────────────── */
#s0-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(249, 246, 247, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(60, 13, 30, 0.10);
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 0.5s var(--spring), transform 0.5s var(--spring);
}
#s0-nav.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--dark);
  text-decoration: none;
}
.nav-cta {
  background: var(--crimson);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  background: var(--crimson-bright);
  transform: translateY(-2px);
}

/* ─── S1: HERO OUTER (scroll runway) ────────────────────────────── */
#s1-hero {
  position: relative;
  height: 480vh;
  z-index: 1;
}

/* Sticky viewport pin */
#s1-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* Full-bleed video */
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(75%);
  will-change: filter;
}

/* ─── LAYER A: Initial black overlay (fades OUT) ─────────────────── */
#hero-init-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.30;
  pointer-events: none;
  will-change: opacity;
}

/* ─── LAYER B: Initial copy (fades OUT) ──────────────────────────── */
#hero-init-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  padding: 0 clamp(24px, 6vw, 64px);
  pointer-events: none;
  will-change: opacity;
}

#hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(42px, 5.8vw, 72px);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 680px;
}

#hero-subhead {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 21px);
  color: rgba(255, 255, 255, 0.90);
  max-width: 500px;
  line-height: 1.6;
  margin-top: 18px;
}

/* Scroll indicator */
#scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 52px;
}

.scroll-arrow {
  display: block;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1;
  animation: floatArrow 2.6s ease-in-out infinite;
}

.scroll-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes floatArrow {
  0%, 100% { transform: translateY(0);   opacity: 0.70; }
  50%       { transform: translateY(7px); opacity: 0.40; }
}

/* ─── LAYER C: Story overlay (#1A050D, fades IN) ─────────────────── */
#hero-story-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* ─── LAYER D: Story copy (stagger reveals) ──────────────────────── */
#hero-story-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(24px, 8vw, 96px);
  pointer-events: none;
}

.story-line {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(32px, 6.2vw, 78px);
  color: var(--dark-ink);
  line-height: 1.06;
  letter-spacing: -0.035em;
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

#story-line-2 {
  font-style: italic;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 44px);
  color: var(--hero-rose);
  margin-top: 18px;
  margin-bottom: 14px;
}

#story-line-3 em {
  font-style: italic;
  color: var(--crimson-bright);
}

#story-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--dark-ink-muted);
  max-width: 460px;
  line-height: 1.6;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

#story-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
}

.btn-primary {
  display: inline-block;
  background: var(--crimson);
  color: #fff;
  border-radius: 999px;
  padding: 16px 40px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(198, 9, 63, 0.32);
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease;
}
.btn-primary:hover {
  background: var(--crimson-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(198, 9, 63, 0.45);
}
.btn-primary:active {
  transform: translateY(0);
}

.cta-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: rgba(249, 241, 243, 0.40);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ─── S2: STUCK — CARD FAN ──────────────────────────────────────── */
#s2-stuck {
  position: relative;
  height: 300vh;
  background: #FDFBFC;
  z-index: 1;
}
#s2-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #FDFBFC;
}

/* Heading */
#s2-head {
  position: absolute;
  top: 29%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  will-change: opacity, transform;
  z-index: 10;
  opacity: 0;
}
#s2-eyebrow {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--crimson);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
#s2-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(40px, 6.2vw, 76px);
  color: var(--dark);
  letter-spacing: -0.028em;
  line-height: 1.04;
}
#s2-title em { font-style: italic; color: var(--crimson); }

/* Fan anchor — zero-size, cards absolute within it */
#s2-fan-wrap {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 0;
  height: 0;
}

/* Cards */
.s2-card {
  position: absolute;
  top: 0; left: 0;
  width: 200px;
  height: 264px;
  background: linear-gradient(148deg, rgba(198,9,63,.04) 0%, #fff 42%);
  border: 1px solid rgba(198,9,63,.08);
  border-radius: 16px;
  box-shadow:
    0 2px 6px  rgba(26,5,13,.04),
    0 8px 28px rgba(26,5,13,.09),
    0 24px 52px rgba(26,5,13,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
  gap: 16px;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  opacity: 0;
}
.s2-card-num {
  position: absolute;
  top: 15px; right: 17px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: rgba(198,9,63,.32);
  letter-spacing: .04em;
}
.s2-card-icon {
  width: 46px; height: 46px;
  color: var(--crimson);
  flex-shrink: 0;
}
.s2-card-icon svg { width: 100%; height: 100%; }
.s2-card-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  text-align: center;
  line-height: 1.48;
  letter-spacing: -.01em;
}

/* Accent stripe at card bottom */
.s2-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(90deg, transparent, rgba(198,9,63,.18), transparent);
}

/* Resolution */
#s2-resolution {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  z-index: 20;
  padding: 0 clamp(24px, 6vw, 60px);
  width: 100%;
}
#s2-res-main {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(42px, 8vw, 96px);
  color: var(--dark);
  line-height: 1.03;
  letter-spacing: -.04em;
}
#s2-res-main em { color: var(--crimson); font-style: italic; }
#s2-res-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(26,5,13,.50);
  margin: 22px auto 0;
  line-height: 1.6;
  max-width: 500px;
  opacity: 0;
  will-change: opacity;
}
#s2-res-sub em { font-style: italic; color: var(--crimson); font-weight: 500; }

/* S2 mobile */
@media (max-width: 600px) {
  .s2-card { width: 150px; height: 200px; padding: 20px 14px; gap: 10px; }
  .s2-card-text { font-size: 13px; }
  .s2-card-icon { width: 34px; height: 34px; }
}

/* ─── S3: CAREER DNA REVEAL ─────────────────────────────────────── */
#s3-dna {
  position: relative;
  height: 450vh;
  background: #1A050D;
  z-index: 1;
}
#s3-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #1A050D;
}
/* Scene 1 — 10% Headline */
#s3-scene1 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  z-index: 20;
  width: 90%;
}
#s3-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 42px);
  color: rgba(249,241,243,0.88);
  line-height: 1.30;
  letter-spacing: -0.02em;
}
#s3-hl-pre, #s3-hl-post {
  display: block;
  opacity: 0;
}
#s3-pct {
  display: block;
  font-size: clamp(80px, 16vw, 160px);
  font-weight: 900;
  color: #C6093F;
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-shadow: 0 0 80px rgba(198,9,63,0.45), 0 0 160px rgba(198,9,63,0.18);
}
/* Scene 2 — Resume card */
#s3-resume-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: opacity, transform;
  z-index: 12;
}
#s3-resume-card {
  width: 340px;
  padding: 0;
  background: rgba(249,241,243,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(249,241,243,0.14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.40), 0 20px 60px rgba(0,0,0,0.35), 0 0 0 0.5px rgba(249,241,243,0.06);
}
.s3-r-head {
  padding: 20px 22px 18px;
  border-bottom: 1px solid rgba(249,241,243,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}
.s3-r-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198,9,63,0.5), rgba(198,9,63,0.2));
  border: 1px solid rgba(198,9,63,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 15px;
  color: rgba(249,241,243,0.92);
  flex-shrink: 0;
}
.s3-r-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: rgba(249,241,243,0.92);
  letter-spacing: -0.01em;
}
.s3-r-role {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(249,241,243,0.48);
  margin-top: 2px;
}
.s3-r-contact {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: rgba(249,241,243,0.28);
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.s3-r-section {
  padding: 14px 22px;
  border-bottom: 1px solid rgba(249,241,243,0.06);
}
.s3-r-section:last-child { border-bottom: none; }
.s3-r-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: rgba(198,9,63,0.72);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.s3-r-entry { margin-bottom: 8px; }
.s3-r-entry:last-child { margin-bottom: 0; }
.s3-r-entry-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3px;
}
.s3-r-co {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  color: rgba(249,241,243,0.82);
}
.s3-r-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  color: rgba(249,241,243,0.30);
}
.s3-r-jobtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  color: rgba(249,241,243,0.48);
  margin-bottom: 4px;
}
.s3-r-bullet {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: rgba(249,241,243,0.38);
  line-height: 1.55;
  padding-left: 10px;
  position: relative;
}
.s3-r-bullet::before {
  content: '·';
  position: absolute; left: 2px;
  color: rgba(198,9,63,0.55);
}
.s3-r-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.s3-r-tags span {
  font-family: 'Manrope', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  padding: 3px 9px;
  border: 1px solid rgba(249,241,243,0.15);
  border-radius: 999px;
  color: rgba(249,241,243,0.52);
}
/* Scene 3 — Chips */
#s3-chips-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 10;
}
.s3-chip {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity;
  letter-spacing: 0.005em;
}
.s3-chip-resume {
  background: rgba(249,241,243,0.07);
  border: 1px solid rgba(249,241,243,0.19);
  color: rgba(249,241,243,0.76);
}
.s3-chip-insight {
  background: rgba(198,9,63,0.14);
  border: 1px solid rgba(198,9,63,0.33);
  color: rgba(249,241,243,0.90);
}
/* Scene 4 — DNA Canvas */
#s3-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: opacity;
  z-index: 6;
}
/* Scene 5 — Final copy */
#s3-final-copy {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  z-index: 18;
  padding: clamp(36px, 5vw, 60px) clamp(40px, 7vw, 90px);
  width: auto;
  max-width: min(640px, 88vw);
  background: radial-gradient(ellipse 110% 120% at 50% 50%, rgba(26,5,13,0.82) 30%, rgba(26,5,13,0.55) 68%, transparent 100%);
  border-radius: 16px;
}
#s3-final-hl {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 68px);
  color: rgba(249,241,243,0.93);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
#s3-final-hl em {
  font-style: italic;
  color: #C6093F;
  text-shadow: 0 0 40px rgba(198,9,63,0.35);
}
#s3-final-sub {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.4vw, 17px);
  color: rgba(249,241,243,0.44);
  margin: 16px auto 0;
  line-height: 1.6;
  max-width: 460px;
}

/* ─── REDUCED MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .scroll-arrow                      { animation: none !important; }
  #hero-init-overlay                 { opacity: 0 !important; }
  #hero-init-copy                    { opacity: 0 !important; }
  #hero-story-overlay                { opacity: 1 !important; }
  .story-line, #story-sub, #story-cta {
    opacity: 1 !important;
    transform: none !important;
  }
  #hero-video                        { filter: brightness(90%) !important; }
  #s0-nav {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

/* ─── S4: HOW IT WORKS ── */
#s4-how {
  background: #F4F3F1;
  padding: clamp(72px,9vh,110px) 7% clamp(48px,6vh,80px);
  position: relative; z-index: 20;
}
.s4-wrap { max-width: 1100px; margin: 0 auto; }
.s4-header { text-align: center; margin-bottom: clamp(48px,6vh,72px); }
.s4-header-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: #C6093F; margin-bottom: 14px;
}
.s4-header-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800; font-size: clamp(28px,4vw,52px);
  color: #1A050D; line-height: 1.08; letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.s4-header-h2 em { font-style: italic; color: #C6093F; }
.s4-header-sub {
  font-family: 'Manrope', sans-serif; font-size: clamp(14px,1.3vw,17px);
  color: rgba(26,5,13,0.45); line-height: 1.6;
}
.s4-body {
  display: grid; grid-template-columns: minmax(280px,380px) 1fr;
  gap: clamp(24px,3vw,48px); align-items: stretch;
}
/* ── LEFT: Steps card ── */
.s4-steps-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 1px 4px rgba(26,5,13,0.04), 0 8px 24px rgba(26,5,13,0.06);
  padding: clamp(20px,3vh,32px) clamp(18px,2.5vw,28px);
}
/* New step items inside card */
.s4-new-step {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; cursor: pointer;
  border-bottom: 1px solid rgba(26,5,13,0.06);
  transition: background 0.2s;
}
.s4-new-step:last-child { border-bottom: none; }
.s4-ns-num {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  border: 1.5px solid rgba(26,5,13,0.14); color: rgba(26,5,13,0.30);
  background: transparent; transition: all 0.3s ease;
}
.s4-new-step.s4-ns-active .s4-ns-num {
  background: #C6093F; border-color: #C6093F; color: #fff;
  box-shadow: 0 0 0 4px rgba(198,9,63,0.10);
}
.s4-ns-ico {
  flex-shrink: 0; color: rgba(26,5,13,0.22); transition: color 0.25s; margin-top: 2px;
}
.s4-new-step.s4-ns-active .s4-ns-ico { color: #C6093F; }
.s4-ns-body { flex: 1; min-width: 0; }
.s4-ns-title {
  font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: clamp(13px,1.2vw,15px); color: rgba(26,5,13,0.30);
  display: flex; align-items: center; gap: 6px;
  transition: color 0.25s; line-height: 1.3;
}
.s4-new-step.s4-ns-active .s4-ns-title { color: #1A050D; }
.s4-ns-title .s4-ns-arr { margin-left: auto; color: #C6093F; font-size: 14px; flex-shrink: 0; }
.s4-ns-desc {
  font-family: 'Manrope', sans-serif; font-size: 12.5px;
  color: rgba(26,5,13,0.42); line-height: 1.55; margin-top: 4px;
}
.s4-new-step.s4-ns-active .s4-ns-desc { color: rgba(26,5,13,0.55); }
/* Override #s4-right for new grid */
#s4-right { padding: 0; background: transparent; }
#s4-browser { height: 100%; min-height: 480px; }
/* New CTA */
.s4-new-cta { text-align: center; margin-top: clamp(40px,5vh,64px); }
.s4-new-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; border-radius: 999px;
  background: #C6093F; color: #fff; border: none;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px;
  cursor: pointer; box-shadow: 0 4px 18px rgba(198,9,63,0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.s4-new-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(198,9,63,0.45); }
.s4-new-cta-sub {
  font-family: 'Manrope', sans-serif; font-size: 12.5px;
  color: rgba(26,5,13,0.38); margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
@media(max-width:860px) {
  .s4-body { grid-template-columns: 1fr; }
}
/* ── RIGHT PANEL ── */
#s4-right {
  display: flex; align-items: stretch; justify-content: center;
  padding: 0;
  background: transparent;
}
#s4-browser {
  width: 100%;
  background: #fff; border-radius: 16px;
  box-shadow: 0 1px 3px rgba(26,5,13,0.04), 0 10px 32px rgba(26,5,13,0.10), 0 36px 72px rgba(26,5,13,0.07);
  display: flex; flex-direction: column;
  height: 100%; min-height: 480px; overflow: hidden;
}
#s4-bbar {
  display: flex; align-items: center; gap: 6px; padding: 10px 16px;
  background: #ECEAEE; border-bottom: 1px solid rgba(0,0,0,0.07); flex-shrink: 0;
}
.s4-bdot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.s4-bdot-r { background: #FF5F57; }
.s4-bdot-y { background: #FEBC2E; }
.s4-bdot-g { background: #28C840; }
#s4-burl {
  margin: 0 auto; display: flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,0.05); padding: 3px 12px 3px 8px; border-radius: 5px;
}
#s4-burl-txt { font-family:'JetBrains Mono',monospace; font-size:10px; color:rgba(0,0,0,0.35); }
#s4-bbody { position: relative; flex: 1; overflow: hidden; }
/* Individual screens */
.s4-screen {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; overflow: hidden;
  transform: translateX(22px);
  transition: opacity 0.36s cubic-bezier(.16,1,.3,1), transform 0.36s cubic-bezier(.16,1,.3,1);
}
.s4-screen.s4-sc-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.s4-screen.s4-sc-exit   { opacity: 0; transform: translateX(-22px); }
/* Shared screen header */
.s4-schdr {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 16px 20px 12px; flex-shrink: 0;
  border-bottom: 1px solid rgba(26,5,13,0.07);
}
.s4-sctit { font-family:'Playfair Display',serif; font-weight:700; font-size:clamp(14px,1.6vw,19px); color:#1A050D; margin-bottom:3px; }
.s4-scsub { font-family:'Manrope',sans-serif; font-size:11.5px; color:rgba(26,5,13,0.42); line-height:1.4; }
.s4-scstep { font-family:'Manrope',sans-serif; font-size:11px; font-weight:700; color:#C6093F; white-space:nowrap; flex-shrink:0; }
/* Shared screen nav bar */
.s4-snav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; border-top: 1px solid rgba(26,5,13,0.07);
  flex-shrink: 0; background: #fff;
}
.s4-snbk {
  display: flex; align-items: center; gap: 5px;
  font-family:'Manrope',sans-serif; font-size:12.5px; font-weight:600;
  color:rgba(26,5,13,0.42); background:none; border:none; cursor:pointer; padding:6px 10px; border-radius:6px;
  transition:color .2s,background .2s;
}
.s4-snbk:hover { color:#1A050D; background:rgba(26,5,13,0.04); }
.s4-sndots { display:flex; gap:5px; align-items:center; }
.s4-sndot { width:6px; height:6px; border-radius:50%; background:rgba(26,5,13,0.14); transition:all 0.2s; }
.s4-sndot.s4-sdon { background:#C6093F; width:18px; border-radius:3px; }
.s4-sncont {
  display:flex; align-items:center; gap:5px;
  font-family:'Manrope',sans-serif; font-size:12.5px; font-weight:700;
  color:#fff; background:#C6093F; border:none; cursor:pointer;
  padding:7px 18px; border-radius:7px;
  box-shadow:0 3px 10px rgba(198,9,63,0.30);
  transition:transform .2s,box-shadow .2s;
}
.s4-sncont:hover { transform:translateY(-1px); box-shadow:0 5px 16px rgba(198,9,63,0.42); }
/* Screen scroll area */
.s4-sscroll { flex:1; overflow-y:auto; overflow-x:hidden; }

/* ══ SCREEN 1: UPLOAD ══ */
.s4-up-outer {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:20px; min-height:100%;
}
.s4-up-zone {
  width:100%; position:relative; border:1.5px dashed rgba(198,9,63,0.25); border-radius:14px;
  padding:24px 20px 20px; display:flex; flex-direction:column; align-items:center;
  background:rgba(198,9,63,0.018); overflow:hidden;
}
/* floating file icons */
.s4-file { position:absolute; border-radius:8px; padding:5px 8px; display:flex; align-items:center; gap:3px; font-family:'JetBrains Mono',monospace; font-size:9px; font-weight:700; box-shadow:0 4px 14px rgba(0,0,0,0.12); transform:rotate(-6deg); }
.s4-file-pdf { background:#fff; color:#E53935; top:12px; left:40px; transform:rotate(-12deg); }
.s4-file-docx { background:#fff; color:#1565C0; top:20px; left:140px; transform:rotate(5deg); }
.s4-file-txt { background:#fff; color:#555; top:14px; right:50px; transform:rotate(8deg); }
.s4-up-circ {
  width:58px; height:58px; border-radius:50%; background:#fff; margin:10px 0 14px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 3px 14px rgba(198,9,63,0.18), 0 0 0 6px rgba(198,9,63,0.07);
  color:#C6093F; font-size:22px; flex-shrink:0; position:relative; z-index:1;
}
.s4-up-h { font-family:'Playfair Display',serif; font-weight:700; font-size:clamp(16px,2vw,22px); color:#1A050D; text-align:center; margin-bottom:5px; position:relative; z-index:1; }
.s4-up-h span { color:#C6093F; }
.s4-up-sub { font-family:'Manrope',sans-serif; font-size:12px; color:rgba(26,5,13,0.40); text-align:center; margin-bottom:14px; position:relative; z-index:1; }
.s4-up-divider { display:flex; align-items:center; gap:8px; width:100%; margin:2px 0 12px; position:relative; z-index:1; }
.s4-up-divider::before,.s4-up-divider::after { content:''; flex:1; height:1px; background:rgba(26,5,13,0.10); }
.s4-up-divider span { font-family:'JetBrains Mono',monospace; font-size:8.5px; letter-spacing:.08em; color:rgba(26,5,13,0.30); white-space:nowrap; }
.s4-up-btns { display:flex; gap:10px; margin-bottom:0; position:relative; z-index:1; width:100%; justify-content:center; }
.s4-up-btn {
  display:flex; align-items:center; gap:7px; padding:8px 18px; border-radius:8px;
  border:1px solid rgba(26,5,13,0.14); background:#fff;
  font-family:'Manrope',sans-serif; font-size:12.5px; font-weight:600; color:#1A050D;
  cursor:default; box-shadow:0 1px 4px rgba(26,5,13,0.05);
}
.s4-up-sec {
  display:flex; justify-content:center; gap:clamp(10px,2vw,24px); margin-top:12px;
  padding-top:12px; border-top:1px solid rgba(26,5,13,0.07); width:100%;
}
.s4-up-sec span { display:flex; align-items:center; gap:5px; font-family:'Manrope',sans-serif; font-size:10px; color:rgba(26,5,13,0.42); }

/* ══ SCREEN 2: AMBITIONS ══ */
.s4-amb-body { padding:16px 20px; }
.s4-amb-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; margin-bottom:12px; }
.s4-amb-card {
  border:1px solid rgba(26,5,13,0.10); border-radius:10px; padding:14px 12px 12px;
  display:flex; flex-direction:column; gap:6px; cursor:default;
  transition:border-color 0.2s,box-shadow 0.2s; background:#fff;
}
.s4-amb-card:hover { border-color:rgba(198,9,63,0.30); box-shadow:0 2px 8px rgba(198,9,63,0.08); }
.s4-amb-ico { font-size:20px; color:rgba(26,5,13,0.55); }
.s4-amb-t { font-family:'Manrope',sans-serif; font-weight:700; font-size:11.5px; color:#1A050D; line-height:1.3; }
.s4-amb-d { font-family:'Manrope',sans-serif; font-size:10px; color:rgba(26,5,13,0.42); line-height:1.42; }
.s4-amb-ta {
  width:100%; border:1px solid rgba(26,5,13,0.12); border-radius:8px; padding:10px 12px;
  font-family:'Manrope',sans-serif; font-size:11.5px; color:rgba(26,5,13,0.35);
  resize:none; height:60px; outline:none; background:#fafafa;
  box-sizing:border-box;
}
.s4-amb-taftr { display:flex; justify-content:flex-end; font-family:'JetBrains Mono',monospace; font-size:9px; color:rgba(26,5,13,0.25); margin-top:3px; }

/* ══ SCREEN 3: CAREER DNA ══ */
.s4-dna-body { flex:1; display:grid; grid-template-columns:1fr 160px; gap:0; overflow:hidden; }
.s4-dna-left { position:relative; display:flex; flex-direction:column; }
.s4-dna-diag { position:relative; flex:1; min-height:0; }
.s4-dna-svg { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
.s4-dna-center {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:80px; height:80px; background:#fff; border-radius:50%;
  border:2px solid rgba(26,5,13,0.08);
  box-shadow:0 2px 12px rgba(26,5,13,0.10);
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; z-index:2;
}
.s4-dna-star { font-size:16px; color:#C6093F; line-height:1; }
.s4-dna-cl { font-family:'Manrope',sans-serif; font-size:7.5px; color:rgba(26,5,13,0.45); line-height:1.2; margin-top:1px; }
.s4-dna-cl2 { font-family:'Manrope',sans-serif; font-size:7.5px; font-weight:700; color:#1A050D; line-height:1.2; }
/* DNA node chips */
.s4-dna-node {
  position:absolute; background:#fff; border:1px solid rgba(26,5,13,0.09);
  border-radius:8px; padding:5px 8px; display:flex; align-items:center; gap:5px;
  box-shadow:0 2px 8px rgba(26,5,13,0.07); z-index:2; white-space:nowrap;
}
.s4-dna-node-ico { font-size:12px; color:rgba(26,5,13,0.55); flex-shrink:0; }
.s4-dna-node-info .s4-dna-nv { font-family:'Manrope',sans-serif; font-weight:700; font-size:10px; color:#1A050D; line-height:1.2; }
.s4-dna-node-info .s4-dna-ns { font-family:'Manrope',sans-serif; font-size:8.5px; color:rgba(26,5,13,0.42); }
/* DNA progress area */
.s4-dna-prog { padding:10px 14px; border-top:1px solid rgba(26,5,13,0.06); flex-shrink:0; }
.s4-dna-prog-row { display:flex; align-items:center; gap:7px; margin-bottom:5px; }
.s4-dna-prog-ico { font-size:10px; color:#C6093F; }
.s4-dna-prog-txt { font-family:'Manrope',sans-serif; font-size:10.5px; color:rgba(26,5,13,0.50); flex:1; }
.s4-dna-prog-pct { font-family:'JetBrains Mono',monospace; font-size:11px; font-weight:700; color:#1A050D; }
.s4-dna-ptrack { height:5px; background:rgba(26,5,13,0.08); border-radius:3px; overflow:hidden; }
.s4-dna-pfill { height:100%; background:linear-gradient(90deg,#C6093F,rgba(198,9,63,0.55)); border-radius:3px; width:0; transition:width 1.1s cubic-bezier(.16,1,.3,1) 0.3s; }
.s4-screen.s4-sc-active .s4-dna-pfill { width:68%; }
/* DNA right sidebar */
.s4-dna-right { border-left:1px solid rgba(26,5,13,0.07); padding:14px 12px; overflow-y:auto; }
.s4-dna-what { font-family:'Manrope',sans-serif; font-size:10.5px; font-weight:700; color:#1A050D; margin-bottom:10px; }
.s4-dw-item { display:flex; align-items:flex-start; gap:7px; margin-bottom:10px; }
.s4-dw-ico { width:22px; height:22px; border-radius:6px; background:rgba(26,5,13,0.05); display:flex; align-items:center; justify-content:center; font-size:11px; flex-shrink:0; margin-top:1px; }
.s4-dw-body .s4-dw-t { font-family:'Manrope',sans-serif; font-size:10px; font-weight:700; color:#1A050D; margin-bottom:1px; }
.s4-dw-body .s4-dw-d { font-family:'Manrope',sans-serif; font-size:9px; color:rgba(26,5,13,0.42); line-height:1.38; }
.s4-dw-bar { height:2.5px; background:rgba(26,5,13,0.08); border-radius:2px; overflow:hidden; margin-top:4px; }
.s4-dw-fill { height:100%; background:#C6093F; border-radius:2px; width:0; transition:width 0.9s cubic-bezier(.16,1,.3,1) 0.4s; }
.s4-screen.s4-sc-active .s4-dw-fill { width:var(--dw); }
/* DNA badges */
.s4-dna-badges { display:flex; gap:14px; padding:9px 14px 0; border-top:1px solid rgba(26,5,13,0.06); }
.s4-dna-badge { display:flex; align-items:center; gap:4px; font-family:'Manrope',sans-serif; font-size:9px; color:rgba(26,5,13,0.38); }

/* ══ SCREEN 4: PLAN ══ */
.s4-plan-body { padding:14px 20px; overflow-y:auto; flex:1; }
/* Goal card */
.s4-plan-goalcard {
  display:flex; align-items:stretch; gap:12px; background:#fff;
  border:1px solid rgba(26,5,13,0.09); border-radius:10px; padding:12px 14px;
  margin-bottom:14px; box-shadow:0 1px 6px rgba(26,5,13,0.04);
}
.s4-plan-goal-ico { width:40px; height:40px; border-radius:10px; background:rgba(198,9,63,0.10); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.s4-plan-goal-txt { flex:1; }
.s4-plan-goal-lbl { font-family:'JetBrains Mono',monospace; font-size:8px; letter-spacing:.08em; color:rgba(26,5,13,0.36); margin-bottom:2px; }
.s4-plan-goal-desc { font-family:'Manrope',sans-serif; font-size:11px; color:rgba(26,5,13,0.55); }
.s4-plan-metab { display:flex; flex-direction:column; align-items:flex-start; gap:0; padding:0 12px; border-left:1px solid rgba(26,5,13,0.07); }
.s4-plan-metab-l { font-family:'JetBrains Mono',monospace; font-size:7.5px; letter-spacing:.06em; color:rgba(26,5,13,0.36); }
.s4-plan-metab-v { font-family:'Manrope',sans-serif; font-size:11px; font-weight:700; color:#C6093F; }
.s4-plan-metab-s { font-family:'Manrope',sans-serif; font-size:9px; color:rgba(26,5,13,0.36); }
.s4-plan-score-wrap { display:flex; flex-direction:column; align-items:center; gap:0; flex-shrink:0; }
.s4-plan-score-l { font-family:'JetBrains Mono',monospace; font-size:7.5px; letter-spacing:.06em; color:rgba(26,5,13,0.36); margin-bottom:3px; }
.s4-plan-score-ring { position:relative; width:52px; height:52px; }
.s4-plan-score-ring svg { transform:rotate(-90deg); }
.s4-plan-score-txt { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.s4-plan-score-pct { font-family:'Playfair Display',serif; font-weight:800; font-size:14px; color:#C6093F; line-height:1; }
.s4-plan-score-gr { font-family:'Manrope',sans-serif; font-size:7.5px; color:#C6093F; }
/* Roadmap phases */
.s4-plan-rmap-hdr { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:10px; }
.s4-plan-rmap-t { font-family:'Manrope',sans-serif; font-weight:700; font-size:12px; color:#1A050D; }
.s4-plan-rmap-m { font-family:'JetBrains Mono',monospace; font-size:8.5px; color:rgba(26,5,13,0.35); }
.s4-plan-phases { display:flex; align-items:flex-start; gap:0; margin-bottom:14px; }
.s4-plan-phase { display:flex; flex-direction:column; align-items:center; text-align:center; flex:1; position:relative; }
.s4-plan-phase:not(:last-child)::after {
  content:''; position:absolute; top:19px; left:calc(50% + 20px); right:0;
  height:1.5px; background:rgba(26,5,13,0.14); border-top:1.5px dashed rgba(26,5,13,0.18);
}
.s4-plan-phico { width:38px; height:38px; border-radius:50%; background:rgba(26,5,13,0.05); display:flex; align-items:center; justify-content:center; font-size:16px; margin-bottom:5px; }
.s4-plan-phnum { font-family:'JetBrains Mono',monospace; font-size:7.5px; letter-spacing:.06em; color:rgba(26,5,13,0.35); margin-bottom:2px; }
.s4-plan-phtit { font-family:'Manrope',sans-serif; font-weight:700; font-size:10px; color:#1A050D; margin-bottom:2px; line-height:1.2; }
.s4-plan-phmo { font-family:'Manrope',sans-serif; font-size:9px; color:#C6093F; }
/* Focus areas + What's Next */
.s4-plan-bot { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.s4-plan-focus-t,.s4-plan-next-t { font-family:'Manrope',sans-serif; font-weight:700; font-size:11px; color:#1A050D; margin-bottom:8px; }
.s4-plan-frow { margin-bottom:7px; }
.s4-plan-flbl { display:flex; justify-content:space-between; font-family:'Manrope',sans-serif; font-size:10.5px; color:rgba(26,5,13,0.55); margin-bottom:3px; }
.s4-plan-fpct { font-weight:600; color:rgba(26,5,13,0.65); }
.s4-plan-ftrk { height:4px; background:rgba(26,5,13,0.07); border-radius:2px; overflow:hidden; }
.s4-plan-ffill { height:100%; border-radius:2px; width:0; transition:width 1s cubic-bezier(.16,1,.3,1) 0.2s; }
.s4-screen.s4-sc-active .s4-plan-ffill { width:var(--pw); }
.s4-plan-nitem { display:flex; align-items:flex-start; gap:7px; margin-bottom:8px; }
.s4-plan-nnum { width:18px; height:18px; border-radius:50%; background:#C6093F; color:#fff; display:flex; align-items:center; justify-content:center; font-family:'JetBrains Mono',monospace; font-size:9px; font-weight:700; flex-shrink:0; margin-top:1px; }
.s4-plan-ntit { font-family:'Manrope',sans-serif; font-size:10.5px; font-weight:700; color:#1A050D; }
.s4-plan-ndes { font-family:'Manrope',sans-serif; font-size:9.5px; color:rgba(26,5,13,0.42); }
.s4-plan-nstar { display:flex; align-items:flex-start; gap:7px; margin-top:10px; padding-top:10px; border-top:1px solid rgba(26,5,13,0.07); }
.s4-plan-nstar-ico { color:#C6093F; font-size:11px; flex-shrink:0; margin-top:2px; }
.s4-plan-nstar-txt { font-family:'Manrope',sans-serif; font-size:9.5px; color:rgba(26,5,13,0.45); line-height:1.45; }

/* ══ SCREEN 5: ACCOUNTABILITY ══ */
.s4-acc-body { padding:14px 20px; overflow-y:auto; flex:1; display:flex; flex-direction:column; gap:12px; }
.s4-acc-date { font-family:'Manrope',sans-serif; font-size:10.5px; color:rgba(26,5,13,0.42); display:flex; align-items:center; gap:5px; }
.s4-acc-glance-t { font-family:'Manrope',sans-serif; font-size:11px; font-weight:700; color:#1A050D; margin-bottom:8px; }
.s4-acc-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-bottom:2px; }
.s4-acc-stat { background:#fff; border:1px solid rgba(26,5,13,0.08); border-radius:8px; padding:10px 9px; text-align:center; }
.s4-acc-stat-ico { font-size:15px; margin-bottom:3px; }
.s4-acc-stat-v { font-family:'Playfair Display',serif; font-weight:800; font-size:clamp(13px,1.5vw,18px); color:#1A050D; line-height:1; }
.s4-acc-stat-l { font-family:'Manrope',sans-serif; font-size:9px; color:rgba(26,5,13,0.42); margin-top:3px; line-height:1.3; }
.s4-acc-stat-bar { height:2.5px; border-radius:2px; margin-top:5px; }
/* Main 2-col */
.s4-acc-main { display:grid; grid-template-columns:1fr 140px; gap:12px; flex:1; }
.s4-acc-table { }
.s4-acc-table-t { font-family:'Manrope',sans-serif; font-size:11px; font-weight:700; color:#1A050D; margin-bottom:7px; }
.s4-acc-table-hdr { display:grid; grid-template-columns:1fr 60px 72px; gap:6px; padding:0 0 5px; border-bottom:1px solid rgba(26,5,13,0.08); }
.s4-acc-table-hdr span { font-family:'JetBrains Mono',monospace; font-size:8px; letter-spacing:.06em; color:rgba(26,5,13,0.32); }
.s4-acc-row { display:grid; grid-template-columns:1fr 60px 72px; gap:6px; padding:6px 0; border-bottom:1px solid rgba(26,5,13,0.04); align-items:center; }
.s4-acc-task { font-family:'Manrope',sans-serif; font-size:10px; color:rgba(26,5,13,0.55); }
.s4-acc-task-sub { font-family:'Manrope',sans-serif; font-size:8.5px; color:rgba(26,5,13,0.30); }
.s4-acc-status { display:flex; align-items:center; justify-content:center; }
.s4-acc-sts { width:17px; height:17px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:9px; }
.s4-acc-sts-ok { background:rgba(40,200,64,0.12); color:#28C840; }
.s4-acc-sts-wip { background:rgba(254,188,46,0.15); color:#E8A900; }
.s4-acc-sts-nd { background:rgba(26,5,13,0.06); color:rgba(26,5,13,0.30); }
.s4-acc-prog { }
.s4-acc-ptrk { height:3.5px; background:rgba(26,5,13,0.07); border-radius:2px; overflow:hidden; margin-top:2px; }
.s4-acc-pfill { height:100%; border-radius:2px; width:0; transition:width 0.9s cubic-bezier(.16,1,.3,1) 0.3s; }
.s4-screen.s4-sc-active .s4-acc-pfill { width:var(--aw); }
.s4-acc-ppct { font-family:'JetBrains Mono',monospace; font-size:8.5px; color:rgba(26,5,13,0.40); }
.s4-acc-view { display:flex; align-items:center; gap:4px; margin-top:8px; font-family:'Manrope',sans-serif; font-size:10.5px; font-weight:600; color:#C6093F; cursor:default; }
/* Right sidebar: coach + next + confidence */
.s4-acc-side { display:flex; flex-direction:column; gap:10px; }
.s4-acc-coach { background:#fff; border:1px solid rgba(26,5,13,0.08); border-radius:8px; padding:10px; }
.s4-acc-coach-t { font-family:'Manrope',sans-serif; font-size:10.5px; font-weight:700; color:#1A050D; margin-bottom:8px; display:flex; justify-content:space-between; }
.s4-acc-coach-inner { display:flex; gap:7px; }
.s4-acc-coach-av { width:28px; height:28px; border-radius:50%; background:linear-gradient(135deg,#C6093F,#702); flex-shrink:0; overflow:hidden; display:flex; align-items:center; justify-content:center; font-size:14px; }
.s4-acc-coach-msg { font-family:'Manrope',sans-serif; font-size:9.5px; color:rgba(26,5,13,0.55); line-height:1.45; }
.s4-acc-coach-sig { font-family:'Manrope',sans-serif; font-size:9px; font-weight:700; color:#C6093F; margin-top:5px; }
.s4-acc-next { background:#fff; border:1px solid rgba(26,5,13,0.08); border-radius:8px; padding:10px; }
.s4-acc-next-t { font-family:'Manrope',sans-serif; font-size:10.5px; font-weight:700; color:#1A050D; margin-bottom:7px; }
.s4-acc-nitem { display:flex; align-items:flex-start; gap:6px; margin-bottom:6px; }
.s4-acc-nchk { width:14px; height:14px; border:1.5px solid rgba(26,5,13,0.18); border-radius:3px; flex-shrink:0; margin-top:1px; }
.s4-acc-nttl { font-family:'Manrope',sans-serif; font-size:9.5px; font-weight:700; color:#1A050D; }
.s4-acc-ndte { font-family:'Manrope',sans-serif; font-size:8.5px; color:rgba(26,5,13,0.38); }
.s4-acc-conf { background:#fff; border:1px solid rgba(26,5,13,0.08); border-radius:8px; padding:10px; }
.s4-acc-conf-t { font-family:'Manrope',sans-serif; font-size:10px; font-weight:700; color:#1A050D; margin-bottom:3px; }
.s4-acc-conf-s { font-family:'Manrope',sans-serif; font-size:9px; color:rgba(26,5,13,0.40); margin-bottom:8px; }
.s4-acc-conf-nums { display:flex; gap:5px; margin-bottom:4px; }
.s4-acc-conf-n {
  width:24px; height:24px; border-radius:6px; border:1.5px solid rgba(26,5,13,0.14);
  display:flex; align-items:center; justify-content:center;
  font-family:'JetBrains Mono',monospace; font-size:10px; color:rgba(26,5,13,0.45);
}
.s4-acc-conf-n.s4-conf-sel { background:#C6093F; border-color:#C6093F; color:#fff; box-shadow:0 2px 8px rgba(198,9,63,0.30); }
.s4-acc-conf-lbls { display:flex; justify-content:space-between; font-family:'Manrope',sans-serif; font-size:8.5px; color:rgba(26,5,13,0.30); }


/* ─── S6 WHAT YOU GET — LIGHT ORBIT ───────────────────────────── */

#s6-whatyouget {
  background: #F9F6F7;
  padding: clamp(72px,9vh,110px) 7% clamp(48px,6vh,80px);
  overflow: hidden; position: relative; z-index:20;
}
#s6-whatyouget::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(198,9,63,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,9,63,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
}
#s6-header {
  text-align: center; max-width: 640px; margin: 0 auto clamp(48px,6vh,72px);
  position: relative; z-index: 1;
}
#s6-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: #C6093F; margin-bottom: 14px;
}
#s6-h2 {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: clamp(28px,4.2vw,52px); color: #1A050D;
  letter-spacing: -.025em; line-height: 1.08; margin-bottom: 14px;
}
#s6-h2 em { color: #C6093F; font-style: italic; }
#s6-sub {
  font-family: 'Manrope', sans-serif; font-size: clamp(13px,1.4vw,16px);
  color: rgba(26,5,13,0.48); line-height: 1.6;
}

/* Orbit container */
#s6-orbit-wrap {
  position: relative; margin: 0 auto;
  width: min(740px, 92vw); height: min(740px, 92vw);
  z-index: 1;
}
#s6-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: visible; pointer-events: none; z-index: 2;
}

/* Radial glow behind orbit */
#s6-glow-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56%; height: 56%; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,9,63,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
  animation: s6glowpulse 3.5s ease-in-out infinite;
}
@keyframes s6glowpulse {
  0%,100%{opacity:.55; transform:translate(-50%,-50%) scale(.90);}
  50%{opacity:1; transform:translate(-50%,-50%) scale(1.10);}
}

/* Center DNA orb */
#s6-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center; z-index: 10;
}
#s6-orb-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 230px; height: 230px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,9,63,0.10) 0%, transparent 65%);
  animation: s6glowpulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
#s6-dna { border-radius: 50%; display: block; position: relative; z-index: 2; }
#s6-cring-1 {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 176px; height: 176px; border-radius: 50%;
  border: 1px dashed rgba(198,9,63,0.30);
  animation: s6rotcw 9s linear infinite; pointer-events: none;
}
#s6-cring-2 {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 216px; height: 216px; border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: rgba(198,9,63,0.55);
  border-right-color: rgba(198,9,63,0.14);
  animation: s6rotccw 5.5s linear infinite; pointer-events: none;
}
@keyframes s6rotcw  { to { transform: translate(-50%,-50%) rotate(360deg);  } }
@keyframes s6rotccw { to { transform: translate(-50%,-50%) rotate(-360deg); } }
#s6-clbl {
  font-family: 'JetBrains Mono', monospace; font-size: 8px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(198,9,63,0.60); margin-top: 10px; position: relative; z-index: 2;
}
#s6-status {
  font-family: 'JetBrains Mono', monospace; font-size: 7px;
  letter-spacing: .10em; text-transform: uppercase;
  color: rgba(198,9,63,0.35); margin-top: 3px; position: relative; z-index: 2;
}

/* Orbital cards */
.s6-card {
  position: absolute; width: min(178px, 22vw); z-index: 4; pointer-events: auto;
}
.s6-ci {
  background: #fff;
  border: 1px solid rgba(26,5,13,0.08);
  border-radius: 12px;
  padding: 15px 14px 13px;
  position: relative; overflow: hidden;
  box-shadow:
    0 2px 8px rgba(26,5,13,0.05),
    0 8px 28px rgba(26,5,13,0.06),
    inset 0 1px 0 rgba(255,255,255,0.80);
  transition: border-color .30s, box-shadow .30s, opacity .25s;
  opacity: 0; cursor: default;
}
.s6-ci::before { display: none; }
.s6-ci::after {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,9,63,0.45), transparent);
  opacity: 0; transition: opacity .30s;
}
.s6-card.s6-focused .s6-ci::after { opacity: 1; }

/* Corner brackets */
.s6-br { position: absolute; width: 9px; height: 9px; }
.s6-br-tl { top:6px; left:6px; border-top:1.5px solid rgba(198,9,63,0.35); border-left:1.5px solid rgba(198,9,63,0.35); }
.s6-br-tr { top:6px; right:6px; border-top:1.5px solid rgba(198,9,63,0.35); border-right:1.5px solid rgba(198,9,63,0.35); }
.s6-br-bl { bottom:6px; left:6px; border-bottom:1.5px solid rgba(198,9,63,0.35); border-left:1.5px solid rgba(198,9,63,0.35); }
.s6-br-br { bottom:6px; right:6px; border-bottom:1.5px solid rgba(198,9,63,0.35); border-right:1.5px solid rgba(198,9,63,0.35); }

.s6-card-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.s6-ico {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(198,9,63,0.08);
  border: 1px solid rgba(198,9,63,0.18);
  display: flex; align-items: center; justify-content: center;
}
.s6-ico svg { width: 13px; height: 13px; }
.s6-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 8px;
  letter-spacing: .10em; color: rgba(198,9,63,0.45);
}
.s6-ch {
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 12.5px;
  color: #1A050D; letter-spacing: -.01em; margin-bottom: 5px;
}
.s6-cd {
  font-family: 'Manrope', sans-serif; font-size: 10px;
  line-height: 1.55; color: rgba(26,5,13,0.48);
}

/* Card reveal — glitch flicker */
@keyframes s6flicker {
  0%   { opacity:0;   transform:scale(.86); }
  12%  { opacity:.80; transform:scale(.98); }
  24%  { opacity:.28; transform:scale(.99); }
  38%  { opacity:.90; transform:scale(1); }
  52%  { opacity:.55; transform:scale(1); }
  65%  { opacity:1;   transform:scale(1); }
  100% { opacity:1;   transform:scale(1); }
}
.s6-card.s6-in .s6-ci {
  animation: s6flicker 0.72s cubic-bezier(.16,1,.3,1) both;
}

/* Dim / focus */
.s6-card.s6-dimmed .s6-ci { opacity: .30 !important; }
.s6-card.s6-focused .s6-ci {
  border-color: rgba(198,9,63,0.35) !important;
  box-shadow:
    0 0 0 1px rgba(198,9,63,0.14),
    0 4px 20px rgba(198,9,63,0.14),
    0 12px 40px rgba(26,5,13,0.10),
    inset 0 1px 0 rgba(255,255,255,0.90) !important;
}

/* Footer */
#s6-footer {
  text-align: center; margin-top: clamp(48px,6vh,72px);
  padding-top: clamp(32px,4vh,48px);
  border-top: 1px solid rgba(26,5,13,0.08);
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px,2.4vw,28px); font-weight: 700; font-style: italic;
  color: rgba(26,5,13,0.60); letter-spacing: -.01em;
  position: relative; z-index: 1;
}
#s6-footer em { color: #C6093F; }

/* Mobile: orbit → stack */
@media (max-width: 680px) {
  #s6-orbit-wrap {
    width: 100%; height: auto; display: flex;
    flex-direction: column; align-items: center; gap: 12px;
  }
  #s6-svg { display: none; }
  #s6-glow-bg { display: none; }
  #s6-center { position: static; transform: none; margin-bottom: 16px; }
  .s6-card { position: static; width: min(300px, 90vw); transform: none !important; }
  .s6-ci { opacity: 1 !important; animation: none !important; }
}

/* ─── S7 WHY AI CAREER COACH ────────────────────────────────────── */
#s7-split {
  background:#FFFFFF; position:relative; overflow:hidden; z-index:20;
  padding:clamp(72px,9vh,110px) 7% clamp(48px,6vh,80px);
  border-top:1px solid rgba(26,5,13,0.06);
}
.s7-inner { max-width:1100px; margin:0 auto; text-align:center; }
.s7-eyebrow {
  font-family:'JetBrains Mono',monospace; font-size:10px; font-weight:500;
  letter-spacing:.18em; text-transform:uppercase;
  color:#C6093F; margin-bottom:14px;
}
.s7-headline {
  font-family:'Playfair Display',serif; font-weight:800;
  font-size:clamp(28px,4.5vw,52px); color:#1A050D;
  letter-spacing:-0.025em; line-height:1.08; margin-bottom:12px;
}
.s7-headline em { font-style:italic; color:#C6093F; }
.s7-subtitle {
  font-family:'Manrope',sans-serif; font-size:clamp(13px,1.4vw,17px);
  color:rgba(26,5,13,0.48); line-height:1.6; max-width:620px; margin:0 auto 36px;
}
/* CHAT WINDOWS */
.s7-windows {
  display:grid; grid-template-columns:1fr 1px 1fr; gap:0;
  text-align:left; max-width:1060px; margin:0 auto;
}
.s7-divider {
  background:linear-gradient(180deg,transparent 0%,rgba(26,5,13,0.10) 15%,rgba(26,5,13,0.10) 85%,transparent 100%);
}
.s7-win {
  display:flex; flex-direction:column;
  border-radius:14px; overflow:hidden;
  box-shadow:0 2px 20px rgba(26,5,13,0.06);
  border:1px solid rgba(26,5,13,0.08);
  background:#fff;
}
.s7-win-r {
  border-color:rgba(198,9,63,0.12);
  box-shadow:0 2px 24px rgba(198,9,63,0.06);
}
/* TITLE BAR */
.s7-titlebar {
  display:flex; align-items:center; gap:8px;
  padding:10px 16px;
  border-bottom:1px solid rgba(26,5,13,0.06);
  background:#FAFBFC;
}
.s7-win-r .s7-titlebar {
  background:linear-gradient(90deg,#FDF6F8,#FAF5FF);
  border-bottom-color:rgba(198,9,63,0.08);
}
.s7-dots { display:flex; gap:5px; }
.s7-dot {
  width:8px; height:8px; border-radius:50%;
}
.s7-dot-r { background:#EF4444; }
.s7-dot-y { background:#F59E0B; }
.s7-dot-g { background:#22C55E; }
.s7-win-r .s7-dot-r { background:#C6093F; }
.s7-win-r .s7-dot-y { background:#E8204A; }
.s7-win-r .s7-dot-g { background:#22C55E; }
.s7-titlebar-name {
  font-family:'Manrope',sans-serif; font-weight:600;
  font-size:12px; color:rgba(26,5,13,0.55);
  flex:1; text-align:center; margin-right:28px;
}
.s7-win-r .s7-titlebar-name { color:#C6093F; font-weight:700; }
/* MESSAGE AREA */
.s7-messages {
  flex:1; padding:16px; display:flex; flex-direction:column; gap:14px;
  min-height:380px; background:#fff;
}
.s7-win-r .s7-messages { background:linear-gradient(180deg,#FFFFFF 0%,#FFFBFC 100%); }
.s7-msg {
  display:flex; gap:10px; align-items:flex-start;
  opacity:0; transform:translateY(12px);
  transition:opacity .5s ease, transform .5s ease;
}
.s7-msg.s7-msg-in { opacity:1; transform:none; }
/* AVATAR */
.s7-av {
  width:30px; height:30px; border-radius:50%; flex-shrink:0; overflow:hidden;
  background:#E8EAF0;
}
.s7-av img { width:100%; height:100%; object-fit:cover; }
.s7-av svg { width:100%; height:100%; }
.s7-av-bot {
  background:rgba(26,5,13,0.06);
  display:flex; align-items:center; justify-content:center;
}
.s7-av-bot svg { width:16px; height:16px; }
.s7-av-coach {
  background:linear-gradient(135deg,#C6093F,#E8204A);
  display:flex; align-items:center; justify-content:center;
}
.s7-av-coach svg { width:16px; height:16px; }
/* BUBBLES */
.s7-bub {
  border-radius:0 12px 12px 12px; padding:10px 14px;
  font-family:'Manrope',sans-serif; font-size:clamp(11px,1.1vw,12.5px); line-height:1.55;
  max-width:92%;
}
.s7-bub-user {
  border-radius:12px 0 12px 12px;
  background:#EFF3FF; color:#1A050D;
  margin-left:auto;
}
.s7-msg-user { flex-direction:row-reverse; }
.s7-bub-bot {
  background:#F4F5F7; color:rgba(26,5,13,0.62);
}
.s7-bub-coach {
  background:#FFF; border:1px solid rgba(198,9,63,0.08);
  color:#1A050D;
}
.s7-bub-name {
  font-weight:700; font-size:12px; margin-bottom:4px;
}
.s7-bub-bot .s7-bub-name { color:rgba(26,5,13,0.40); }
.s7-bub-coach .s7-bub-name { color:#C6093F; }
.s7-bub ol {
  margin:8px 0 0; padding-left:18px;
  font-size:clamp(10.5px,1vw,12px); line-height:1.5;
}
.s7-bub ol li { padding:2px 0; }
.s7-bub ol li::marker { color:rgba(26,5,13,0.30); }
/* Coach checklist */
.s7-cl { margin-top:8px; }
.s7-ci {
  display:flex; align-items:flex-start; gap:7px;
  font-family:'Manrope',sans-serif; font-size:clamp(10.5px,1vw,12px);
  color:#1A050D; padding:3px 0; line-height:1.45;
}
.s7-ci strong { font-weight:700; }
.s7-ci-icon {
  width:15px; height:15px; border-radius:50%; flex-shrink:0; margin-top:2px;
  background:rgba(198,9,63,0.08); color:#C6093F;
  display:flex; align-items:center; justify-content:center;
  font-size:8px; font-weight:700;
}
/* INPUT BAR */
.s7-input {
  display:flex; align-items:center; gap:8px;
  padding:10px 14px;
  border-top:1px solid rgba(26,5,13,0.06);
  background:#FAFBFC;
}
.s7-win-r .s7-input { background:#FFFBFC; border-top-color:rgba(198,9,63,0.06); }
.s7-input-field {
  flex:1; height:32px; border-radius:8px; padding:0 12px;
  border:1px solid rgba(26,5,13,0.10); background:#fff;
  font-family:'Manrope',sans-serif; font-size:11px; color:rgba(26,5,13,0.35);
  display:flex; align-items:center;
}
.s7-win-r .s7-input-field { border-color:rgba(198,9,63,0.10); }
.s7-input-btn {
  width:32px; height:32px; border-radius:8px; border:none;
  background:rgba(26,5,13,0.06); display:flex; align-items:center; justify-content:center;
  cursor:default;
}
.s7-win-r .s7-input-btn { background:rgba(198,9,63,0.08); }
.s7-input-btn svg { width:14px; height:14px; }
/* BOTTOM BAR */
.s7-bottom {
  background:#F5F6F8; border-radius:12px; margin-top:28px;
  padding:clamp(16px,2vh,24px) clamp(20px,3vw,32px);
  display:flex; align-items:center; gap:clamp(16px,3vw,32px);
  flex-wrap:wrap;
}
.s7-bottom-label {
  font-family:'Playfair Display',serif; font-weight:700;
  font-size:clamp(16px,1.6vw,20px); color:#1A050D;
}
.s7-bottom-items { display:flex; gap:clamp(16px,3vw,32px); flex:1; flex-wrap:wrap; }
.s7-bi {
  display:flex; align-items:center; gap:8px;
  font-family:'Manrope',sans-serif; font-size:clamp(10px,1vw,12.5px);
  color:rgba(26,5,13,0.65); line-height:1.35;
}
.s7-bi-icon {
  width:28px; height:28px; border-radius:8px; flex-shrink:0;
  background:rgba(198,9,63,0.06);
  display:flex; align-items:center; justify-content:center;
}
.s7-bi-icon svg { width:14px; height:14px; }
.s7-bottom-foot {
  width:100%; text-align:center; margin-top:8px;
  font-family:'Manrope',sans-serif; font-size:clamp(11px,1.1vw,13px);
  color:rgba(26,5,13,0.40);
}
.s7-bottom-foot strong { color:#1A050D; font-weight:700; }
/* REVEAL */
.s7-reveal { opacity:0; transform:translateY(24px); transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.s7-reveal.s7-in { opacity:1; transform:none; }
@media(max-width:740px){
  .s7-windows { grid-template-columns:1fr; gap:24px; }
  .s7-divider { display:none; }
  .s7-bottom-items { flex-direction:column; gap:10px; }
}
/* ─── S8 TRANSFORMATION ──────────────────────────────────────────── */
#s8-transform {
  background:#FFFFFF; position:relative; overflow:hidden; z-index:20;
  padding:clamp(72px,9vh,110px) 7% clamp(48px,6vh,80px);
  border-top:1px solid rgba(26,5,13,0.07);
}
#s8-bg-canvas {
  position:absolute; inset:0; pointer-events:none; z-index:0;
}
.s8-inner { position:relative; z-index:1; max-width:1100px; margin:0 auto; }

/* Eyebrow */
#s8-eye {
  font-family:'JetBrains Mono',monospace; font-size:10px; font-weight:500;
  letter-spacing:.18em; text-transform:uppercase;
  color:#C6093F; text-align:center;
  margin-bottom:14px; opacity:0; transform:translateY(12px);
  transition:opacity .55s, transform .55s;
}
#s8-eye.s8-in { opacity:1; transform:none; }

/* Headline above split */
#s8-headline {
  font-family:'Playfair Display',serif; font-weight:800;
  font-size:clamp(30px,4.5vw,56px); line-height:1.08; letter-spacing:-.025em;
  color:rgba(26,5,13,0.92); text-align:center;
  margin-bottom:clamp(48px,6vh,72px);
  opacity:0; transform:translateY(16px);
  transition:opacity .70s .08s cubic-bezier(.16,1,.3,1), transform .70s .08s cubic-bezier(.16,1,.3,1);
}
#s8-headline.s8-in { opacity:1; transform:none; }
#s8-headline em { color:#C6093F; font-style:italic; }

/* Split grid */
.s8-split {
  display:grid; grid-template-columns:1fr 160px 1fr;
  align-items:start; margin-bottom:clamp(52px,8vh,96px);
  gap:0;
}

/* Before panel */
#s8-before {
  background:#F7F3F4; border:1px solid rgba(26,5,13,0.08);
  border-radius:20px 0 0 20px; padding:clamp(28px,3.5vw,44px);
  text-align:right;
}
#s8-after {
  background:#FFF8FA; border:1px solid rgba(198,9,63,0.14);
  border-radius:0 20px 20px 0; padding:clamp(28px,3.5vw,44px);
  text-align:left;
}

.s8-side-label {
  font-family:'JetBrains Mono',monospace; font-size:9px;
  letter-spacing:.18em; text-transform:uppercase; margin-bottom:24px;
  display:block;
}
#s8-before .s8-side-label { color:rgba(26,5,13,0.32); }
#s8-after  .s8-side-label { color:rgba(198,9,63,0.60); }

.s8-stat {
  margin-bottom:clamp(18px,2.8vh,30px);
  opacity:0; transition:opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
#s8-before .s8-stat { transform:translateX(20px); }
#s8-after  .s8-stat { transform:translateX(-20px); }
.s8-stat.s8-in { opacity:1; transform:none !important; }

.s8-stat-n {
  font-family:'Playfair Display',serif; font-weight:800;
  font-size:clamp(36px,5.5vw,64px); line-height:1.0; letter-spacing:-0.03em;
}
#s8-before .s8-stat-n { color:rgba(26,5,13,0.28); }
#s8-after  .s8-stat-n { color:#C6093F; }

.s8-stat-l {
  font-family:'Manrope',sans-serif; font-size:12px;
  font-weight:500; margin-top:3px;
}
#s8-before .s8-stat-l { color:rgba(26,5,13,0.40); }
#s8-after  .s8-stat-l { color:rgba(198,9,63,0.70); }

.s8-stat-n.s8-shake { animation:s8shake .55s cubic-bezier(.36,.07,.19,.97) both; }
@keyframes s8shake {
  10%,90%{transform:translateX(-2px)} 20%,80%{transform:translateX(3px)}
  30%,50%,70%{transform:translateX(-3px)} 40%,60%{transform:translateX(3px)}
}
.s8-tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:18px; }
#s8-before .s8-tags { justify-content:flex-end; }
#s8-after  .s8-tags { justify-content:flex-start; }
.s8-tag {
  font-family:'Manrope',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:.01em; padding:5px 13px; border-radius:999px;
  opacity:0; transition:opacity .45s;
}
.s8-tag.s8-in { opacity:1; }
#s8-before .s8-tag { background:rgba(26,5,13,0.07); color:rgba(26,5,13,0.42); }
#s8-after  .s8-tag {
  background:rgba(198,9,63,0.08); color:rgba(198,9,63,0.78);
  border:1px solid rgba(198,9,63,0.18);
}

/* Center divider column */
#s8-center {
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; align-self:stretch; position:relative;
  background:#FFFFFF; border-top:1px solid rgba(26,5,13,0.08);
  border-bottom:1px solid rgba(26,5,13,0.08);
}
#s8-node-wrap {
  position:relative; width:80px; height:80px; flex-shrink:0;
  z-index:1;
}
#s8-dna-canvas { display:block; }
.s8-nring {
  position:absolute; border-radius:50%; top:50%; left:50%;
}
#s8-nr1 {
  width:96px; height:96px; transform:translate(-50%,-50%);
  border:1.5px dashed rgba(198,9,63,0.22);
  animation:s8rcw 9s linear infinite;
}
#s8-nr2 {
  width:118px; height:118px; transform:translate(-50%,-50%);
  border:1.5px solid transparent; border-top-color:rgba(198,9,63,0.45);
  animation:s8rccw 5.5s linear infinite;
}
@keyframes s8rcw  { to { transform:translate(-50%,-50%) rotate(360deg);  } }
@keyframes s8rccw { to { transform:translate(-50%,-50%) rotate(-360deg); } }

#s8-track-wrap {
  position:absolute; top:0; bottom:0; left:50%; width:1px;
  background:rgba(26,5,13,0.08);
}
#s8-track-fill {
  position:absolute; top:0; left:0; right:0; height:0%;
  background:linear-gradient(180deg,rgba(26,5,13,0.12),#C6093F);
  transition:height 1.80s cubic-bezier(.16,1,.3,1);
}
#s8-node-lbl {
  font-family:'JetBrains Mono',monospace; font-size:7px;
  letter-spacing:.16em; color:rgba(198,9,63,0.50);
  margin-top:8px; text-align:center; z-index:1;
}

/* VS badge */
#s8-vs {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:40px; height:40px; border-radius:50%;
  background:#FFFFFF; border:1.5px solid rgba(26,5,13,0.10);
  box-shadow:0 2px 12px rgba(26,5,13,0.08);
  display:flex; align-items:center; justify-content:center;
  font-family:'JetBrains Mono',monospace; font-size:10px; font-weight:700;
  color:rgba(26,5,13,0.40); z-index:2;
}

/* Punchline */
#s8-punch {
  text-align:center; opacity:0; transform:translateY(18px);
  transition:opacity .80s .12s cubic-bezier(.16,1,.3,1), transform .80s .12s cubic-bezier(.16,1,.3,1);
}
#s8-punch.s8-in { opacity:1; transform:none; }
#s8-punch p {
  font-family:'Playfair Display',serif; font-weight:700; font-style:italic;
  font-size:clamp(22px,3.4vw,40px); color:rgba(26,5,13,0.78); line-height:1.3;
}
#s8-punch em { color:#C6093F; font-style:normal; }

/* CTA row below punchline */
#s8-cta {
  margin-top:clamp(28px,4vh,44px); display:flex;
  align-items:center; justify-content:center; gap:16px;
  opacity:0; transform:translateY(14px);
  transition:opacity .70s .30s cubic-bezier(.16,1,.3,1), transform .70s .30s cubic-bezier(.16,1,.3,1);
}
#s8-cta.s8-in { opacity:1; transform:none; }
#s8-cta-btn {
  font-family:'Manrope',sans-serif; font-size:16px; font-weight:700;
  background:#C6093F; color:#fff;
  padding:16px 40px; border-radius:999px;
  border:none; cursor:pointer; letter-spacing:.01em;
  box-shadow:0 4px 18px rgba(198,9,63,0.32);
  transition:transform .2s ease, box-shadow .2s ease;
}
#s8-cta-btn:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(198,9,63,0.42); }
#s8-cta-note {
  font-family:'Manrope',sans-serif; font-size:12px;
  color:rgba(26,5,13,0.40);
}

@media(max-width:680px){
  .s8-split { grid-template-columns:1fr; gap:0; }
  #s8-before { border-radius:16px 16px 0 0; text-align:center; padding:24px; }
  #s8-after  { border-radius:0 0 16px 16px; text-align:center; padding:24px; order:2; }
  #s8-center { order:1; height:64px; flex-direction:row; border:none;
               border-left:1px solid rgba(26,5,13,0.08);
               border-right:1px solid rgba(26,5,13,0.08); }
  #s8-before .s8-tags, #s8-after .s8-tags { justify-content:center; }
  #s8-nr1, #s8-nr2, #s8-track-wrap, #s8-node-lbl { display:none; }
  #s8-node-wrap { width:60px; height:60px; }
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
#site-footer {
  background:#0D0508; color:rgba(249,241,243,0.72);
  padding:clamp(64px,9vh,100px) 7% 0;
  font-family:'Manrope',sans-serif;
  position:relative; overflow:hidden;
}
#site-footer::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 60% 40% at 20% 0%, rgba(198,9,63,0.10) 0%, transparent 70%),
             radial-gradient(ellipse 40% 30% at 80% 100%, rgba(198,9,63,0.06) 0%, transparent 70%);
}
.ft-inner { position:relative; z-index:1; max-width:1120px; margin:0 auto; }

/* Top row: brand + columns */
.ft-top {
  display:grid; grid-template-columns:280px repeat(2,1fr);
  gap:clamp(28px,4vw,52px); padding-bottom:clamp(48px,7vh,72px);
  border-bottom:1px solid rgba(249,241,243,0.08);
}
.ft-brand { text-align:left; }
.ft-logo {
  height:38px; width:auto; margin-bottom:12px; display:block;
}
.ft-tagline {
  font-size:13px; line-height:1.6;
  color:rgba(249,241,243,0.52); margin-bottom:22px;
}
.ft-social { display:flex; gap:10px; }
.ft-soc {
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(249,241,243,0.14);
  display:flex; align-items:center; justify-content:center;
  color:rgba(249,241,243,0.52); font-size:13px;
  text-decoration:none; transition:border-color .2s, color .2s;
}
.ft-soc:hover { border-color:rgba(198,9,63,0.70); color:#FF6090; }

.ft-col-head {
  font-family:'JetBrains Mono',monospace; font-size:9px;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(249,241,243,0.38); margin-bottom:16px;
}
.ft-col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:9px; }
.ft-col a {
  font-size:13.5px; color:rgba(249,241,243,0.62);
  text-decoration:none; transition:color .18s;
}
.ft-col a:hover { color:#FFFFFF; }

/* Bottom bar */
.ft-bottom {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px;
  padding:22px 0 24px;
}
.ft-copy {
  font-size:12px; color:rgba(249,241,243,0.30);
}
.ft-legal { display:flex; gap:20px; }
.ft-legal a {
  font-size:12px; color:rgba(249,241,243,0.30);
  text-decoration:none; transition:color .18s;
}
.ft-legal a:hover { color:rgba(249,241,243,0.65); }
.ft-badge {
  display:flex; align-items:center; gap:7px;
  background:rgba(249,241,243,0.05); border:1px solid rgba(249,241,243,0.10);
  border-radius:999px; padding:5px 14px;
  font-size:11px; color:rgba(249,241,243,0.38);
}
.ft-badge-dot {
  width:6px; height:6px; border-radius:50%;
  background:#25D366; box-shadow:0 0 6px rgba(37,211,102,0.6);
}

@media(max-width:900px){
  .ft-top { grid-template-columns:1fr 1fr; }
  .ft-brand { grid-column:1/-1; }
}
@media(max-width:520px){
  .ft-top { grid-template-columns:1fr 1fr; }
  .ft-bottom { flex-direction:column; align-items:flex-start; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  #s0-nav   { padding: 0 20px; }
  #hero-init-copy { padding: 0 20px; }
  #hero-story-copy { padding: 0 20px; }
}
