/* =========================================================
   GENZ REALNESS — UNDER THREAT, STILL RISING
   Cinematic editorial landing page stylesheet
========================================================= */

:root{
  --black: #050505;
  --charcoal: #111111;
  --charcoal-2: #1a1a1a;
  --ruby: #B00020;
  --crimson: #7A0018;
  --gold: #D4AF37;
  --gold-2: #F5C542;
  --ivory: #F7F1E3;
  --concrete: #8A8A8A;

  --font-display: 'Anton', 'Archivo Black', 'Oswald', sans-serif;
  --font-body: 'Inter', 'Manrope', sans-serif;

  --ease: cubic-bezier(.16,.84,.32,1);
  --container-w: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  margin:0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a{ color: inherit; }

.container{
  width: min(92%, var(--container-w));
  margin: 0 auto;
}
.container.narrow{ max-width: 820px; }
.center-text{ text-align:center; }

/* ================= SKIP LINK ================= */
.skip-link{
  position: absolute;
  top: -60px; left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: .75rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  z-index: 9999;
  transition: top .2s var(--ease);
}
.skip-link:focus{ top: 1rem; }

/* ================= GRAIN OVERLAY ================= */
.grain-overlay{
  position: fixed;
  inset:0;
  pointer-events:none;
  z-index: 500;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ================= SCROLL PROGRESS ================= */
.scroll-progress{
  position: fixed;
  top:0; left:0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--ruby), var(--gold));
  z-index: 2000;
  transition: width .1s linear;
}

/* ================= CHAPTER NAV ================= */
.chapter-nav{
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
}
.chapter-nav-toggle{
  display: none;
}
.chapter-nav-list{
  list-style: none;
  margin:0; padding:0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: flex-end;
}
.chapter-nav-list a{
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  font-size: .68rem;
  letter-spacing: .08em;
  color: var(--concrete);
  padding: .2rem 0;
  transition: color .25s var(--ease);
}
.chapter-num{
  font-family: var(--font-display);
  font-size: .7rem;
  color: var(--concrete);
  opacity: .6;
}
.chapter-label{
  max-width:0;
  overflow:hidden;
  white-space: nowrap;
  opacity:0;
  transition: max-width .35s var(--ease), opacity .25s var(--ease);
}
.chapter-nav-list li:hover .chapter-label,
.chapter-nav-list li.active .chapter-label{
  max-width: 220px;
  opacity:1;
}
.chapter-nav-list li::after{
  content:"";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--charcoal-2);
  border: 1px solid var(--concrete);
  margin-left: .3rem;
  flex-shrink:0;
}
.chapter-nav-list li.active a{ color: var(--ivory); }
.chapter-nav-list li.active::after,
.chapter-nav-list li.active a::after{
  background: var(--ruby);
  border-color: var(--gold);
}
.chapter-nav-list li.active{ }
.chapter-nav-list li.active a{ }
.chapter-nav-list li{ }

@media (max-width: 900px){
  .chapter-nav{
    right: .75rem;
    top: auto;
    bottom: 5.5rem;
    transform:none;
  }
  .chapter-nav-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width: 42px; height:42px;
    border-radius:50%;
    background: var(--charcoal);
    border: 1px solid rgba(212,175,55,.4);
    margin-left:auto;
    cursor:pointer;
  }
  .chapter-nav-toggle-line{
    width: 16px; height:2px; background: var(--gold);
    position:relative;
  }
  .chapter-nav-toggle-line::before,
  .chapter-nav-toggle-line::after{
    content:"";
    position:absolute; left:0;
    width:16px; height:2px; background: var(--gold);
  }
  .chapter-nav-toggle-line::before{ top:-5px; }
  .chapter-nav-toggle-line::after{ top:5px; }
  .chapter-nav-list{
    max-height:0;
    overflow:hidden;
    margin-top:.5rem;
    background: rgba(10,10,10,.9);
    border-radius: 12px;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
    padding: 0 .75rem;
  }
  .chapter-nav-list.open{
    max-height: 70vh;
    padding: .75rem;
    overflow-y:auto;
  }
  .chapter-label{ max-width: 220px; opacity:1; }
}

/* ================= BUTTONS ================= */
.btn{
  display: inline-flex;
  align-items:center;
  gap:.6rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration:none;
  border: 1px solid transparent;
  cursor:pointer;
  position: relative;
  overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.btn--primary{
  background: linear-gradient(135deg, var(--ruby), var(--crimson));
  color: var(--ivory);
  box-shadow: 0 8px 30px rgba(176,0,32,.35);
}
.btn--primary:hover{ box-shadow: 0 10px 40px rgba(176,0,32,.55); transform: translateY(-2px); }
.btn--outline{
  background: transparent;
  border-color: rgba(212,175,55,.6);
  color: var(--gold-2);
}
.btn--outline:hover{ background: rgba(212,175,55,.1); transform: translateY(-2px); }
.btn--ghost{
  background: rgba(255,255,255,.04);
  color: var(--ivory);
  border-color: rgba(255,255,255,.15);
}
.btn--ghost:hover{ background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn--large{ padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn:focus-visible, a:focus-visible, button:focus-visible{
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

.download-pill{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  margin-top: 1.6rem;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  background: rgba(212,175,55,.08);
  border: 1px dashed rgba(212,175,55,.55);
  color: var(--gold-2);
  text-decoration:none;
  font-size: .85rem;
  font-weight:600;
  letter-spacing: .02em;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.download-pill:hover{ background: rgba(212,175,55,.18); transform: translateY(-2px); }

/* ================= HERO ================= */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 7rem 1.25rem 5rem;
  overflow:hidden;
  background: radial-gradient(ellipse at 50% 0%, #1b0508 0%, var(--black) 65%);
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-vignette{
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 40%, transparent 30%, rgba(0,0,0,.75) 100%);
}
.hero-lightleak{
  position:absolute;
  width: 60vw; height: 60vw;
  border-radius:50%;
  filter: blur(90px);
  opacity: .35;
  animation: drift 18s ease-in-out infinite alternate;
}
.hero-lightleak--gold{
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -20%; left: -15%;
}
.hero-lightleak--red{
  background: radial-gradient(circle, var(--ruby) 0%, transparent 70%);
  bottom: -25%; right: -15%;
  animation-delay: 4s;
}
@keyframes drift{
  0%{ transform: translate(0,0) scale(1); }
  100%{ transform: translate(4%, 6%) scale(1.08); }
}
.hero-particles{
  position:absolute; inset:0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(212,175,55,.6), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(212,175,55,.5), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(176,0,32,.5), transparent),
    radial-gradient(1px 1px at 85% 20%, rgba(212,175,55,.4), transparent),
    radial-gradient(1px 1px at 55% 15%, rgba(255,255,255,.3), transparent),
    radial-gradient(1.5px 1.5px at 10% 65%, rgba(255,255,255,.25), transparent);
  background-size: 100% 100%;
  animation: floaty 12s ease-in-out infinite alternate;
}
@keyframes floaty{
  0%{ transform: translateY(0); }
  100%{ transform: translateY(-25px); }
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.hero-logo{
  width: 130px;
  height:auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 25px rgba(212,175,55,.35));
}
.hero-eyebrow{
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .75rem;
  color: var(--gold-2);
  margin: 0 0 1.25rem;
  font-weight:600;
}
.hero-title{
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 6rem);
  line-height: .98;
  margin: 0 0 1rem;
  letter-spacing: .01em;
}
.hero-title-line{ display:block; }
.hero-title-line--accent{
  background: linear-gradient(90deg, var(--gold-2), var(--gold), var(--ruby));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.hero-subtitle{
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--ivory);
  opacity:.9;
  max-width: 640px;
  margin: 0 0 1.5rem;
  font-weight:400;
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--concrete);
  margin-bottom: 1.75rem;
}
.hero-meta i{ color: var(--ruby); margin-right:.3rem; }
.hero-meta-divider{ opacity:.5; }
.hero-intro{
  font-size: 1.02rem;
  color: rgba(247,241,227,.82);
  max-width: 680px;
  margin: 0 0 2.25rem;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: .9rem;
}

.scroll-cue{
  position:absolute;
  bottom: 1.75rem; left:50%;
  transform: translateX(-50%);
  display:flex; flex-direction:column; align-items:center;
  gap:.5rem;
  font-size: .68rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color: var(--concrete);
  z-index:2;
}
.scroll-cue-line{
  width:1px; height: 40px;
  background: rgba(255,255,255,.2);
  position:relative;
  overflow:hidden;
}
.scroll-cue-dot{
  position:absolute; top:-40px; left:-1.5px;
  width:4px; height:4px; border-radius:50%;
  background: var(--gold-2);
  animation: cueMove 2.4s ease-in-out infinite;
}
@keyframes cueMove{
  0%{ top:-10px; opacity:0; }
  20%{ opacity:1; }
  90%{ opacity:1; }
  100%{ top: 40px; opacity:0; }
}

/* ================= REVEAL ANIMATIONS ================= */
.reveal-fade, .reveal-line, .reveal-word-line{
  opacity:0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-fade.is-visible, .reveal-line.is-visible, .reveal-word-line.is-visible{
  opacity:1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal-fade, .reveal-line, .reveal-word-line{
    opacity:1 !important; transform:none !important; transition:none !important;
  }
}

/* ================= CHAPTER GENERIC ================= */
.chapter{
  position: relative;
  padding: 7rem 0;
  overflow:hidden;
}
.chapter-kicker{
  text-transform:uppercase;
  letter-spacing:.3em;
  font-size:.7rem;
  color: var(--ruby);
  font-weight:700;
  margin: 0 0 1rem;
}
.chapter-kicker--gold{ color: var(--gold-2); }
.chapter-title{
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 1.75rem;
  letter-spacing: .01em;
}
.text-crimson{ color: var(--ruby); }
.text-gold{ color: var(--gold-2); }
.lead-text{
  font-size: 1.1rem;
  color: rgba(247,241,227,.85);
  max-width: 760px;
  margin: 0 0 2rem;
}

/* Pull quotes */
.pullquote{
  margin: 2.5rem 0;
  padding: 1.5rem 0 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  position:relative;
}
.pullquote p{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin:0 0 .75rem;
  color: var(--ivory);
}
.pullquote cite{
  font-style: normal;
  font-size: .85rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--gold-2);
}
.pullquote--large p{ font-size: clamp(1.6rem, 3.6vw, 2.8rem); }
.pullquote--medium p{ font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
.pullquote--giant{
  border:none;
  padding-left:0;
  text-align:center;
  margin: 3rem auto;
  max-width: 900px;
}
.pullquote--giant p{
  font-size: clamp(1.9rem, 5.5vw, 3.6rem);
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.pullquote--boxed{
  border: 1px solid rgba(212,175,55,.3);
  border-left: 3px solid var(--gold);
  background: rgba(212,175,55,.04);
  padding: 2rem;
  border-radius: 8px;
}
.pullquote--boxed p{ font-family: var(--font-body); font-size: 1.2rem; font-weight:500; color: var(--ivory); }
.pullquote--gold{ border-left-color: var(--gold-2); }
.pullquote--gold p{ color: var(--gold-2); }
.pullquote--gold.pullquote--giant p{
  background: linear-gradient(90deg, var(--gold-2), #fff5d6);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.pullquote.glow{
  box-shadow: 0 0 40px rgba(212,175,55,.15);
}

/* word reveal quote */
.pullquote--word-reveal p{ }
.word-span{
  display:inline-block;
  opacity:0;
  transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.word-span.shown{ opacity:1; transform:translateY(0); }

/* =========== SILENCE SECTION =========== */
.chapter--silence{
  background: linear-gradient(180deg, var(--black) 0%, #0a0a0a 60%, var(--charcoal) 100%);
}
.chapter-bgfade{
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 20%, rgba(122,0,24,.12), transparent 60%);
  pointer-events:none;
}
.silence-grid{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items:start;
  margin-top: 2rem;
}
.silence-portrait{
  margin:0;
  position: sticky;
  top: 6rem;
}
.silence-portrait img{
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,.25);
  filter: grayscale(.15) contrast(1.05);
}
.silence-portrait figcaption{
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--gold-2);
  font-weight:600;
}
.silence-portrait figcaption span{
  display:block;
  font-size: .72rem;
  color: var(--concrete);
  font-weight:400;
  margin-top: .2rem;
}
.alert-lines{
  display:flex;
  gap:4px;
  align-items:flex-end;
  height: 34px;
  margin-bottom: 1.5rem;
}
.alert-lines span{
  flex:1;
  background: var(--ruby);
  opacity:.35;
  animation: alertPulse 1.8s ease-in-out infinite;
}
.alert-lines span:nth-child(odd){ animation-delay: .2s; }
.alert-lines span:nth-child(1){ height:40%; }
.alert-lines span:nth-child(2){ height:80%; }
.alert-lines span:nth-child(3){ height:30%; }
.alert-lines span:nth-child(4){ height:100%; }
.alert-lines span:nth-child(5){ height:55%; }
.alert-lines span:nth-child(6){ height:75%; }
.alert-lines span:nth-child(7){ height:35%; }
.alert-lines span:nth-child(8){ height:60%; }
@keyframes alertPulse{
  0%,100%{ opacity:.25; transform: scaleY(.8); }
  50%{ opacity:.7; transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce){ .alert-lines span{ animation:none; opacity:.5; } }

@media (max-width: 800px){
  .silence-grid{ grid-template-columns: 1fr; }
  .silence-portrait{ position:static; max-width: 220px; margin: 0 auto; }
}

/* =========== SAFE SPACE SECTION =========== */
.chapter--safe-space{
  background: radial-gradient(ellipse at 50% 50%, #140505 0%, var(--black) 70%);
}
.safe-space-rings{ position:absolute; inset:0; z-index:0; display:flex; align-items:center; justify-content:center; }
.ring{
  position:absolute;
  border-radius:50%;
  border: 1px solid rgba(212,175,55,.15);
}
.ring--1{ width: 40vw; height:40vw; animation: spin 60s linear infinite; }
.ring--2{ width: 60vw; height:60vw; border-color: rgba(176,0,32,.12); animation: spin 90s linear infinite reverse; }
.ring--3{ width: 80vw; height:80vw; border-color: rgba(212,175,55,.08); animation: spin 120s linear infinite; }
@keyframes spin{ from{ transform: rotate(0); } to{ transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .ring{ animation:none; } }

.safe-space-grid{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items:center;
  margin-top: 2rem;
}
.safe-space-feature{ text-align:center; }
.safe-space-portrait{ margin: 1.5rem auto 0; max-width: 260px; }
.safe-space-portrait img{
  border-radius: 10px;
  border: 1px solid rgba(212,175,55,.3);
}
.safe-space-portrait figcaption{
  margin-top:.6rem; font-size:.85rem; color: var(--gold-2); font-weight:600;
}
.safe-space-portrait figcaption span{ display:block; font-size:.7rem; color:var(--concrete); font-weight:400; margin-top:.15rem; }
.safe-space-network{ position:relative; height: 0; }
.safe-space-network .node{
  position:absolute;
  left: var(--x); top: var(--y);
  width: 6px; height:6px;
  border-radius:50%;
  background: var(--gold-2);
  opacity:.5;
}
@media (max-width: 800px){
  .safe-space-grid{ grid-template-columns:1fr; }
}

/* =========== HBCU SECTION =========== */
.chapter--hbcu{
  background: linear-gradient(180deg, var(--charcoal) 0%, #0d0d0d 100%);
}
.hbcu-columns{
  position:absolute; inset:0;
  display:flex;
  justify-content: space-evenly;
  opacity:.12;
  z-index:0;
}
.hbcu-columns .col{
  width: 3%;
  background: linear-gradient(180deg, var(--gold), transparent 80%);
}

/* =========== EDUCATION SECTION =========== */
.chapter--education{
  background: radial-gradient(ellipse at 20% 20%, rgba(176,0,32,.1), transparent 50%), var(--black);
}
.education-words{
  position:absolute; inset:0;
  display:flex;
  flex-wrap:wrap;
  align-content:space-around;
  justify-content:space-around;
  z-index:0;
  pointer-events:none;
}
.education-words span{
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5rem);
  color: rgba(212,175,55,.05);
  white-space:nowrap;
}
.education-grid{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items:center;
}
.education-portrait{ margin:0; }
.education-portrait img{
  border-radius: 10px;
  border: 1px solid rgba(176,0,32,.35);
}
.education-portrait figcaption{
  margin-top:.6rem; font-size:.85rem; color: var(--gold-2); font-weight:600; text-align:center;
}
.education-portrait figcaption span{ display:block; font-size:.7rem; color:var(--concrete); font-weight:400; margin-top:.15rem; }
@media (max-width: 800px){
  .education-grid{ grid-template-columns:1fr; }
  .education-portrait{ max-width:220px; margin: 0 auto; }
}

/* =========== INTERDEPENDENCE SECTION =========== */
.chapter--interdependence{
  background: linear-gradient(180deg, #0d0d0d 0%, var(--black) 100%);
}
.network-map{
  position:relative;
  height: 60vh;
  min-height: 380px;
  margin: 3rem 0;
}
.network-map svg{ width:100%; height:100%; }
.network-labels span{
  position:absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%,-50%);
  font-size: .8rem;
  letter-spacing:.05em;
  color: var(--ivory);
  background: rgba(17,17,17,.7);
  border: 1px solid rgba(212,175,55,.3);
  padding: .35rem .75rem;
  border-radius: 999px;
  white-space:nowrap;
}
.network-labels-center{
  font-family: var(--font-display);
  font-size: 1rem !important;
  color: var(--gold-2) !important;
  border-color: var(--gold) !important;
  background: rgba(212,175,55,.1) !important;
}
.interdependence-quotes{
  display:grid;
  gap: 1rem;
}

/* =========== PLATFORM SECTION =========== */
.chapter--platform{ background: var(--charcoal); }
.split-screen{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2.5rem;
  border-radius: 14px;
  overflow:hidden;
}
.split-panel{
  padding: 2.5rem 2rem;
}
.split-panel h3{
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  letter-spacing: .05em;
}
.split-panel--noise{
  background: linear-gradient(160deg, #1c0508, #0a0a0a);
}
.split-panel--noise h3{ color: var(--ruby); }
.split-panel--clarity{
  background: linear-gradient(160deg, #1c1608, #0a0a0a);
}
.split-panel--clarity h3{ color: var(--gold-2); }
.noise-feed{
  display:flex; flex-wrap:wrap; gap:.5rem;
  margin-bottom: 1.5rem;
}
.noise-chip{
  font-size: .72rem;
  background: rgba(176,0,32,.15);
  border: 1px solid rgba(176,0,32,.4);
  padding: .35rem .65rem;
  border-radius: 999px;
  color: rgba(247,241,227,.75);
  animation: chipDrift 6s ease-in-out infinite;
}
.noise-chip:nth-child(even){ animation-delay: 1.2s; }
@keyframes chipDrift{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce){ .noise-chip{ animation:none; } }
.clarity-list{
  list-style:none;
  margin:0 0 1.5rem;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: .85rem;
}
.clarity-list li{
  display:flex; align-items:center; gap: .75rem;
  font-size: .95rem;
  color: rgba(247,241,227,.9);
}
.clarity-list i{ color: var(--gold-2); width: 20px; text-align:center; }
.pullquote--medium{ margin: 1.5rem 0 0; }
@media (max-width: 800px){
  .split-screen{ grid-template-columns:1fr; }
}

/* =========== VISION SECTION =========== */
.chapter--vision{ background: linear-gradient(180deg, var(--black), #0c0c0c); }
.vision-path{
  position:relative;
  padding: 2rem 0 3rem;
  width: min(92%, var(--container-w));
  margin: 0 auto;
}
.vision-path-line{
  position:relative;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow:hidden;
}
.vision-path-fill{
  position:absolute; top:0; left:0; height:100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ruby), var(--gold-2));
  transition: width .2s linear;
}
.vision-stops{
  list-style:none;
  margin:0; padding:0;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 1rem;
}
.vision-stop{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
  flex:1;
  min-width: 90px;
  opacity: .4;
  transition: opacity .4s var(--ease);
}
.vision-stop.active{ opacity:1; }
.vision-stop-dot{
  width: 12px; height:12px;
  border-radius:50%;
  background: var(--charcoal-2);
  border: 2px solid var(--concrete);
  transition: all .4s var(--ease);
}
.vision-stop.active .vision-stop-dot{
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 0 16px rgba(245,197,66,.7);
}
.vision-stop-word{
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing:.05em;
  text-align:center;
}
.vision-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 800px){
  .vision-grid{ grid-template-columns: 1fr; }
}

/* =========== RISING SECTION =========== */
.chapter--rising{
  background: linear-gradient(180deg, var(--black) 0%, #140700 55%, #2b1200 100%);
  padding-bottom: 9rem;
}
.rising-glow{
  position:absolute;
  bottom:-10%; left:50%;
  transform: translateX(-50%);
  width: 120vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(245,197,66,.22), transparent 70%);
  z-index:0;
}
.rising-skyline{
  position:absolute; bottom:0; left:0; right:0; height: 18vh;
  background: repeating-linear-gradient(90deg, rgba(0,0,0,.6) 0 40px, transparent 40px 70px);
  mask-image: linear-gradient(180deg, transparent, black 60%);
  opacity:.5;
  z-index:0;
}
.chapter--rising .container{ position:relative; z-index:1; }
.chapter-title--rising{
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  line-height: .98;
}
.rising-word{ display:inline-block; color: var(--concrete); }
.rising-word--fade{ opacity:.55; }
.rising-word--gold{ color: var(--gold-2); }
.rising-word--gold-strong{
  background: linear-gradient(90deg, var(--gold-2), #fff2c9);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-shadow: 0 0 40px rgba(245,197,66,.4);
}

/* =========== ABOUT SECTION =========== */
.chapter--about{ background: var(--charcoal); text-align:center; }
.chapter--about .lead-text{ margin-left:auto; margin-right:auto; }
.about-pillars{
  display:flex;
  justify-content:center;
  gap: 2.5rem;
  flex-wrap:wrap;
  margin: 2rem 0;
}
.pillar{
  display:flex; flex-direction:column; align-items:center; gap:.6rem;
  font-size:.85rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color: var(--gold-2);
}
.pillar i{ font-size: 1.6rem; }
.about-tagline{
  font-family: var(--font-display);
  letter-spacing: .15em;
  color: var(--ruby);
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

/* =========== HOSTS SECTION =========== */
.chapter--hosts{ background: var(--black); }
.hosts-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.host-card{
  background: linear-gradient(160deg, #141414, #0a0a0a);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 16px;
  overflow:hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.host-card:hover{
  border-color: rgba(212,175,55,.5);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.host-card-media{
  aspect-ratio: 4/5;
  overflow:hidden;
}
.host-card-media img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s var(--ease);
}
.host-card:hover .host-card-media img{ transform: scale(1.08); }
.host-card-body{ padding: 1.5rem; }
.host-card-body h3{
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 .3rem;
  letter-spacing:.02em;
}
.host-title{
  font-size: .78rem;
  color: var(--gold-2);
  text-transform:uppercase;
  letter-spacing:.05em;
  margin: 0 0 .9rem;
}
.host-desc{
  font-size: .9rem;
  color: rgba(247,241,227,.75);
  margin: 0 0 1rem;
}
.host-quote{
  margin:0;
  padding-left: .9rem;
  border-left: 2px solid var(--ruby);
  font-size: .85rem;
  font-style: italic;
  color: var(--ivory);
}

/* =========== ARTICLE DOWNLOAD SECTION =========== */
.chapter--article{ background: linear-gradient(180deg, var(--black), #100303); }

/* =========== CTA SECTION =========== */
.chapter--cta{
  background: linear-gradient(180deg, #100303, var(--black));
  text-align:center;
}
.cta-bg{
  position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 30%, rgba(176,0,32,.18), transparent 60%);
}
.chapter--cta .container{ position:relative; z-index:1; }
.cta-logo{ width: 90px; margin: 0 auto 1.5rem; opacity:.9; }
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 1rem;
  margin-top: 2rem;
}

/* =========== FOOTER =========== */
.site-footer{
  background: var(--black);
  border-top: 1px solid rgba(212,175,55,.15);
  padding: 3rem 0;
  text-align:center;
}
.footer-logo{ width: 60px; margin: 0 auto 1rem; opacity:.8; }
.site-footer p{
  font-size: .85rem;
  color: var(--concrete);
  margin: .3rem 0;
}
.footer-fine{ font-size: .72rem; opacity:.7; max-width: 700px; margin: .75rem auto 0; }

/* =========== BACK TO TOP ============ */
.back-to-top{
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 46px; height:46px;
  border-radius:50%;
  background: var(--charcoal);
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold-2);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  z-index: 900;
  opacity:0;
  pointer-events:none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.back-to-top.visible{ opacity:1; pointer-events:auto; }
.back-to-top:hover{ transform: translateY(-3px); }

/* =========== MAGNETIC BUTTON base handled via JS transform =========== */
.magnetic-btn{ will-change: transform; }

/* =========== Responsive tweaks =========== */
@media (max-width: 600px){
  .chapter{ padding: 4.5rem 0; }
  .hero{ padding-top: 6rem; }
  .about-pillars{ gap: 1.5rem; }
}
