/* ============================================================
   TEDxUNILAG 2.0 — CAN'T HOLD US
   Editorial brutalism · manifesto aesthetic
   ============================================================ */

/* ---- Satoshi · body & UI ---- */
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("assets/fonts/Satoshi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fbf7ee;
  --paper-2: #f0e8d7;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --ink-soft: #555;
  --ink-mute: #999;
  --red: #e8202a;
  --red-deep: #c11820;

  --sans: "Satoshi", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  --display: "Anton", "Bebas Neue", Impact, sans-serif;

  /* Fluid type scale — xl tuned for hero; l/m/s restored to full V1 scale */
  --t-display-xl: clamp(54px, 8.4vw, 132px);
  --t-display-l:  clamp(48px, 9vw, 140px);
  --t-display-m:  clamp(36px, 6vw, 88px);
  --t-display-s:  clamp(28px, 4vw, 56px);
  --t-body:       clamp(15px, 1.2vw, 19px);
  --t-mono:       clamp(11px, 0.85vw, 13px);

  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: auto; } /* JS handles scroll */

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Halftone texture utility — used sparingly */
.halftone {
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1.4px);
  background-size: 6px 6px;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.preloader.done {
  pointer-events: none;
}
.preloader__line {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(48px, 10vw, 140px);
  line-height: 0.92;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  letter-spacing: 0.005em;
  padding: 0 5vw;
}
.preloader__line.is-final { color: var(--red); }
.preloader__progress {
  position: absolute;
  bottom: 6vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.preloader__progress span {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  transition: background 0.18s ease;
}
.preloader__progress span.active { background: var(--paper); }
.preloader__progress span.final  { background: var(--red); }
.preloader__caption {
  position: absolute;
  bottom: 3vh; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* ============================================================
   TOP NAV — Style C (numbered acts)
   ============================================================ */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px var(--pad);
  background: transparent;
  color: var(--paper);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.topnav.is-light {
  background: var(--paper);
  color: var(--ink);
  border-bottom-color: rgba(0,0,0,0.08);
}
.topnav.is-dark {
  background: var(--ink);
  color: var(--paper);
}
.topnav__brand {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: inherit;
  text-decoration: none;
}
.topnav__brand .red { color: var(--red); }
.topnav__acts {
  display: flex;
  gap: clamp(8px, 1.4vw, 22px);
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topnav__act {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  opacity: 0.55;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease, color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.topnav__act:hover { opacity: 1; }
.topnav__act.is-current {
  opacity: 1;
}
.topnav__act .num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}
.topnav__act.is-current .num { color: var(--red); }
.topnav__act.is-current::before {
  content: "●";
  color: var(--red);
  margin-right: 2px;
  font-size: 9px;
}
.topnav__cta {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--paper);
  padding: 9px 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.topnav__cta:hover { transform: translateY(-1px); background: var(--red-deep); }
.topnav__mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: inherit;
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 920px) {
  .topnav__acts { display: none; }
  .topnav__mobile-toggle { display: inline-block; }
}

/* ============================================================
   ACT 02 — HERO (V1 type-only manifesto)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(128px, 16vh, 180px) var(--pad) clamp(72px, 9vh, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: var(--t-mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: clamp(16px, 2.4vh, 28px);
  opacity: 0;
  transform: translateY(12px);
}
.hero__line {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: var(--t-display-xl);
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--paper);
  max-width: 18ch;
}
.hero__line .dim { color: rgba(255,255,255,0.45); }
.hero__line .strike { text-decoration: line-through wavy var(--red); text-decoration-thickness: 0.05em; text-underline-offset: 0.1em; }
.hero__line-2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: var(--t-display-m);
  line-height: 0.95;
  margin-top: clamp(16px, 3vh, 36px);
  color: rgba(255,255,255,0.85);
}
.hero__line-2 .red { color: var(--red); }
.hero__reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(.2,.7,.2,1);
}
.hero__reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.hero__eyebrow.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.hero__line .word { display: inline-block; }

.hero__meta {
  margin-top: 0;
  margin-bottom: clamp(20px, 4vh, 56px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--mono);
  font-size: var(--t-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
  z-index: 2;
}
.hero__meta .scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
}
.hero__meta .scroll-hint span:first-child {
  font-family: var(--mono);
  display: inline-block;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: translateY(0); opacity: 0.6;}
  50% { transform: translateY(4px); opacity: 1;}
}

/* faint halftone in upper-right of hero */
.hero::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1.4px);
  background-size: 8px 8px;
  pointer-events: none;
  opacity: 0.5;
}

/* ============================================================
   ACT 03 — AGITATION (V2 — stacked voices reveal · ACTIVE)
   V1 horizontal scroll is commented out below
   ============================================================ */
.agitation {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

/* ---- V1 horizontal-scroll styles (commented out) ----
.agitation__pin { height: 100vh; position: sticky; top: 0; display: grid; grid-template-rows: auto 1fr auto auto; padding: 18vh var(--pad) 4vh; gap: 0; overflow: hidden; }
.agitation { min-height: calc(100vh * 5); }
.agitation__header { max-width: 720px; }
.agitation__track { display: flex; gap: clamp(20px, 2.4vw, 40px); align-items: center; will-change: transform; padding-top: 4vh; }
.vcard { flex: 0 0 clamp(280px, 32vw, 460px); height: clamp(360px, 50vh, 520px); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.2); padding: clamp(20px, 2.4vw, 34px); position: relative; display: flex; flex-direction: column; justify-content: space-between; transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease; }
.vcard.is-focus { background: rgba(232,32,42,0.05); border-color: var(--red); transform: translateY(-8px); }
.vcard.vcard--you { background: var(--red); border-color: var(--red); color: var(--paper); }
.vcard.vcard--end { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.agitation__progress-track { height: 2px; background: rgba(255,255,255,0.14); position: relative; }
.agitation__progress-fill { position: absolute; inset: 0 auto 0 0; background: var(--red); width: 0%; transition: width 0.18s linear; }
.agitation__progress-labels { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
@media (max-width: 760px) {
  .agitation { min-height: 0; }
  .agitation__pin { height: auto; position: static; padding: 12vh var(--pad) 4vh; }
  .agitation__track { flex-direction: column; align-items: stretch; gap: 14px; padding-top: 24px; transform: none !important; }
  .vcard { flex: 0 0 auto; height: auto; min-height: 240px; }
}
---- end V1 horizontal-scroll styles ---- */

/* ---- V2 stacked voices layout (active) ---- */
.agitation__inner {
  min-height: 100vh;
  padding: 15vh var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.agitation__left {
  position: sticky;
  top: 14vh;
}
@media (max-width: 760px) {
  .agitation__inner { grid-template-columns: 1fr; gap: 32px; padding-top: 12vh; }
  .agitation__left { position: relative; top: 0; }
}

.agitation__eyebrow {
  font-family: var(--mono);
  font-size: var(--t-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.agitation__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: var(--t-display-l);
  line-height: 0.9;
  margin: 0;
  letter-spacing: -0.005em;
}
.agitation__title .red { color: var(--red); }
.agitation__lede {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.5;
  margin-top: 28px;
  max-width: 38ch;
  color: rgba(255,255,255,0.8);
}
.agitation__progress {
  margin-top: 28px;
  display: flex;
  gap: 6px;
}
.agitation__progress span {
  width: 32px; height: 2px;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s ease;
}
.agitation__progress span.active { background: var(--paper); }
.agitation__progress span.final-on { background: var(--red); }

.agitation__voices {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voice {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 18px;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.4s ease;
}
.voice.is-on { opacity: 1; transform: translateY(0); }
.voice__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.voice__quote {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 0.95;
  margin: 0;
  color: var(--paper);
}
.voice__caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  text-transform: lowercase;
}
.voice.is-you {
  background: var(--red);
  border-top-color: var(--red);
  padding: 18px 22px;
}
.voice.is-you .voice__num { color: var(--paper); }
.voice.is-you .voice__caption { color: rgba(255,255,255,0.85); }
.agitation__tag {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.agitation__tag .text {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(20px, 2.8vw, 40px);
  color: var(--paper);
  position: relative;
  white-space: nowrap;
  flex: 1;
  text-align: center;
  overflow: hidden;
}
.agitation__tag .text .red { color: var(--red); }
.agitation__tag .text.misreg::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(232,32,42,0.5);
  transform: translate(-4px, 5px);
  z-index: 0;
  white-space: nowrap;
}
.agitation__tag .text.misreg > * { position: relative; z-index: 1; }
.agitation__tag .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 760px) {
  .agitation__inner { grid-template-columns: 1fr; gap: 32px; }
  .agitation__left { position: relative; top: 0; }
}

/* ============================================================
   ACT 04A — SPEAKERS (V1 grid 2×2 with hover reveals)
   ============================================================ */
.speakers {
  background: var(--paper);
  color: var(--ink);
  padding: 14vh var(--pad);
}
.speakers__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 18px;
  margin-bottom: 32px;
  gap: 32px;
}
.speakers__eyebrow {
  font-family: var(--mono);
  font-size: var(--t-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.speakers__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: var(--t-display-l);
  line-height: 0.92;
  margin: 8px 0 0;
  letter-spacing: -0.005em;
}
.speakers__title .red { color: var(--red); }
.speakers__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
  white-space: nowrap;
  text-align: right;
}

/* ============================================================
   ACT 04 — SPEAKERS (V4 editorial spread)
   ============================================================ */
.speakers--editorial {
  padding: 12vh var(--pad) 14vh;
}
.speakers__see-all {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  padding: 12px 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  align-self: flex-end;
}
.speakers__see-all:hover { background: var(--ink); color: var(--paper); }

.ed-feature {
  margin-top: clamp(28px, 6vh, 64px);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding-top: clamp(24px, 4vh, 40px);
  border-top: 2px solid var(--ink);
}
.ed-feature__byline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ed-feature__story {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.ed-feature__story .red { color: var(--red); }
.ed-feature__body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink-2);
  margin: clamp(18px, 2.4vh, 28px) 0 0;
  max-width: 52ch;
}
.ed-feature__pull {
  margin: clamp(24px, 3vh, 36px) 0 0;
  padding: 22px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--sans);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 500;
}
.ed-feature__pull::before {
  content: "“";
  color: var(--red);
  font-size: 1.4em;
  line-height: 0;
  margin-right: 4px;
  vertical-align: -0.18em;
}
.ed-feature__pull::after {
  content: "”";
  color: var(--red);
  font-size: 1.4em;
  line-height: 0;
  margin-left: 2px;
  vertical-align: -0.18em;
}
.ed-feature__pull cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 12px;
}
.ed-feature__more {
  display: inline-block;
  margin-top: clamp(20px, 2.4vh, 30px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
  transition: color 0.15s ease;
}
.ed-feature__more:hover { color: var(--red); }

.ed-feature__media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ed-feature__main-img {
  margin: 0;
  border: 1.5px solid var(--ink);
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.ed-feature__main-img img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 0.85;
  object-fit: cover;
}
.ed-feature__main-img figcaption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 12px;
  background: var(--paper);
  border-top: 1px solid var(--ink);
}
/* Thumbnail strip — scrollable, replaces fixed 3-col grid */
.ed-thumbs-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ed-thumbs-strip::-webkit-scrollbar { display: none; }
.ed-thumb {
  flex: 0 0 calc(33.33% - 7px);
  aspect-ratio: 1;
  position: relative;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  background: var(--paper-2);
  scroll-snap-align: start;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.ed-thumb:hover { transform: translateY(-2px); }
.ed-thumb.is-active {
  border-color: var(--red);
  border-width: 2px;
  cursor: default;
}
.ed-thumb img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.5);
  transition: filter 0.2s ease, transform 0.4s ease;
}
.ed-thumb.is-active img { filter: grayscale(0); }
.ed-thumb:not(.is-active):hover img { filter: grayscale(0); transform: scale(1.04); }
.ed-thumb__num {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--paper);
  background: var(--ink);
  padding: 2px 6px;
}
.ed-thumb.is-active .ed-thumb__num { background: var(--red); }

/* Featured swap transition */
.ed-feature__copy,
.ed-feature__main-img { transition: opacity 0.18s ease; }
.ed-feature.is-switching .ed-feature__copy,
.ed-feature.is-switching .ed-feature__main-img { opacity: 0; }

/* Quote strip — horizontal scroll showing all speakers */
.ed-strip {
  margin-top: clamp(36px, 6vh, 64px);
  border-top: 2px solid var(--ink);
  padding-top: clamp(24px, 4vh, 40px);
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ed-strip::-webkit-scrollbar { display: none; }
.ed-strip__item {
  flex: 0 0 clamp(220px, 26vw, 360px);
  scroll-snap-align: start;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.ed-strip__item:hover { opacity: 0.75; }
.ed-strip__item.is-active {
  border-top-color: var(--red);
  border-top-width: 2px;
  cursor: default;
  pointer-events: none;
}
.ed-strip__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.ed-strip__quote {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.05;
  margin: 8px 0 14px;
  color: var(--ink);
}
.ed-strip__quote .red { color: var(--red); }
.ed-strip__more {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  transition: color 0.15s ease;
}
.ed-strip__more:hover { color: var(--red); }

@media (max-width: 920px) {
  .ed-feature { grid-template-columns: 1fr; }
  .ed-feature__media { order: -1; }
  .ed-thumb { flex: 0 0 calc(50% - 5px); }
  .ed-strip__item { flex: 0 0 clamp(220px, 72vw, 340px); }
}

.speakers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 22px);
}
@media (max-width: 760px) {
  .speakers__grid { grid-template-columns: 1fr; }
}

.speaker {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  position: relative;
  cursor: pointer;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1), opacity 0.7s ease;
  overflow: hidden;
}
.speaker.is-in { transform: scale(1); opacity: 1; }
.speaker:hover, .speaker:focus-within {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--red);
}
.speaker__img {
  position: relative;
  aspect-ratio: 1.55;
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.45) 0 1px, transparent 1px 9px);
  border-bottom: 1.5px solid var(--ink);
  transition: filter 0.4s ease;
}
.speaker:hover .speaker__img {
  background-color: var(--ink);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 9px);
  border-bottom-color: var(--red);
}
.speaker__img-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(251,247,238,0.92);
  color: var(--ink);
  padding: 4px 8px;
  border: 1px solid var(--ink);
  width: max-content;
  height: max-content;
  margin: auto;
}
.speaker:hover .speaker__img-label {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--paper);
}
.speaker__body { padding: 22px 22px 24px; position: relative; min-height: 180px;}
.speaker__story,
.speaker__profile {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.02;
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.speaker__profile {
  position: absolute;
  inset: 22px 22px 24px;
  opacity: 0;
  transform: translateY(6px);
}
.speaker:hover .speaker__story,
.speaker:focus-within .speaker__story {
  opacity: 0;
  transform: translateY(-6px);
}
.speaker:hover .speaker__profile,
.speaker:focus-within .speaker__profile {
  opacity: 1;
  transform: translateY(0);
}
.speaker__profile-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 14px;
}
.speaker__profile-bio {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  text-transform: none;
  font-weight: normal;
}
.speaker__footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.speaker__footer .hint { color: var(--red); }
.speaker:hover .speaker__footer,
.speaker:focus-within .speaker__footer,
.speaker.is-tapped .speaker__footer { opacity: 0; }

/* ============================================================
   ACT 04B — CONFESSIONS (stacked on dark)
   ============================================================ */
.confessions {
  background: var(--ink);
  color: var(--paper);
  padding: 14vh var(--pad);
  position: relative;
  overflow: hidden;
}
.confessions::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 280px;
  background-image: radial-gradient(rgba(232,32,42,0.32) 1px, transparent 1.4px);
  background-size: 6px 6px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.confessions__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 42px;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 18px;
  position: relative;
}
.confessions__eyebrow {
  font-family: var(--mono);
  font-size: var(--t-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.confessions__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: var(--t-display-l);
  line-height: 0.9;
  margin: 8px 0 0;
  letter-spacing: -0.005em;
  max-width: 18ch;
}
.confessions__title .red { color: var(--red); }
.confessions__cta-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.confessions__count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: right;
}
.confessions__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  position: relative;
}
.confession {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 18px 22px 20px;
  font-family: var(--mono);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
  position: relative;
  box-shadow: 5px 5px 0 var(--paper);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.confession.is-in { opacity: 1; transform: translateY(0); }
.confession.red {
  background: var(--red);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--paper);
}
.confession__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0.6;
}
.confession.red .confession__meta { color: rgba(255,255,255,0.85); opacity: 0.95; }
.confession:nth-child(1) { grid-column: span 5; transform: translateY(18px) rotate(-0.6deg); }
.confession:nth-child(2) { grid-column: span 4; transform: translateY(18px) rotate(0.5deg); }
.confession:nth-child(3) { grid-column: span 3; transform: translateY(18px) rotate(-0.3deg); }
.confession:nth-child(4) { grid-column: span 4; transform: translateY(18px) rotate(0.4deg); }
.confession:nth-child(5) { grid-column: span 4; transform: translateY(18px) rotate(-0.7deg); }
.confession:nth-child(6) { grid-column: span 4; transform: translateY(18px) rotate(0.3deg); }
.confession.is-in:nth-child(1) { transform: translateY(0) rotate(-0.6deg); }
.confession.is-in:nth-child(2) { transform: translateY(0) rotate(0.5deg); }
.confession.is-in:nth-child(3) { transform: translateY(0) rotate(-0.3deg); }
.confession.is-in:nth-child(4) { transform: translateY(0) rotate(0.4deg); }
.confession.is-in:nth-child(5) { transform: translateY(0) rotate(-0.7deg); }
.confession.is-in:nth-child(6) { transform: translateY(0) rotate(0.3deg); }

@media (max-width: 920px) {
  .confessions__head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .confessions__cta-area { align-items: flex-start; }
}

/* Tablet 641–920px: sticky stacking scroll effect */
@media (min-width: 641px) and (max-width: 920px) {
  .confessions__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 6vh;
  }
  .confession {
    grid-column: auto !important;
    position: sticky;
    top: 64px;
    margin-bottom: 72px;
    transform: none !important;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.35);
  }
  .confession:last-child { margin-bottom: 0; }
  .confession.is-in { transform: none !important; }
  .confession.is-in:nth-child(n) { transform: none !important; }
  .confession:nth-child(1) { z-index: 1; }
  .confession:nth-child(2) { z-index: 2; }
  .confession:nth-child(3) { z-index: 3; }
  .confession:nth-child(4) { z-index: 4; }
  .confession:nth-child(5) { z-index: 5; }
  .confession:nth-child(6) { z-index: 6; }
}

/* Mobile ≤640px: clean vertical stack, no sticky gaps */
@media (max-width: 640px) {
  .confessions__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 4vh;
  }
  .confession {
    grid-column: auto !important;
    position: static;
    top: auto;
    margin-bottom: 0;
    transform: none !important;
    box-shadow: 5px 5px 0 var(--paper);
  }
  .confession.red { box-shadow: 5px 5px 0 var(--ink); }
  .confession.is-in { transform: none !important; }
  .confession.is-in:nth-child(n) { transform: none !important; }
  .confessions__more-link { text-align: left; }
}

/* See-all link — lives inside .confessions__cta-area */
.confessions__more-link {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  text-align: right;
}
.confessions__more-link:hover { color: var(--paper); }

/* ============================================================
   ACT 05 — RESOLUTION (V2 split high-contrast)
   ============================================================ */
.resolution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.resolution__left {
  background: var(--paper);
  color: var(--ink);
  padding: 12vh var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}
.resolution__right {
  background: var(--red);
  color: var(--paper);
  padding: 12vh var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  gap: 36px;
}
.resolution__right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.18) 1px, transparent 1.4px);
  background-size: 7px 7px;
  opacity: 0.6;
  pointer-events: none;
}
.resolution__eyebrow {
  font-family: var(--mono);
  font-size: var(--t-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}
.resolution__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.92;
  margin: 12px 0 0;
  letter-spacing: -0.005em;
}
.resolution__title .red { color: var(--red); }
.resolution__right .resolution__title { color: var(--paper); }
.resolution__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}
.resolution__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
}
.resolution__row .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.resolution__row .val {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.05;
  text-align: right;
  flex: 1;
  min-width: 0;
}

.resolution__action {
  position: relative;
  z-index: 1;
}
.resolution__cta-row {
  position: relative;
  z-index: 1;
}
.resolution__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 22px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.resolution__cta:hover { transform: translateY(-2px); }
.resolution__cta .arrow { font-family: var(--display); font-size: 22px; }
.resolution__cta-meta {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.85);
}
.resolution__small-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  width: max-content;
}

@media (max-width: 760px) {
  .resolution { grid-template-columns: 1fr; }
}

/* --- Tier breakdown (full-width row inside .resolution) --- */
.resolution__tiers {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #111;
  border-top: 3px solid var(--red);
}
.tier-card {
  padding: clamp(28px, 3.5vw, 52px);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.tier-card.is-in { opacity: 1; transform: translateY(0); }
.tier-card:last-child { border-right: none; }
.tier-card--sold { opacity: 0.38 !important; }
.tier-card--sold.is-in { opacity: 0.38 !important; }
.tier-card__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tier-card__badge {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 2px 6px;
}
.tier-card__price {
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 48px);
  color: var(--paper);
  line-height: 1;
}
.tier-card--luminary .tier-card__price { color: var(--red); }
.tier-card__desc {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.42);
  flex: 1;
  margin: 0;
}
.tier-card__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: 6px;
}
.tier-card__cta:hover { opacity: 0.6; }
@media (max-width: 760px) {
  .resolution__tiers { grid-template-columns: 1fr; }
  .tier-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .tier-card:last-child { border-bottom: none; }
}

/* ============================================================
   ACT 06 — FAQ
   ============================================================ */
.faq {
  background: var(--paper);
  color: var(--ink);
  padding: 14vh var(--pad);
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.faq__eyebrow {
  font-family: var(--mono);
  font-size: var(--t-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.faq__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: var(--t-display-l);
  line-height: 0.9;
  margin: 12px 0 0;
  letter-spacing: -0.005em;
}
.faq__title .red { color: var(--red); }
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1.5px solid var(--ink);
}
.faq__item {
  border-bottom: 1.5px solid var(--ink);
  padding: 22px 0;
}
.faq__item[open] .faq__sign { color: var(--red); transform: rotate(45deg); }
.faq__summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__q {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.02;
}
.faq__sign {
  font-family: var(--display);
  font-size: clamp(28px, 2.4vw, 36px);
  color: var(--ink-soft);
  transition: transform 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.faq__a {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.55;
  margin: 14px 0 0;
  color: var(--ink-2);
  max-width: 60ch;
}
@media (max-width: 760px) {
  .faq__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER — the last word
   ============================================================ */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 14vh var(--pad) 4vh;
  position: relative;
  overflow: hidden;
}
.foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232,32,42,0.18) 1px, transparent 1.4px);
  background-size: 7px 7px;
  opacity: 0.4;
  pointer-events: none;
}
.foot__tag {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(64px, 11.5vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 18ch;
}
.foot__tag .red { color: var(--red); }
.foot__tag.misreg::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--red);
  transform: translate(-5px, 6px);
  z-index: 0;
}
.foot__tag.misreg > * { position: relative; z-index: 1; }
.foot__cols {
  position: relative;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  z-index: 1;
}
.foot__col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 12px;
  font-weight: 500;
}
.foot__event {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  margin: 0;
}
.foot__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 13px;
}
.foot__links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
.foot__links a:hover { color: var(--red); }
.foot__links a.red { color: var(--red); }
.foot__legal {
  position: relative;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 18px;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  z-index: 1;
}
@media (max-width: 760px) {
  .foot__cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   STICKY CTA — appears after Act 3
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--paper);
  border-top: 2px solid var(--red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px var(--pad);
  z-index: 150;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
  gap: 16px;
}
.sticky-cta.is-on { transform: translateY(0); }
.sticky-cta__text {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1;
}
.sticky-cta__text .red { color: var(--red); }
.sticky-cta__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sticky-cta__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.sticky-cta__btn {
  background: var(--red);
  color: var(--paper);
  border: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s ease;
}
.sticky-cta__btn:hover { background: var(--red-deep); }
.sticky-cta__close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 6px;
}
.sticky-cta__close:hover { color: var(--paper); }
@media (max-width: 600px) {
  .sticky-cta { padding: 10px 14px; gap: 8px; }
  .sticky-cta__meta { display: none; }
  .sticky-cta__text { font-size: 13px; line-height: 1.15; }
  .sticky-cta__text-full { display: none; }
  .sticky-cta__btn-arrow { display: none; }
  .sticky-cta__btn {
    font-size: 10px;
    padding: 8px 14px;
    white-space: nowrap;
    letter-spacing: 0.12em;
  }
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 220;
  padding: 18px var(--pad);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
}
.mobile-menu__items {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-menu__items a {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(34px, 10vw, 44px);
  line-height: 0.95;
  color: var(--paper);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.mobile-menu__items a .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.14em;
}
.mobile-menu__cta {
  background: var(--red);
  color: var(--paper);
  border: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 36px;
}

/* small reveal helper */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   TEDxUNILAG 2.0 — MOTION & BREATHING PASS
   Premium animation layer + looser typographic spacing
   ============================================================ */

/* ---- FILM GRAIN OVERLAY (PRD: "adds rawness") ----
   Viewport-sized + repeating tile — cheap to composite.
   Flicker is a stepped background-position shift, not a giant transform. */
.grain {
  position: fixed;
  inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 190px 190px;
  background-repeat: repeat;
  animation: grain 0.8s steps(1) infinite;
}
@keyframes grain {
  0%,100% { background-position: 0 0; }
  25% { background-position: -42px 38px; }
  50% { background-position: 48px -28px; }
  75% { background-position: -30px -46px; }
}

/* ---- CUSTOM CURSOR (desktop / fine-pointer only) ---- */
.cursor, .cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    width: 9px; height: 9px;
    background: var(--red);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width 0.22s ease, height 0.22s ease, background 0.22s ease, opacity 0.3s ease;
  }
  .cursor-ring {
    display: block;
    width: 38px; height: 38px;
    border: 1.5px solid rgba(232,32,42,0.55);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 99998;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: cursor-pulse 1.7s ease-in-out infinite;
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.3s ease;
  }
  @keyframes cursor-pulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1);    border-color: rgba(232,32,42,0.45); }
    50%      { transform: translate(-50%,-50%) scale(1.12); border-color: rgba(232,32,42,0.85); }
  }
  .cursor.is-hover { width: 0; height: 0; }
  .cursor-ring.is-hover {
    width: 58px; height: 58px;
    border-color: var(--red);
    background: rgba(232,32,42,0.10);
  }
  .cursor.is-down { width: 16px; height: 16px; }
  /* hide native cursor on interactive surfaces */
  body, a, button, summary, .speaker, [data-action] { cursor: none; }
}

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 99990;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ---- HERO · word-by-word cinematic reveal ----
   The H1 container stays visible; the words do the reveal. */
.hero__line.hero__reveal { opacity: 1; transform: none; }
.hero__line .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em) rotate(3deg);
  transition: opacity 0.55s ease, transform 0.75s cubic-bezier(.2,.8,.2,1);
}
.hero__line.words-in .word { opacity: 1; transform: translateY(0) rotate(0); }
.hero__line.words-in .word:nth-child(1) { transition-delay: 0.05s; }
.hero__line.words-in .word:nth-child(2) { transition-delay: 0.15s; }
.hero__line.words-in .word:nth-child(3) { transition-delay: 0.25s; }
.hero__line.words-in .word:nth-child(4) { transition-delay: 0.35s; }
.hero__line.words-in .word:nth-child(5) { transition-delay: 0.45s; }
.hero__line.words-in .word:nth-child(6) { transition-delay: 0.55s; }

/* ---- GSAP scrub helpers ---- */
.parallax { will-change: transform; }
[data-reveal-up] { will-change: transform, opacity; }

/* ---- MAGNETIC BUTTON wrapper ---- */
.topnav__cta, .resolution__cta, .sticky-cta__btn, .mobile-menu__cta {
  will-change: transform;
}

/* ---- BREATHING PASS · looser line-heights & rhythm ---- */
body { line-height: 1.65; }

.hero { padding-top: clamp(148px, 17vh, 210px); padding-bottom: 0; }
.hero__eyebrow { margin-top: auto; margin-bottom: 32px; }
.hero__line { line-height: 0.97; letter-spacing: 0.01em; }
.hero__line-2 { line-height: 1.02; margin-top: clamp(22px, 4vh, 44px); margin-bottom: auto; }

.agitation__inner { padding-top: 15vh; padding-bottom: 15vh; }
.agitation__title { line-height: 0.98; }
.agitation__lede { line-height: 1.7; margin-top: 32px; }
.voice { padding-top: 22px; }
.voice__quote { line-height: 1.08; }
.voice.is-you { padding: 22px 24px; }

.speakers { padding-top: 16vh; padding-bottom: 16vh; }
.speakers__title { line-height: 1; margin-top: 12px; }
.speaker { transform: scale(0.92); }
.speaker__body { padding: 26px 24px 28px; }
.speaker__story, .speaker__profile { line-height: 1.12; }

.confessions { padding-top: 16vh; padding-bottom: 16vh; }
.confessions__title { line-height: 0.98; }
.confession { padding: 22px 24px 24px; line-height: 1.6; }

.resolution__left, .resolution__right { padding-top: 14vh; padding-bottom: 14vh; }
.resolution__title { line-height: 1; }

.faq { padding-top: 15vh; padding-bottom: 15vh; }
.faq__title { line-height: 0.98; }
.faq__q { line-height: 1.12; }
.faq__a { line-height: 1.68; margin-top: 18px; }
.faq__item { padding: 26px 0; }

.foot__tag { line-height: 0.96; }

/* ============================================================
   TEDxUNILAG 2.0 — BRAND · NAV · FOOTER · HERO-BG · ICONS
   (sized SVGs, brand-ted styling, social icon rows)
   ============================================================ */

/* ---- BRAND · logo image in nav ---- */
.topnav__brand-img,
.mobile-menu__brand-img {
  display: block;
  height: clamp(40px, 4.2vw, 60px);
  width: auto;
  filter: none; /* logo files are designed for their natural bg */
  transition: filter 0.25s ease;
}
/* Homepage: logo-3 is white — invert to dark on light nav sections (speakers, faq etc) */
body:not([data-chrome-active]) .topnav.is-light .topnav__brand-img {
  filter: invert(1) hue-rotate(180deg);
}
/* Sub-pages mobile menu is dark ink — invert the dark logo-1 to white */
[data-chrome-active] .mobile-menu__brand-img {
  filter: invert(1) hue-rotate(180deg);
}
.topnav__brand { display: inline-flex; align-items: center; }
.mobile-menu__brand { display: inline-flex; align-items: center; }

/* ---- BRAND · TEDxUNILAG signature (Evente-style) ---- */
.brand-ted { color: var(--red); font-weight: 800; letter-spacing: -0.02em; }
.brand-ted .x { font-weight: 300; color: var(--red); display: inline-block; transform: translateY(-1px); }
.brand-unilag { font-weight: 800; letter-spacing: 0.005em; color: inherit; margin-left: 0; }
.brand-ver {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  border: 1px solid currentColor;
  border-radius: 2px;
  vertical-align: 3px;
  opacity: 0.8;
  font-weight: 500;
}

/* ---- ICONS · always sized so SVGs never blow up ---- */
.ic { width: 18px; height: 18px; display: block; }
.ic-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  color: inherit;
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.ic-link:hover {
  color: var(--red);
  border-color: rgba(232,32,42,0.45);
  transform: translateY(-1px);
}

/* ---- TOP NAV · larger, more modern ---- */
.topnav {
  padding: 16px var(--pad);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.topnav.is-scrolled {
  padding: 11px var(--pad);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.topnav__brand {
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.topnav__acts {
  display: flex;
  gap: clamp(14px, 2.2vw, 30px);
  align-items: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.topnav__act {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.65;
  position: relative;
  padding: 6px 2px;
}
.topnav__act .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.75;
}
.topnav__act .lbl {
  position: relative;
}
.topnav__act .lbl::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1.5px;
  background: var(--red);
  transition: right 0.3s cubic-bezier(.2,.7,.2,1);
}
.topnav__act:hover .lbl::after { right: 0; }
.topnav__act.is-current { opacity: 1; }
.topnav__act.is-current .lbl::after { right: 0; }
.topnav__act.is-current::before { display: none; } /* override old dot */
.topnav__act.is-current .num { color: var(--red); }

.topnav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topnav__social {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.topnav__cta {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--paper);
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  text-decoration: none;
  transition: background 0.2s ease;
}
.topnav__cta:hover { background: var(--red-deep); }
.topnav__cta-arrow {
  font-family: var(--display);
  font-size: 16px;
  transition: transform 0.25s ease;
}
.topnav__cta:hover .topnav__cta-arrow { transform: translateX(4px); }

/* mobile-toggle as 3-bar */
.topnav__mobile-toggle {
  display: none;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 0;
}
.topnav__mobile-toggle .mt-bar {
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
}

@media (max-width: 1100px) {
  .topnav__social { display: none; }
}
@media (max-width: 920px) {
  .topnav__acts { display: none; }
  .topnav__mobile-toggle { display: inline-flex; }
  .topnav__cta { padding: 9px 14px; font-size: 11px; }
}
@media (max-width: 520px) {
  .topnav__cta .topnav__cta-text { display: none; }
  .topnav__cta { padding: 9px 12px; }
}

/* ---- MOBILE MENU · brand at top, social before CTA ---- */
.mobile-menu {
  padding: 0;
}
.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu__brand {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.mobile-menu__close {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.4);
}
.mobile-menu__items {
  padding: 0 var(--pad);
  margin-top: clamp(24px, 5vh, 40px);
  margin-bottom: clamp(16px, 3vh, 24px);
  gap: clamp(14px, 3vh, 22px);
  display: flex;
  flex-direction: column;
}
.mobile-menu__social {
  display: flex;
  gap: 16px;
  padding: 0 var(--pad);
  margin-top: auto;
  margin-bottom: 22px;
}
.mobile-menu__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--paper);
  border-radius: 50%;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.mobile-menu__social a:hover {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}
.mobile-menu__cta {
  margin: 0 var(--pad) 24px;
}
.mobile-menu__items a.is-current { color: var(--red); }
.mobile-menu__items a.is-current .num { color: var(--red); }

/* ---- HERO · cinematic background image with heavy dark wash ---- */
.hero { position: relative; }
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  will-change: transform;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(50%) contrast(1.05) brightness(0.62);
  display: block;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 10%, rgba(232,32,42,0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.72) 50%, rgba(10,10,10,0.95) 100%);
}
.hero__eyebrow,
.hero__line,
.hero__line-2 { position: relative; z-index: 2; }
.hero::after { z-index: 1; } /* halftone behind text */

/* ---- ARROW CUES · clickable, 3D raised buttons ----
   The solid red box-shadow under the button = depth/plate.
   Hover lifts the button revealing the plate; active presses it down. */
.scroll-hint, .next-cue {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  pointer-events: auto; /* re-enable clicks (parent .hero__meta is none) */
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 0 0 rgba(232,32,42,0);
  transform: translateY(0);
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.25s cubic-bezier(.2,.7,.2,1),
              border-color 0.25s ease,
              color 0.25s ease,
              background 0.25s ease;
}
.scroll-hint:hover, .next-cue:hover {
  color: var(--paper);
  border-color: var(--red);
  background: rgba(232,32,42,0.08);
  transform: translateY(-4px);
  box-shadow: 0 6px 0 0 var(--red), 0 12px 22px -6px rgba(0,0,0,0.5);
}
.scroll-hint:active, .next-cue:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 0 0 var(--red), 0 4px 8px -2px rgba(0,0,0,0.4);
}
.scroll-hint__arrow, .next-cue__arrow {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  animation: cueBob 1.8s ease-in-out infinite;
  line-height: 1;
}
.scroll-hint:hover .scroll-hint__arrow,
.next-cue:hover .next-cue__arrow {
  animation-duration: 0.7s;
  color: var(--paper);
}
@keyframes cueBob {
  0%, 100% { transform: translateY(0);  opacity: 0.75; }
  50%      { transform: translateY(4px); opacity: 1; }
}
/* override the older .hero__meta .scroll-hint span:first-child animation */
.hero__meta .scroll-hint .scroll-hint__arrow {
  animation: cueBob 1.8s ease-in-out infinite;
}

/* ---- SPEAKER PORTRAITS · cinematic photo treatment ---- */
.speaker__img { overflow: hidden; }
.speaker__img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(0.55) contrast(1.05) brightness(0.88);
  transition: filter 0.45s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
  display: block;
}
.speaker:hover .speaker__img img,
.speaker:focus-within .speaker__img img,
.speaker.is-tapped .speaker__img img {
  filter: grayscale(0) contrast(1.08) brightness(0.96);
  transform: scale(1.05);
}
/* hide the halftone pattern when a real photo is present */
.speaker__img:has(img) {
  background-image: none;
}

/* ---- MARQUEE · cinematic transition strip ---- */
.marquee {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  animation: marquee-scroll 42s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1;
  flex-shrink: 0;
}
.marquee__item.red { color: var(--red); font-style: italic; }
.marquee__dot {
  color: var(--red);
  font-size: 9px;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- FOOTER · proper layout for icon row ---- */
.foot__social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.foot__social-row .ic-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--paper);
}
.foot__social-row .ic-link:hover {
  color: var(--red);
  border-color: var(--red);
  background: rgba(232,32,42,0.08);
}
.foot__handle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  text-transform: uppercase;
}
.foot__handle .red { color: var(--red); }

/* ============================================================
   TEDxUNILAG 2.0 — FEATURE PASS
   a11y · dividers · accordion · counters · act-pin
   ============================================================ */

/* ---- SKIP LINK ---- */
.skip-link {
  position: fixed;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 24px;
  z-index: 100000;
  text-decoration: none;
  transition: top 0.28s cubic-bezier(.2,.7,.2,1);
}
.skip-link:focus-visible { top: 14px; outline: 2px solid var(--paper); outline-offset: 2px; }

/* ---- KEYBOARD FOCUS RINGS ---- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.speaker:focus-visible,
[tabindex]:focus-visible {
  outline: 2.5px solid var(--red);
  outline-offset: 3px;
}
/* light sections need a contrasting ring */
.speakers a:focus-visible,
.faq summary:focus-visible,
.resolution__left a:focus-visible { outline-color: var(--ink); }

/* ---- SECTION DIVIDERS · red hairline at section tops ---- */
.speakers, .confessions, .resolution, .faq { position: relative; }
.speakers::before,
.confessions::before,
.resolution::before,
.faq::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(1);
  transform-origin: left;
  z-index: 3;
}

/* ---- HERO · blinking caret after last word ---- */
.hero__caret {
  display: inline-block;
  width: 0.5ch;
  height: 0.82em;
  margin-left: 0.06em;
  background: var(--red);
  vertical-align: -0.04em;
  animation: caretBlink 1.05s steps(1) infinite;
}
@keyframes caretBlink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

/* ---- FAQ · smooth height-animated accordion ---- */
.faq__a {
  margin-top: 0;
  padding-top: 16px;
  overflow: hidden;
  transition: height 0.42s cubic-bezier(.2,.7,.2,1), opacity 0.32s ease;
}

/* ---- STICKY CTA · glass ---- */
.sticky-cta {
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}
.sticky-cta__seats { color: var(--red); font-variant-numeric: tabular-nums; }

/* (Vertical act-pin indicator removed by request — was distracting against the hero.) */

/* ---- CONFESSIONS · subtle auto-highlight cycle ---- */
.confession {
  transition: opacity 0.6s ease, transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease;
}
.confession.is-spot {
  box-shadow: 9px 9px 0 var(--red);
  z-index: 2;
}

/* ---- ANIMATED COUNTER ---- */
.count-up { font-variant-numeric: tabular-nums; }

/* ---- COUNTDOWN TIMER ---- */
.countdown {
  display: flex;
  gap: clamp(8px, 1.4vw, 18px);
  align-items: flex-start;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown__val {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.88;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: center;
  letter-spacing: -0.02em;
}
.countdown__lbl {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.countdown__sep {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 0.88;
  color: rgba(255,255,255,0.3);
  align-self: flex-start;
  padding-top: 3px;
}

/* ---- URGENCY BAR ---- */
.urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
}
.urgency-bar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--paper);
  flex-shrink: 0;
  animation: urgency-pulse 1.9s ease-in-out infinite;
}
@keyframes urgency-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

/* ---- MARQUEE · reverse (right→left) ---- */
.marquee--r .marquee__track {
  animation-direction: reverse;
  animation-duration: 38s;
}

/* ---- FOOT TAG · single-word misreg (only "We didn't.") ---- */
.foot__tag-misreg {
  display: inline-block;
  position: relative;
}
.foot__tag-misreg::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: rgba(232,32,42,0.45);
  transform: translate(-5px, 7px);
  z-index: 0;
  white-space: nowrap;
}
.foot__tag-misreg > * { position: relative; z-index: 1; }

/* ---- CONFESSION IS-SPOT · subtle pulse ---- */
.confession.is-spot {
  animation: conf-lift 2.4s ease-in-out infinite;
}
@keyframes conf-lift {
  0%, 100% { box-shadow: 9px 9px 0 var(--red); }
  50%       { box-shadow: 11px 11px 0 var(--red), 0 4px 24px rgba(232,32,42,0.18); }
}

/* ---- MOBILE · scroll cue hidden in hero; labels hidden elsewhere ---- */
@media (max-width: 640px) {
  .hero__meta { margin-bottom: 5vh; }
  .hero__meta .scroll-hint { display: none; }
  .scroll-hint__label, .next-cue__label { display: none; }
  .scroll-hint, .next-cue { padding: 8px 12px; }
}

/* ---- MOBILE · NAV CTA short text ---- */
.topnav__cta-short { display: none; }
@media (max-width: 520px) {
  .topnav__cta .topnav__cta-text { display: none; }
  .topnav__cta-short {
    display: inline;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .topnav__cta { padding: 8px 12px; font-size: 10px; }
}

/* ---- MOBILE · footer 1-column on very small screens ---- */
@media (max-width: 480px) {
  .foot__cols { grid-template-columns: 1fr; }
  .foot__tag { font-size: clamp(52px, 14vw, 100px); }
}

/* ---- MOBILE · section breathing ---- */
@media (max-width: 640px) {
  .speakers, .confessions, .faq { padding-top: 10vh; padding-bottom: 10vh; }
  .speakers__head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .speakers__count { text-align: left; }
  .faq__item { padding: 18px 0; }
  .faq__q { font-size: clamp(20px, 5vw, 32px); }
}

/* ---- X/DIAMOND BRAND PATTERN · fixed overlay, visible on dark sections ---- */
.x-bg {
  position: fixed;
  inset: 0;
  z-index: 8999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cline x1='8' y1='8' x2='32' y2='32' stroke='white' stroke-width='1.4' stroke-linecap='round'/%3E%3Cline x1='32' y1='8' x2='8' y2='32' stroke='white' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  background-repeat: repeat;
  opacity: 0;
  transition: opacity 0.9s ease;
}

/* ---- COLOR JOURNEY · body background follows scroll scene ---- */
body { transition: background-color 0.8s ease; }

/* THEME REVEAL section styles deleted — section will be re-introduced once
   the new wireframe variant is chosen. */

/* Sticky CTA — responsive: hide the trailing sentence on mobile,
   drop the arrow on small screens, shrink the claim button. */
.sticky-cta__btn-arrow {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.sticky-cta__btn:hover .sticky-cta__btn-arrow { transform: translateX(3px); }

@media (max-width: 720px) {
  .sticky-cta {
    padding: 10px 14px;
    gap: 10px;
  }
  .sticky-cta__text {
    font-size: 13px;
    line-height: 1.05;
    flex: 1;
    min-width: 0;
  }
  .sticky-cta__text-full { display: none; }
  .sticky-cta__meta { display: none; }
  .sticky-cta__right { gap: 8px; flex-shrink: 0; }
  .sticky-cta__btn {
    padding: 9px 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }
  .sticky-cta__btn-arrow { display: none; }
  .sticky-cta__close { padding: 4px 4px; font-size: 13px; }
}

@media (max-width: 380px) {
  .sticky-cta__text { font-size: 12px; }
  .sticky-cta__btn { padding: 8px 12px; font-size: 10.5px; }
}

/* ============================================================
   CONFESSION MODAL · multi-step mock flow
   ============================================================ */
.cnf-modal {
  position: fixed;
  inset: 0;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vh, 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cnf-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.cnf-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}
.cnf-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--red);
  width: min(640px, 100%);
  max-height: calc(100svh - 80px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 12px 12px 0 var(--red);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), opacity 0.4s ease;
}
.cnf-modal.is-open .cnf-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.cnf-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
  z-index: 2;
}
.cnf-modal__close:hover {
  background: var(--red);
  border-color: var(--red);
}

.cnf-modal__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.cnf-modal__brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(3, 8px);
  gap: 2px;
  flex-shrink: 0;
}
.cnf-modal__brand-mark > span {
  background: var(--paper);
  display: block;
}
.cnf-modal__brand-mark .cnf-mark-red { background: var(--red); }
.cnf-modal__brand-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.cnf-modal__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
  color: var(--paper);
}
.cnf-modal__title--small { font-size: clamp(22px, 3vw, 34px); }
.cnf-modal__title .red { color: var(--red); }

.cnf-modal__lede {
  font-family: var(--sans);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: 0 0 22px;
  max-width: 52ch;
}
.cnf-modal__lede strong { color: var(--paper); font-weight: 600; }

.cnf-stage {
  display: none;
  animation: cnf-fade-in 0.4s ease both;
}
.cnf-stage.is-active { display: block; }
@keyframes cnf-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Form fields */
.cnf-form { display: flex; flex-direction: column; gap: 16px; }
.cnf-field { display: flex; flex-direction: column; gap: 6px; }
.cnf-field__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.cnf-field__label em {
  font-style: normal;
  opacity: 0.55;
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 11px;
}
.cnf-field__input {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.5;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  width: 100%;
}
.cnf-field__input:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.08);
}
.cnf-field__input::placeholder {
  color: rgba(255,255,255,0.35);
}
.cnf-field__input--ta {
  resize: vertical;
  min-height: 120px;
}
.cnf-field__hint {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.cnf-field__hint-left.is-warn { color: var(--red); }
.cnf-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cnf-field--inline .cnf-field__input { padding: 10px 12px; font-size: 14px; }
@media (max-width: 520px) {
  .cnf-field-row { grid-template-columns: 1fr; }
}

.cnf-rules {
  display: flex;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
  border-left: 2px solid var(--red);
  padding: 8px 12px;
}
.cnf-rules em {
  color: var(--paper);
  font-style: normal;
  font-weight: 600;
}

.cnf-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cnf-btn {
  flex: 1;
  min-width: 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 1.5px solid var(--paper);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.cnf-btn--ghost {
  flex: 0 0 auto;
  padding: 14px 22px;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}
.cnf-btn--ghost:hover {
  border-color: var(--paper);
  color: var(--paper);
}
.cnf-btn--primary {
  background: var(--red);
  border-color: var(--red);
}
.cnf-btn--primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1px);
}
.cnf-btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }

/* Preview card */
.cnf-preview-card {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--paper);
  padding: 22px 24px;
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 22px;
  box-shadow: 6px 6px 0 var(--red);
}
.cnf-preview-card__text { margin: 0; white-space: pre-wrap; word-wrap: break-word; }
.cnf-preview-card__meta {
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-top: 14px;
  color: var(--ink-soft);
}

/* Sending stage */
.cnf-sending { text-align: center; padding: 12px 0; }
.cnf-sending__spinner {
  display: inline-grid;
  grid-template-columns: repeat(2, 12px);
  grid-template-rows: repeat(2, 12px);
  gap: 4px;
  margin-bottom: 22px;
  animation: cnf-spin 1.5s steps(8) infinite;
}
.cnf-sending__spinner > span {
  background: var(--red);
  display: block;
}
.cnf-sending__spinner > span:nth-child(2) { background: var(--paper); }
.cnf-sending__spinner > span:nth-child(3) { background: var(--paper); }
@keyframes cnf-spin { to { transform: rotate(360deg); } }

.cnf-sending__progress {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: center;
  margin-top: 22px;
  color: rgba(255,255,255,0.3);
}
.cnf-step { transition: color 0.2s ease; }
.cnf-step.is-active { color: var(--red); }
.cnf-step.is-done   { color: rgba(255,255,255,0.7); }
.cnf-step.is-done::before { content: "✓ "; color: var(--red); }
.cnf-step__sep { opacity: 0.35; }

/* Success stage */
.cnf-success { text-align: center; }
.cnf-success__check {
  color: var(--red);
  margin-bottom: 12px;
  display: inline-block;
  animation: cnf-pop 0.5s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes cnf-pop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
.cnf-success__quote {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--red);
  padding: 18px 20px;
  text-align: left;
  margin: 20px 0;
}
.cnf-success__quote-text {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: var(--paper);
  white-space: pre-wrap;
  word-wrap: break-word;
}
.cnf-success__quote-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}
.cnf-success__share {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}
.cnf-success__share strong { color: var(--red); }

@media (max-width: 520px) {
  .cnf-modal__panel { padding: 24px 18px; box-shadow: 6px 6px 0 var(--red); }
  .cnf-modal__close { top: 10px; right: 10px; width: 32px; height: 32px; }
  .cnf-btn { font-size: 11px; padding: 12px 14px; letter-spacing: 0.12em; }
  .cnf-btn--ghost { padding: 12px 16px; }
  .btn-text--full { display: none; }
  .btn-text--short { display: inline; }
}
.btn-text--short { display: none; }

/* ============================================================
   THEME REVEAL · V1 Typographic punch
   Sits between Agitation (dark) and Speakers (light).
   ============================================================ */
.reveal-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.reveal-section::before {
  content: "";
  position: absolute;
  inset: -20% -5% auto auto;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background-image: radial-gradient(rgba(232,32,42,0.18) 1px, transparent 1.4px);
  background-size: 7px 7px;
  opacity: 0.5;
  pointer-events: none;
}

/* Curtains — two red panels covering the section, slide apart on first reveal. */
.reveal-section__curtain {
  position: absolute;
  top: 0; bottom: 0;
  width: 52%;
  background: var(--red);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(0,0,0,0.12) 0 2px,
    transparent 2px 18px,
    rgba(255,255,255,0.05) 18px 20px,
    transparent 20px 38px
  );
  z-index: 10;
  will-change: transform;
  transform: translateX(0);
  transition: transform 2.2s cubic-bezier(.76,0,.24,1);
  pointer-events: none;
}
.reveal-section__curtain--l { left: 0; box-shadow: 12px 0 48px rgba(0,0,0,0.5); }
.reveal-section__curtain--r { right: 0; box-shadow: -12px 0 48px rgba(0,0,0,0.5); transition-delay: 0.1s; }
.reveal-section.is-opened .reveal-section__curtain--l { transform: translateX(-102%); }
.reveal-section.is-opened .reveal-section__curtain--r { transform: translateX(102%); }
/* Repeat visits: skip animation, jump to open */
.reveal-section.is-instant .reveal-section__curtain { transition: none; transform: translateX(-110%); }
.reveal-section.is-instant .reveal-section__curtain--r { transform: translateX(110%); }

/* Spotlight — fades in as curtains open */
.reveal-section__spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 42%,
    rgba(255,255,255,0.06) 0%,
    transparent 62%);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 2.4s ease 0.6s;
}
.reveal-section.is-opened .reveal-section__spot,
.reveal-section.is-instant .reveal-section__spot,
.reveal-section.is-lit .reveal-section__spot { opacity: 1; }

.reveal-section__pin {
  position: relative;
  min-height: 100svh;
  padding: clamp(60px, 10vh, 120px) var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reveal-section__inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  justify-content: center;
  flex-wrap: nowrap;
}
@media (max-width: 720px) {
  .reveal-section__inner {
    flex-direction: column;
    gap: clamp(20px, 4vw, 40px);
    text-align: center;
  }
}

/* Brand staircase mark — built from 6 cells in a 2×3 grid.
   Cells reveal one by one as the section scrolls into view. */
.reveal-section__mark {
  --mark-cell: clamp(36px, 7vw, 72px);
  display: grid;
  grid-template-columns: repeat(2, var(--mark-cell));
  grid-template-rows: repeat(3, var(--mark-cell));
  gap: clamp(6px, 0.9vw, 10px);
  flex-shrink: 0;
}
.reveal-section__mark-cell {
  background: var(--paper);
  opacity: 0;
  transform: translateY(14px) scale(0.7);
  transition: opacity 0.55s cubic-bezier(.2,.7,.2,1),
              transform 0.65s cubic-bezier(.2,.7,.2,1);
}
.reveal-section__mark-cell--red { background: var(--red); }
/* Empty slots in the staircase */
.reveal-section__mark-cell--a { grid-column: 1 / 2; grid-row: 1 / 2; }
.reveal-section__mark-cell--b { grid-column: 2 / 3; grid-row: 1 / 2; }
.reveal-section__mark-cell--c { grid-column: 1 / 2; grid-row: 2 / 3; }
.reveal-section__mark-cell--d { grid-column: 2 / 3; grid-row: 2 / 3; }
.reveal-section__mark-cell--e { grid-column: 1 / 2; grid-row: 3 / 4; }
.reveal-section__mark-cell--f { grid-column: 2 / 3; grid-row: 3 / 4; }
.reveal-section.is-in .reveal-section__mark-cell {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-section.is-in .reveal-section__mark-cell--a { transition-delay: 0.05s; }
.reveal-section.is-in .reveal-section__mark-cell--b { transition-delay: 0.18s; }
.reveal-section.is-in .reveal-section__mark-cell--c { transition-delay: 0.31s; }
.reveal-section.is-in .reveal-section__mark-cell--d { transition-delay: 0.44s; }
.reveal-section.is-in .reveal-section__mark-cell--e { transition-delay: 0.57s; }
.reveal-section.is-in .reveal-section__mark-cell--f { transition-delay: 0.70s; }

/* Typographic lockup */
.reveal-section__lockup { text-align: left; }
@media (max-width: 720px) {
  .reveal-section__lockup { text-align: center; }
}
@media (max-width: 760px) {
  .reveal-section__title { perspective: none; }
  .reveal-section__word {
    transform: translateY(0.2em);
  }
  .reveal-section.is-in .reveal-section__word {
    transform: translateY(0);
  }
}
.reveal-section__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(56px, 13vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--paper);
  display: block;
  perspective: 1000px;
  perspective-origin: 50% 30%;
}
.reveal-section__word {
  display: block;
  opacity: 0;
  transform: rotateX(72deg) translateY(0.15em);
  transform-origin: top center;
  transition: opacity 0.85s cubic-bezier(.2,.7,.2,1),
              transform 0.9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal-section__word--red { color: var(--red); }
.reveal-section.is-in .reveal-section__word {
  opacity: 1;
  transform: rotateX(0deg) translateY(0);
}
.reveal-section.is-in .reveal-section__word[data-rv-word="can't"] { transition-delay: 0.55s; }
.reveal-section.is-in .reveal-section__word[data-rv-word="hold"]  { transition-delay: 0.80s; }
.reveal-section.is-in .reveal-section__word[data-rv-word="us"]    { transition-delay: 1.05s; }

/* Mobile: override base 3D rotation — must come after base rules above to win cascade */
@media (max-width: 760px) {
  .reveal-section__word { transform: translateY(0.2em); }
  .reveal-section.is-in .reveal-section__word { transform: translateY(0); }
}
/* Mobile: reduce the full-screen height and tight padding */
@media (max-width: 640px) {
  .reveal-section__pin {
    min-height: auto;
    padding: clamp(48px, 8vh, 72px) var(--pad);
  }
}

.reveal-section__sub {
  font-family: var(--mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: clamp(18px, 2.6vh, 32px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease 1.30s, transform 0.7s ease 1.30s;
}
.reveal-section.is-in .reveal-section__sub {
  opacity: 1;
  transform: translateY(0);
}

/* Corner labels */
.reveal-section__corner {
  position: absolute;
  font-family: var(--mono);
  font-size: clamp(10px, 0.85vw, 12px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.25s ease;
}
.reveal-section__corner--tl { top: clamp(18px, 3vh, 36px); left: var(--pad); }
.reveal-section__corner--br { bottom: clamp(18px, 3vh, 36px); right: var(--pad); }
.reveal-section__corner--br:hover { color: var(--red); }

/* ============================================================
   SPONSORS · V1 Ticker band
   Sits between Confessions (dark) and pre-resolution marquee.
   ============================================================ */
.sponsors {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(280px, 32%) 1fr;
  align-items: stretch;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  min-height: clamp(180px, 22vh, 240px);
}
.sponsors__intro {
  padding: clamp(20px, 3vh, 36px) clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-right: 1.5px solid var(--ink);
}
.sponsors__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.sponsors__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.005em;
}
.sponsors__title .red { color: var(--red); }
.sponsors__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
  width: max-content;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}
.sponsors__cta:hover {
  color: var(--red);
  border-color: var(--red);
  gap: 10px;
}

.sponsors__ticker {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sponsors__ticker::before,
.sponsors__ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}
.sponsors__ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--paper), rgba(251,247,238,0));
}
.sponsors__ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--paper), rgba(251,247,238,0));
}
.sponsors__track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.6vw, 56px);
  padding: 0 clamp(24px, 3vw, 40px);
  white-space: nowrap;
  animation: sponsorsScroll 42s linear infinite;
  will-change: transform;
}
.sponsors__ticker:hover .sponsors__track { animation-play-state: paused; }
.sponsors__item {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: 0.01em;
  color: var(--ink);
  opacity: 0.78;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.sponsors__item:hover { opacity: 1; }
.sponsors__item--red { color: var(--red); opacity: 0.95; }
.sponsors__dot {
  color: var(--ink-soft);
  font-size: 8px;
  flex-shrink: 0;
  opacity: 0.5;
}
@keyframes sponsorsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 760px) {
  .sponsors {
    grid-template-columns: 1fr;
  }
  .sponsors__intro {
    border-right: none;
    border-bottom: 1.5px solid var(--ink);
    padding: 18px var(--pad);
  }
  .sponsors__ticker { min-height: 80px; }
  .sponsors__track { animation-duration: 28s; }
}

/* ============================================================
   BLOG · V1 Story-first editorial
   Sits after FAQ, before Footer.
   ============================================================ */
.blog {
  background: var(--paper);
  color: var(--ink);
  padding: 12vh var(--pad);
}
.blog__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.blog__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.blog__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.92;
  margin: 6px 0 0;
  letter-spacing: -0.005em;
}
.blog__title .red { color: var(--red); }
.blog__all {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 10px 16px;
  transition: background 0.18s ease, color 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.blog__all:hover {
  background: var(--ink);
  color: var(--paper);
}

.blog__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}
@media (max-width: 880px) {
  .blog__grid { grid-template-columns: 1fr; }
}

/* Featured post */
.blog-feature {
  display: flex;
  flex-direction: column;
}
.blog-feature__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1.6;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  background: var(--paper-2);
}
.blog-feature__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.blog-feature__img-wrap:hover .blog-feature__img { transform: scale(1.04); }
.blog-feature__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}
.blog-feature__body { padding-top: 16px; }
.blog-feature__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.blog-feature__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 10px 0 0;
}
.blog-feature__title a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.blog-feature__title a:hover { color: var(--red); }
.blog-feature__title .red { color: var(--red); }
.blog-feature__excerpt {
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  margin: 12px 0 0;
  color: var(--ink-2);
  max-width: 58ch;
}
.blog-feature__byline {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 14px;
}

/* Side column */
.blog-side {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 26px);
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  padding-bottom: clamp(18px, 2.4vw, 26px);
}
.blog-card:last-child { border-bottom: none; padding-bottom: 0; }
.blog-card__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  background: var(--paper-2);
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.blog-card__img-wrap:hover .blog-card__img { transform: scale(1.05); }
.blog-card__tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 8px;
  z-index: 2;
}
.blog-card__tag--bts { background: var(--red); }
.blog-card__body { padding-top: 10px; }
.blog-card__meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.blog-card__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.002em;
  margin: 6px 0 0;
}
.blog-card__title a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.blog-card__title a:hover { color: var(--red); }
.blog-card__byline {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .faq__a { transition: none !important; }
  .preloader { display: none !important; }
  .grain, .cursor, .cursor-ring, .scroll-progress { display: none !important; }
  /* never leave content stuck hidden when motion is off */
  .hero__line .word,
  .hero__reveal,
  .reveal,
  .speaker,
  .confession,
  .reveal-section__word,
  .reveal-section__sub,
  .reveal-section__mark-cell { opacity: 1 !important; transform: none !important; }
}
