/* ═══════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
  --ink: #111;
  --cream: #F5F0E6;
  --paper: #EDE8DC;
  --crimson: #C41E3A;
  --gold: #C8A96E;
  --muted: #888;
  --charcoal: #2D2D2D;
  --bg: #6B6B6B;
  --serif: 'Playfair Display', Georgia, serif;
  --body: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--sans);
  cursor: none;
}

::selection {
  background: var(--crimson);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .25s, height .25s;
}

/* ═══════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--crimson);
  width: 0%;
  z-index: 99997;
  transition: width .05s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s ease .2s, visibility .8s ease .2s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-text {
  font-family: var(--serif);
  font-size: clamp(53px, 10vw, 123px);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: .04em;
  text-transform: uppercase;
  clip-path: inset(0 100% 0 0);
  animation: preReveal 1s .3s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes preReveal {
  to {
    clip-path: inset(0 0% 0 0);
  }
}

/* ═══════════════════════════════════════
   STICKY RUNNING HEADER
   ═══════════════════════════════════════ */
.running-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(17, 17, 17, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(21px, 4vw, 51px);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}

.running-header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.rh-left {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--cream);
  text-transform: uppercase;
}

.rh-center {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.rh-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rh-read-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, .25);
}

.rh-read-pct {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  min-width: 40px;
  text-align: right;
}

.rh-read-bar-wrap {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  position: relative;
}

.rh-read-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--crimson);
  width: 0%;
  transition: width .1s linear;
}

/* ═══════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════
   HERO - MAGAZINE COVER (100vh)
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('./DSC00244 (1).jpg') center center / cover no-repeat;
  will-change: transform;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(8, 6, 4, .2);
  pointer-events: none;
}

/* ── Centered content wrapper ── */
.hero-right {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(23px, 2.8vh, 39px);
  width: min(1200px, 95vw);
  will-change: transform;
  color: #fff;
}

/* ── Big name ── */
.hero-name {
  user-select: none;
  width: 100%;
  isolation: isolate;
}

.hero-name h1 {
  font-family: var(--serif);
  font-size: clamp(53px, 8vw, 133px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #ffffff;
  line-height: .9;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: clipReveal 1.1s .4s cubic-bezier(.16, 1, .3, 1) forwards;
  mix-blend-mode: difference;
}

.hero-name-rule {
  display: block;
  width: 64px;
  height: 1.5px;
  background: var(--crimson);
  margin: clamp(15px, 1.5vh, 21px) auto 0;
  transform: scaleX(0);
  transform-origin: center;
  animation: scaleIn .6s 1.4s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes scaleIn {
  to {
    transform: scaleX(1);
  }
}

/* ── Content block ── */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(15px, 1.4vh, 21px);
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 43px);
  font-weight: 400;
  font-style: italic;
  color: #f5f0e6;
  line-height: 1.3;
  padding-left: 0;
  border-left: none;
  opacity: 0;
  animation: fadeUp .8s 1.5s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-desc {
  font-family: var(--serif);
  font-size: clamp(21px, 1.7vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: rgba(245, 240, 230, .85);
  line-height: 1.9;
  max-width: 36ch;
  opacity: 0;
  animation: fadeUp .8s 1.8s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-desc-hl {
  font-size: clamp(23px, 1.9vw, 29px);
  font-style: italic;
  color: #ffffff;
  font-weight: 400;
}

/* ── Premium footer strip ── */
.hero-footer-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.4vw, 23px);
  padding: clamp(17px, 1.8vh, 23px) clamp(25px, 4vw, 63px);
  border-top: 1px solid rgba(245, 240, 230, .12);
  background: rgba(8, 6, 4, .2);
  backdrop-filter: blur(4px);
  font-family: var(--sans);
  font-size: clamp(14px, .85vw, 14px);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, .55);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s 2.4s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hfs-dot {
  color: var(--crimson);
  opacity: .7;
}

.hfs-sep {
  display: inline-block;
  width: clamp(25px, 3vw, 51px);
  height: 1px;
  background: rgba(245, 240, 230, .2);
  vertical-align: middle;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: clamp(15px, 1.2vh, 17px) clamp(25px, 2.4vw, 35px);
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 240, 230, .55);
  font-family: var(--sans);
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: center;
  opacity: 0;
  animation: fadeUp .8s 2.1s cubic-bezier(.16, 1, .3, 1) forwards;
  transition: background .3s, color .3s, border-color .3s, transform .2s;
}

.hero-cta-btn:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.hero-cutout-shadow {
  display: none;
}

.hero-cutout {
  display: none;
}

.cover-barcode {
  position: absolute;
  bottom: clamp(25px, 3vh, 53px);
  right: clamp(25px, 4vw, 63px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  opacity: 0;
  animation: fadeUp .7s 4s cubic-bezier(.16, 1, .3, 1) forwards;
}

.cover-edition .edition-text {
  font-family: var(--sans);
  font-size: clamp(13px, .9vw, 14px);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.5;
  text-align: right;
  margin-bottom: 4px;
}

.barcode-lines {
  display: flex;
  gap: 1.5px;
  height: 30px;
  align-items: flex-end;
}

.barcode-lines span {
  display: block;
  width: 1.5px;
  background: var(--ink);
  opacity: .6;
  transform-origin: bottom;
  animation: barBounce var(--dur, .5s) var(--bdly, 0s) ease-in-out alternate infinite;
}

@keyframes barBounce {
  from {
    transform: scaleY(var(--bfrom, .3));
  }

  to {
    transform: scaleY(1);
  }
}

.barcode-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .15em;
  color: rgba(20, 14, 6, .4);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: clamp(25px, 3vh, 43px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeUp .6s 4.5s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-scroll-indicator span {
  font: 400 8px/1 var(--sans);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.scroll-bar-hero {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  position: relative;
  overflow: hidden;
}

.scroll-bar-hero::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
  animation: scrollPulse 2s 4.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    top: -100%
  }

  50%,
  100% {
    top: 100%
  }
}

/* ═══════════════════════════════════════
   ANIMATION KEYFRAMES
   ═══════════════════════════════════════ */
@keyframes clipReveal {
  to {
    clip-path: inset(0 0% 0 0);
  }
}

@keyframes clipRevealUp {
  to {
    clip-path: inset(0% 0 0 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes personReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL CLASSES
   ═══════════════════════════════════════ */
.rev,
.rev-l,
.rev-r {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.rev {
  transform: translateY(35px);
}

.rev-l {
  transform: translateX(-35px);
}

.rev-r {
  transform: translateX(35px);
}

.rev.in,
.rev-l.in,
.rev-r.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .12s;
}

.d2 {
  transition-delay: .24s;
}

.d3 {
  transition-delay: .36s;
}

.d4 {
  transition-delay: .48s;
}

.d5 {
  transition-delay: .60s;
}

.d6 {
  transition-delay: .72s;
}

/* ═══════════════════════════════════════
   SECTION 2: INTRO MANIFESTO
   ═══════════════════════════════════════ */
.intro-manifesto {
  background: var(--cream);
  color: var(--ink);
  padding: 15vh 10vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-hr {
  display: block;
  width: 60%;
  height: 1px;
  background: rgba(0, 0, 0, .12);
  margin: 0 auto;
  border: none;
}

.manifesto-hr--top {
  margin-bottom: 8vh;
}

.manifesto-hr--btm {
  margin-top: 8vh;
}

.manifesto-running-label {
  position: absolute;
  left: clamp(17px, 1.5vw, 31px);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .18);
  white-space: nowrap;
}

.manifesto-big {
  font-family: var(--serif);
  font-size: clamp(41px, 6vw, 83px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.manifesto-body {
  font-family: var(--body);
  font-size: clamp(22px, 1.6vw, 25px);
  font-weight: 300;
  color: rgba(17, 17, 17, .65);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}

.manifesto-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--crimson);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: letter-spacing .3s, opacity .3s;
}

.manifesto-cta:hover {
  letter-spacing: .45em;
  opacity: .7;
}

/* ═══════════════════════════════════════
   CHAPTER HEADERS
   ═══════════════════════════════════════ */
.chapter-header {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(65px, 8vw, 123px) clamp(35px, 6vw, 103px);
  overflow: hidden;
}

.chapter-header--dark {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 30, 58, .07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(200, 169, 110, .04) 0%, transparent 60%),
    var(--ink);
}

.chapter-header--light {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196, 30, 58, .04) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(200, 169, 110, .06) 0%, transparent 55%),
    var(--cream);
  color: var(--ink);
}

/* Faint diagonal rule across chapter headers */
.chapter-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg,
      transparent 0px, transparent 40px,
      rgba(255, 255, 255, .012) 40px, rgba(255, 255, 255, .012) 41px);
  pointer-events: none;
}

.chapter-header--light::after {
  background: repeating-linear-gradient(-55deg,
      transparent 0px, transparent 40px,
      rgba(0, 0, 0, .018) 40px, rgba(0, 0, 0, .018) 41px);
}

.chapter-header-num {
  font-family: var(--serif);
  font-size: clamp(125px, 20vw, 283px);
  font-weight: 900;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}

.chapter-header--dark .chapter-header-num {
  color: rgba(245, 240, 230, .15);
}

.chapter-header--light .chapter-header-num {
  color: rgba(17, 17, 17, .12);
}

.chapter-header-center {
  flex: 1;
  text-align: center;
  padding: 0 clamp(25px, 3vw, 63px);
}

.chapter-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
  color: var(--muted);
}

.chapter-title {
  font-family: var(--serif);
  font-size: clamp(45px, 6vw, 83px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 20px;
}

.chapter-header--dark .chapter-title {
  color: var(--cream);
}

.chapter-header--light .chapter-title {
  color: var(--ink);
}

.chapter-subtitle {
  font-family: var(--body);
  font-size: clamp(20px, 1.4vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

.chapter-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.chapter-vert-rule {
  width: 1px;
  height: 80px;
}

.chapter-header--dark .chapter-vert-rule {
  background: rgba(255, 255, 255, .15);
}

.chapter-header--light .chapter-vert-rule {
  background: rgba(0, 0, 0, .12);
}

.chapter-vert-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--muted);
}

.chapter-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--crimson);
}

/* ═══════════════════════════════════════
   PLATFORM SECTIONS
   ═══════════════════════════════════════ */
.platform-section {
  min-height: 55vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: clamp(65px, 10vh, 123px) clamp(35px, 7vw, 123px);
}

/* card - two-column grid */
.platform-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: clamp(45px, 6vw, 103px);
  position: relative;
  z-index: 1;
}

/* row 1: number spans both columns */
.platform-card .platform-number {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: clamp(19px, 2vh, 27px);
}

/* rows 2-4: logo-row fills left column, vertically centred */
.platform-card .plt-logo-row {
  grid-column: 1;
  grid-row: 2 / 5;
  align-self: center;
  margin-bottom: 0;
}

/* right column rows */
.platform-card .platform-rule {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: clamp(19px, 2vh, 25px);
  width: 60px;
}

.platform-card .platform-desc {
  grid-column: 2;
  grid-row: 3;
  margin-bottom: 0;
  max-width: 100%;
}

.platform-card .plt-link {
  grid-column: 2;
  grid-row: 4;
  margin-top: clamp(21px, 2.5vh, 31px);
}

/* logo row */
.plt-logo-row {
  display: flex;
  align-items: center;
  gap: clamp(21px, 2vw, 29px);
  margin-bottom: clamp(25px, 3vh, 35px);
}

.plt-logo {
  width: clamp(53px, 5.5vw, 75px);
  height: clamp(53px, 5.5vw, 75px);
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}

.plt-logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.plt-logo svg {
  width: 60%;
  height: 60%;
}

.plt-name-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.plt-name-block h2 {
  font-family: var(--serif);
  font-size: clamp(37px, 5vw, 79px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.01em;
}

.plt-name-block span {
  font-family: var(--sans);
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* link */
.plt-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(25px, 3vh, 35px);
  padding: 11px 24px;
  border: 1.5px solid rgba(245, 240, 230, .25);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 240, 230, .7);
  background: transparent;
  align-self: flex-start;
  transition: background .28s, border-color .28s, color .28s, transform .2s, box-shadow .28s;
}

.plt-link:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 240, 230, .15);
}

.plt-link-icon {
  font-size: 15px;
  transition: transform .2s;
}

.plt-link:hover .plt-link-icon {
  transform: translateX(3px);
}

.platform-text-col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(65px, 8vh, 123px) clamp(45px, 5vw, 83px);
  overflow: hidden;
}

.platform-watermark {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(85px, 12vw, 183px);
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.platform-text-col>*:not(.platform-watermark) {
  position: relative;
  z-index: 1;
}

.platform-number {
  font-family: var(--sans);
  font-size: clamp(23px, 2.5vw, 39px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}

.platform-name {
  font-family: var(--serif);
  font-size: clamp(45px, 6vw, 93px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.platform-type {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}

.platform-desc {
  font-family: var(--body);
  font-size: clamp(23px, 1.8vw, 27px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: rgba(245, 240, 230, .7);
  margin-bottom: 32px;
  max-width: 420px;
}

.platform-rule {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, .15);
  margin-bottom: 28px;
}

.platform-stats {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}

.platform-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: color .35s;
  width: fit-content;
  cursor: none;
}

.platform-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  z-index: -1;
}

.platform-cta:hover::before {
  transform: scaleX(1);
}

.platform-cta:hover {
  color: #fff;
  border-color: var(--crimson);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .06);
}

/* ═══════════════════════════════════════
   ERA TIMELINE SECTIONS
   ═══════════════════════════════════════ */
.era-section {
  min-height: 80vh;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

/* ERA - per-era mood gradients */
.era-section[data-section="1996–1999"] {
  background: linear-gradient(145deg, #1c1408 0%, #2e1e0a 40%, #1a1208 100%);
}

.era-section[data-section="2000–2004"] {
  background: linear-gradient(145deg, #10100a 0%, #1c1a0e 40%, #0e0e08 100%);
}

.era-section[data-section="2005–2008"] {
  background: linear-gradient(145deg, #081008 0%, #0e1a0c 40%, #06100a 100%);
}

.era-section[data-section="2009–2012"] {
  background: linear-gradient(145deg, #080f18 0%, #0c1626 40%, #060c14 100%);
}

.era-section[data-section="2013–2014"] {
  background: linear-gradient(145deg, #1a0608 0%, #2c0c0e 40%, #160608 100%);
}

.era-section[data-section="2015–2016"] {
  background: linear-gradient(145deg, #06081a 0%, #0a0e2a 40%, #060814 100%);
}

.era-section[data-section="2017–2019"] {
  background: linear-gradient(145deg, #061212 0%, #0a1e1c 40%, #060e0e 100%);
}

.era-section[data-section="2020–2022"] {
  background: linear-gradient(145deg, #08060f 0%, #120a1e 40%, #08060c 100%);
}

.era-section[data-section="2023–2025"] {
  background: linear-gradient(145deg, #120e04 0%, #1e1806 40%, #0e0c04 100%);
}

.era-section[data-section="2026 & Beyond"] {
  background: linear-gradient(145deg, #160c02 0%, #261604 40%, #180e04 100%);
}

.era-top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(29px, 3vh, 47px) clamp(35px, 5vw, 83px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.era-date-range {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.era-strip-rule {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 0 32px;
}

.era-title-strip {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.era-main {
  display: grid;
  grid-template-columns: 35% 65%;
}

.era-section--even .era-main {
  grid-template-columns: 65% 35%;
}

.era-section--even .era-main .era-photo-col {
  order: 2;
}

.era-section--even .era-main .era-text-col {
  order: 1;
}

.era-photo-col {
  position: relative;
  overflow: visible;
}

.era-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity .4s;
}

.era-year-placeholder {
  display: none;
  font-family: var(--serif);
  font-size: clamp(65px, 10vw, 143px);
  font-weight: 900;
  color: rgba(255, 255, 255, .05);
  user-select: none;
  transition: opacity .4s;
}

/* Staggered fade-in delays */
.era-photo-item.p1 {
  --pd: 0s
}

.era-photo-item.p2 {
  --pd: .1s
}

.era-photo-item.p3 {
  --pd: .2s
}

.era-photo-item.p4 {
  --pd: .3s
}

.era-photo-item.p5 {
  --pd: .4s
}

.era-photo-item.p6 {
  --pd: .5s
}

.era-photo-item.p7 {
  --pd: .6s
}

.era-photo-item.p8 {
  --pd: .7s
}

/* ERA photo gallery - 2-column grid, fixed small size */
.era-gallery {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, clamp(85px, 9vw, 123px));
  gap: clamp(13px, 1vw, 17px);
  padding: clamp(25px, 2.5vw, 43px);
  justify-content: center;
  align-content: start;
}

.era-photo-item {
  position: relative;
  pointer-events: all;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease var(--pd, 0s), transform .5s ease var(--pd, 0s);
  z-index: 1;
}

.era-photo-item.popped {
  opacity: 1;
  transform: translateY(0);
}

.era-photo-item:hover {
  z-index: 20;
}

.era-photo-item:hover img {
  transform: scale(2.4);
  transform-origin: center center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .85), 0 4px 12px rgba(0, 0, 0, .5);
  position: relative;
  z-index: 20;
}

.era-photo-item img {
  width: 100%;
  height: clamp(85px, 10vw, 133px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .5), 0 2px 6px rgba(0, 0, 0, .3);
  border: 1px solid #f5f0e6;
  border-bottom: 12px solid #f5f0e6;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
}

/* Polaroid caption - handwritten year on the white bottom strip */
.polaroid-caption {
  display: block;
  text-align: center;
  font-family: 'Caveat', 'Segoe Script', 'Bradley Hand', cursive;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 600;
  color: rgba(45, 30, 10, .7);
  margin-top: -18px;
  padding-bottom: 3px;
  line-height: 1;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.era-text-col {
  position: relative;
  padding: clamp(53px, 6vh, 93px) clamp(29px, 3vw, 59px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.era-year-watermark {
  display: none;
}

/* paragraph breathing room via br */
.era-body br {
  display: block;
  content: '';
  margin-top: .55em;
}

.era-text-col>*:not(.era-year-watermark) {
  position: relative;
  z-index: 1;
}

.era-headline {
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 55px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 28px;
  white-space: nowrap;
}

.era-year-prefix {
  font-family: var(--sans);
  font-size: .55em;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--crimson);
  vertical-align: middle;
  opacity: .9;
}

.era-body {
  font-family: var(--body);
  font-size: clamp(22px, 1.6vw, 25px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  color: rgba(245, 240, 230, .65);
  margin-bottom: 32px;
  max-width: 520px;
}

.era-body p {
  margin: 0 0 .6em;
}

.era-body p:last-child {
  margin-bottom: 0;
}

.era-points {
  list-style: none;
  padding: 0;
  margin: .4em 0 .7em clamp(19px, 2vw, 31px);
  display: flex;
  flex-direction: column;
  gap: .25em;
}

.era-points li::before {
  content: '•';
  font-family: var(--sans);
  font-size: 1em;
  color: var(--crimson);
  margin-right: .5em;
  opacity: .9;
}

.era-point-hl {
  font-family: var(--serif);
  font-size: clamp(23px, 1.75vw, 27px);
  font-weight: 300;
  font-style: italic;
  color: var(--crimson);
  letter-spacing: .015em;
}

.era-quote {
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 29px);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 2px solid currentColor;
}

.era-stat {
  font-family: var(--serif);
  font-size: clamp(53px, 7vw, 99px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   SECTION 22: REFLECTIONS
   ═══════════════════════════════════════ */
.reflections-section {
  background: var(--ink);
  padding: clamp(85px, 12vh, 163px) clamp(35px, 10vw, 123px);
  text-align: center;
}

.reflections-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 32px;
  display: block;
}

.reflections-heading {
  font-family: var(--serif);
  font-size: clamp(37px, 5vw, 67px);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 64px;
}

.reflections-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  counter-reset: reflection;
}

.reflections-list li {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-family: var(--body);
  font-size: clamp(25px, 2.2vw, 35px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 230, .75);
  line-height: 1.6;
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 20px;
  counter-increment: reflection;
}

.reflections-list li::before {
  content: counter(reflection, decimal-leading-zero);
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--crimson);
  flex-shrink: 0;
  padding-top: 4px;
}

.reflections-list li.gold-item {
  color: var(--gold);
  font-size: clamp(25px, 2.2vw, 35px);
  font-family: var(--body);
  font-style: normal;
}

.reflections-list li.gold-item::before {
  color: var(--gold);
}

/* ═══════════════════════════════════════
   SECTION 23: LETTER - PAPER STYLE
   ═══════════════════════════════════════ */
.letter-section {
  background: linear-gradient(160deg, #d9d3c5 0%, #ccc6b6 100%);
  padding: clamp(85px, 12vh, 163px) clamp(25px, 4vw, 63px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.letter-paper {
  background: #fdf9f2;
  max-width: 720px;
  width: 100%;
  position: relative;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, .06),
    0 4px 16px rgba(0, 0, 0, .1),
    0 12px 40px rgba(120, 60, 20, .12),
    0 40px 80px rgba(80, 40, 10, .18),
    0 80px 160px rgba(60, 30, 5, .22);
  border-radius: 1px;
  padding: 72px 80px 80px 100px;
  overflow: hidden;
  color: var(--ink);
}

/* Red left margin line */
.letter-paper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 76px;
  width: 1.5px;
  background: rgba(196, 30, 58, .35);
}

/* Horizontal ruled lines */
.letter-paper::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to bottom,
      transparent 0px,
      transparent 33px,
      rgba(0, 0, 0, .055) 33px,
      rgba(0, 0, 0, .055) 34px);
  background-position: 0 72px;
  pointer-events: none;
}

.letter-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.letter-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--crimson);
  display: block;
}

.letter-date {
  font-family: var(--body);
  font-size: 18px;
  font-style: italic;
  color: rgba(17, 17, 17, .35);
}

.letter-heading {
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 55px);
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 40px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.letter-salutation {
  font-family: var(--body);
  font-size: 23px;
  font-style: italic;
  color: rgba(17, 17, 17, .65);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.letter-body {
  font-family: var(--body);
  font-size: clamp(25px, 1.72vw, 26px);
  font-weight: 600;
  line-height: 34px;
  color: rgba(17, 17, 17, .78);
  margin-bottom: 68px;
  position: relative;
  z-index: 1;
}

.letter-body p {
  margin-bottom: 34px;
}

.letter-body p:last-child {
  margin-bottom: 0;
}

.letter-closing {
  font-family: var(--body);
  font-size: 22px;
  font-style: italic;
  color: rgba(17, 17, 17, .55);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.letter-sig-area {
  position: relative;
  z-index: 1;
}

.letter-sig-svg {
  display: block;
  margin-bottom: 8px;
  max-width: 240px;
  height: auto;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.8s cubic-bezier(.4, 0, .2, 1) .4s;
}

.letter-sig-svg.drawn {
  clip-path: inset(0 0% 0 0);
}

/* ═══════════════════════════════════════
   PAGE TRANSITION CURTAIN
   ═══════════════════════════════════════ */
.page-curtain {
  position: fixed;
  inset: 0;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 999998;
  pointer-events: none;
  transition: transform .42s cubic-bezier(.16, 1, .3, 1);
}

.page-curtain.sweep-in {
  transform: scaleX(1);
  transform-origin: left;
}

.page-curtain.sweep-out {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .38s cubic-bezier(.16, 1, .3, 1);
}

/* ═══════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: clamp(25px, 4vh, 43px);
  right: clamp(21px, 3vw, 39px);
  z-index: 9980;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 230, .18);
  background: rgba(17, 17, 17, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cream);
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s, transform .35s, background .25s, border-color .25s;
  pointer-events: none;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}

/* ═══════════════════════════════════════
   STATS COUNTER
   ═══════════════════════════════════════ */
.era-stat[data-count] {
  transition: none;
}

/* ═══════════════════════════════════════
   ERA SECTION - PER-SECTION GRAIN
   ═══════════════════════════════════════ */
.era-section {
  isolation: isolate;
}

.era-section-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.letter-sig-name {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: rgba(17, 17, 17, .55);
  display: block;
}

/* Paper corner fold effect */
.letter-paper .paper-fold {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 36px 36px;
  border-color: transparent transparent rgba(0, 0, 0, .06) transparent;
}

/* ═══════════════════════════════════════
   SECTION 24: LET'S CONNECT
   ═══════════════════════════════════════ */
/* ── ERA Photo Lightbox ── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

#lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 88vw;
  max-height: 82vh;
}

.lb-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid #f5f0e6;
  border-bottom: 16px solid #f5f0e6;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .9);
  display: block;
  transition: opacity .2s;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #f5f0e6;
  font-size: 29px;
  cursor: pointer;
  opacity: .6;
  transition: opacity .2s;
  line-height: 1;
}

.lb-close:hover {
  opacity: 1;
}

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #f5f0e6;
  font-size: 75px;
  font-weight: 300;
  cursor: pointer;
  padding: 0 clamp(17px, 2vw, 35px);
  line-height: 1;
  transition: opacity .2s;
  user-select: none;
}

.lb-prev {
  left: 0;
}

.lb-next {
  right: 0;
}

.lb-prev:hover,
.lb-next:hover {
  opacity: 1 !important;
}

.lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: .12em;
  color: rgba(245, 240, 230, .45);
}

.connect-section {
  background: #faf7f2;
  overflow: hidden;
  border-top: 1px solid rgba(17, 17, 17, .08);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
}

.connect-inner {
  display: flex;
  flex-direction: column;
}

.connect-heading {
  font-family: var(--serif);
  font-size: clamp(33px, 5vw, 75px);
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
  text-align: center;
  padding: clamp(33px, 4vh, 55px) clamp(29px, 4vw, 63px);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  margin: 0;
}

/* email row */
.connect-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(45px, 7vh, 83px) clamp(29px, 4vw, 63px);
}

.connect-email-pill {
  display: inline-flex;
  align-items: center;
  gap: clamp(17px, 1.5vw, 23px);
  padding: clamp(21px, 2vh, 25px) clamp(33px, 4vw, 55px);
  border: 1.5px solid rgba(17, 17, 17, .18);
  border-radius: 100px;
  font-family: var(--body);
  font-size: clamp(20px, 1.8vw, 29px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .01em;
  transition: background .3s, border-color .3s, color .3s, transform .2s, box-shadow .3s;
}

.connect-pill-icon {
  font-style: normal;
  font-size: .9em;
  color: var(--crimson);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.connect-email-pill:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(17, 17, 17, .18);
}

.connect-email-pill:hover .connect-pill-icon {
  color: var(--gold);
  transform: scale(1.2);
}

/* ═══════════════════════════════════════
   SECTION 25: FOOTER
   ═══════════════════════════════════════ */
.footer-section {
  background: var(--ink);
  padding: clamp(85px, 10vh, 143px) clamp(35px, 6vw, 83px) clamp(45px, 6vh, 83px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 4vw, 63px);
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.footer-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  cursor: none;
}

.footer-link:hover {
  color: var(--cream);
  border-bottom-color: rgba(245, 240, 230, .3);
}

.footer-big-name {
  font-family: var(--serif);
  font-size: clamp(85px, 18vw, 263px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 30, 58, .12);
  background: linear-gradient(135deg, rgba(196, 30, 58, .08) 0%, rgba(200, 169, 110, .06) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: .85;
  text-transform: uppercase;
  user-select: none;
  margin-bottom: 48px;
  letter-spacing: .02em;
}

.footer-colophon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .18);
  flex-wrap: wrap;
}

.footer-col-rule {
  width: 20px;
  height: 1px;
  background: var(--crimson);
  opacity: .4;
  flex-shrink: 0;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 28px;
  margin-top: 20px;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .18);
}

/* Running header section name wipe animation */
#rhSection {
  clip-path: inset(0 0% 0 0);
  transition: clip-path .25s cubic-bezier(.16, 1, .3, 1);
}

#rhSection.wiping {
  clip-path: inset(0 100% 0 0);
}

.read-journey-cta {
  background: var(--ink);
  text-align: center;
  padding: clamp(65px, 10vh, 123px) 24px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  position: relative;
  overflow: hidden;
}

.read-journey-cta::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(165px, 22vw, 303px);
  font-weight: 900;
  color: rgba(196, 30, 58, .05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.read-journey-rule {
  width: 40px;
  height: 1px;
  background: var(--crimson);
  margin: 0 auto 28px;
  display: block;
}

.read-journey-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 20px;
}

.read-journey-link {
  display: block;
  font-family: var(--serif);
  font-size: clamp(33px, 4vw, 55px);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 36px;
  transition: letter-spacing .4s cubic-bezier(.16, 1, .3, 1);
  cursor: none;
}

.read-journey-link:hover {
  letter-spacing: .02em;
}

.read-journey-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 14px 32px;
  position: relative;
  overflow: hidden;
  transition: color .35s;
  cursor: none;
}

.read-journey-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  z-index: -1;
}

.read-journey-btn:hover::before {
  transform: scaleX(1);
}

.read-journey-btn:hover {
  color: #fff;
  border-color: var(--crimson);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* Touch devices - restore native cursor, hide custom cursor */
@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  a,
  button,
  .platform-cta,
  .footer-link,
  .read-journey-link,
  .read-journey-btn {
    cursor: pointer;
  }

  .era-photo-item:hover img {
    transform: none !important;
  }

  /* Larger touch targets */
  .plt-link {
    padding: 14px 28px;
  }

  .hero-cta-btn {
    padding: 14px 28px;
  }

  .lb-prev,
  .lb-next {
    padding: 0 20px;
    font-size: 59px;
  }

  .lb-close {
    font-size: 35px;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {

  /* Platform cards collapse to single column */
  .platform-card {
    grid-template-columns: 1fr;
  }

  .platform-card .plt-logo-row {
    grid-column: 1;
    grid-row: 2;
  }

  .platform-card .platform-rule {
    grid-column: 1;
    grid-row: 3;
  }

  .platform-card .platform-desc {
    grid-column: 1;
    grid-row: 4;
  }

  .platform-card .plt-link {
    grid-column: 1;
    grid-row: 5;
  }

  .platform-number {
    font-size: clamp(25px, 4.0vw, 33px);
  }

  .platform-section {
    padding: clamp(53px, 7vh, 93px) clamp(25px, 5vw, 83px);
  }

  /* ERA sections stack */
  .era-main,
  .era-section--even .era-main {
    grid-template-columns: 1fr;
  }

  .era-section--even .era-main .era-photo-col {
    order: 1;
  }

  .era-section--even .era-main .era-text-col {
    order: 2;
  }

  .era-photo-col {
    min-height: unset;
  }

  .era-text-col {
    padding: clamp(37px, 4vh, 63px) clamp(25px, 4vw, 51px);
  }

  /* ERA gallery wider cells on tablet */
  .era-gallery {
    grid-template-columns: repeat(2, clamp(115px, 14vw, 163px));
  }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {

  /* Hero — overlay at bottom */
  .cover-barcode {
    display: none;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-right {
    width: 92vw;
    gap: clamp(19px, 2.5vh, 31px);
    color: #fff;
  }

  .hero-name h1 {
    font-size: clamp(43px, 13.0vw, 81px);
    white-space: normal;
  }

  .hero-name-rule {
    width: 44px;
  }

  .hero-tagline {
    font-size: clamp(25px, 5.8vw, 31px);
  }

  .hero-desc {
    font-size: clamp(23px, 5.0vw, 24px);
  }

  .hero-desc-hl {
    font-size: clamp(24px, 5.2vw, 25px);
  }

  .hero-cta-btn {
    font-size: 21px;
    padding: 11px 22px;
  }

  .hero-footer-strip {
    font-size: 18px;
    gap: 8px;
    padding: 10px 16px;
  }

  /* Running header */
  .rh-center {
    display: none;
  }

  .rh-read-label {
    display: none;
  }

  .running-header {
    padding: 0 16px;
  }

  /* Manifesto */
  .manifesto-running-label {
    display: none;
  }

  .intro-manifesto {
    padding: 10vh 6vw;
  }

  .manifesto-big {
    font-size: clamp(39px, 9.0vw, 65px);
  }

  .manifesto-body {
    font-size: clamp(27px, 6.0vw, 29px);
  }

  /* Chapter headers */
  .chapter-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 48px 20px;
    min-height: auto;
  }

  .chapter-header-num {
    font-size: clamp(71px, 22.0vw, 149px);
  }

  .chapter-header-right {
    display: none;
  }

  .chapter-header-center {
    padding: 0;
  }

  .chapter-title {
    font-size: clamp(43px, 10.0vw, 69px);
  }

  .chapter-subtitle {
    font-size: clamp(25px, 5.5vw, 27px);
  }

  /* Platform */
  .platform-number {
    font-size: clamp(24px, 5.5vw, 29px);
    letter-spacing: .08em;
  }

  .platform-name {
    font-size: clamp(43px, 11.0vw, 69px);
  }

  .platform-image-col {
    padding: 28px 16px 0;
  }

  .platform-text-col {
    padding: 28px 16px 48px;
  }

  .platform-desc {
    font-size: clamp(27px, 5.8vw, 29px);
  }

  .plt-logo {
    width: clamp(49px, 9vw, 67px);
    height: clamp(49px, 9vw, 67px);
  }

  .plt-link {
    align-self: flex-start;
    font-size: 21px;
    padding: 12px 22px;
  }

  /* ERA sections */
  .era-section {
    min-height: auto;
  }

  .era-photo-col {
    min-height: unset;
  }

  .era-top-strip {
    padding: 14px 16px;
    gap: 6px;
  }

  .era-strip-rule {
    margin: 0 10px;
  }

  .era-year-placeholder {
    font-size: clamp(51px, 15.0vw, 99px);
  }

  .era-year-watermark {
    font-size: clamp(59px, 16.0vw, 119px);
    right: 0;
    top: 6px;
  }

  .era-text-col {
    padding: 28px 16px 40px;
  }

  .era-headline {
    display: none;
    font-size: clamp(27px, 6.5vw, 41px);
    margin-bottom: 20px;
    white-space: normal;
  }

  .era-body {
    font-size: clamp(26px, 5.8vw, 27px);
  }

  .era-stat {
    font-size: clamp(47px, 12.0vw, 81px);
  }

  .era-gallery {
    grid-template-columns: repeat(2, clamp(105px, 20vw, 153px));
    padding: 16px;
    gap: 10px;
  }

  .era-photo-item img {
    height: clamp(95px, 16vw, 143px);
  }

  .era-points {
    padding-left: 12px;
  }

  .era-point-hl {
    font-size: clamp(27px, 6.0vw, 29px);
  }

  /* Letter */
  .letter-section {
    padding: clamp(53px, 7vh, 103px) 12px;
  }

  .letter-paper {
    padding: 40px 20px 52px 44px;
  }

  .letter-paper::before {
    left: 28px;
  }

  .letter-paper::after {
    background-position: 0 40px;
  }

  .letter-heading {
    font-size: clamp(33px, 8.0vw, 49px);
    margin-bottom: 28px;
  }

  .letter-body {
    font-size: clamp(26px, 5.8vw, 27px);
    line-height: 34px;
  }

  .letter-top-row {
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Reflections */
  .reflections-section {
    padding: clamp(65px, 8vh, 103px) 20px;
  }

  .reflections-heading {
    font-size: clamp(37px, 8.0vw, 57px);
    margin-bottom: 40px;
  }

  .reflections-list li {
    font-size: clamp(27px, 6.0vw, 29px);
    padding: 18px 0;
  }

  /* Connect */
  .connect-heading {
    font-size: clamp(33px, 9.0vw, 53px);
    padding: 28px 20px;
  }

  .connect-center {
    padding: 28px 20px 40px;
  }

  .connect-email-pill {
    font-size: clamp(24px, 5.2vw, 25px);
    padding: 14px clamp(23px, 4vw, 35px);
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .connect-pill-icon {
    font-size: 27px;
  }

  /* Footer */
  .footer-section {
    padding: clamp(65px, 8vh, 103px) 16px clamp(33px, 4vh, 63px);
  }

  .footer-big-name {
    font-size: clamp(71px, 18.0vw, 189px);
    margin-bottom: 32px;
  }

  .footer-links {
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-link {
    font-size: 21px;
    padding: 4px 2px;
  }

  .footer-colophon {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 19px;
  }

  /* Lightbox */
  .lb-img {
    border-width: 1px;
    border-bottom-width: 12px;
  }

  .lb-prev,
  .lb-next {
    font-size: 61px;
    padding: 0 12px;
  }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {

  /* Hero — full overlay */
  .hero-name h1 {
    font-size: clamp(39px, 14.0vw, 61px);
  }

  .hero-tagline {
    font-size: clamp(24px, 6.0vw, 26px);
  }

  .hero-desc {
    display: block;
    font-size: clamp(22px, 5.0vw, 22px);
  }

  .hero-desc-hl {
    font-size: clamp(23px, 5.2vw, 23px);
  }

  .hero-points {
    padding-left: 8px;
    gap: 2px;
  }

  .hero-footer-strip {
    gap: 6px;
    font-size: 17px;
    flex-wrap: wrap;
  }

  .hfs-sep {
    display: none;
  }

  /* Chapter */
  .chapter-header {
    padding: 36px 14px;
  }

  .chapter-header-num {
    font-size: 18vw;
  }

  .chapter-title {
    font-size: clamp(39px, 9.0vw, 57px);
  }

  /* ERA */
  .era-photo-col {
    min-height: unset;
  }

  .era-gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
    gap: 8px;
  }

  .era-photo-item img {
    height: clamp(85px, 22vw, 133px);
  }

  .era-top-strip {
    flex-wrap: wrap;
    gap: 4px;
  }

  .era-strip-rule {
    display: none;
  }

  .era-top-strip .era-date-range,
  .era-top-strip .era-title-strip {
    font-size: 19px;
  }

  .era-text-col {
    padding: 24px 14px 36px;
  }

  .era-headline {
    font-size: clamp(25px, 6.5vw, 31px);
  }

  .era-body {
    font-size: clamp(25px, 5.8vw, 25px);
  }

  /* Platform */
  .platform-section {
    padding: 40px 16px;
  }

  .platform-number {
    font-size: 22px;
  }

  .platform-image-col {
    padding: 24px 14px 0;
  }

  .platform-text-col {
    padding: 24px 14px 40px;
  }

  .plt-logo-row {
    gap: 12px;
  }

  .plt-name-block h2 {
    font-size: clamp(39px, 11.0vw, 57px);
  }

  /* Letter */
  .letter-section {
    padding: 40px 8px;
  }

  .letter-paper {
    padding: 32px 14px 44px 32px;
  }

  .letter-paper::before {
    left: 18px;
  }

  .letter-paper::after {
    background-position: 0 32px;
  }

  .letter-body {
    font-size: clamp(25px, 5.8vw, 25px);
    line-height: 34px;
  }

  .letter-sig-svg {
    max-width: 180px;
  }

  /* Connect */
  .connect-heading {
    font-size: clamp(31px, 10.0vw, 45px);
    padding: 24px 16px;
  }

  .connect-center {
    padding: 24px 16px 32px;
  }

  .connect-email-pill {
    font-size: 22px;
    padding: 12px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Manifesto */
  .intro-manifesto {
    padding: 8vh 5vw;
  }

  /* Reflections */
  .reflections-section {
    padding: 48px 14px;
  }

  .reflections-list li {
    font-size: clamp(26px, 6.0vw, 27px);
  }

  /* Footer */
  .footer-section {
    padding: 48px 14px 28px;
  }

  .footer-big-name {
    font-size: 14vw;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-link {
    font-size: 20px;
  }

  /* Lightbox */
  .lb-img-wrap {
    max-width: 96vw;
  }

  .lb-img {
    max-width: 96vw;
    max-height: 75vh;
  }

  .lb-prev {
    left: 0;
  }

  .lb-next {
    right: 0;
  }

  .lb-counter {
    font-size: 20px;
  }
}