:root {
  --bone: #F6F1E8;
  --bone-warm: #FAF5ED;
  --dune: #E3D5BC;
  --dune-deep: #C7B496;
  --stone: #8B8278;
  --stone-soft: #B5ADA2;
  --ink: #1A1815;
  --ink-soft: #2D2A25;
  --line: rgba(26, 24, 21, 0.12);
  --line-soft: rgba(26, 24, 21, 0.06);
  --vermilion: #B73F2A;
  --vermilion-dim: rgba(183, 63, 42, 0.12);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }

em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82em;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ====== CUSTOM CURSOR ====== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease, background 0.2s;
  transform: translate(-50%, -50%);
}

.cursor.hover {
  width: 56px;
  height: 56px;
  background: var(--vermilion);
}

@media (pointer: coarse) {
  .cursor { display: none; }
  body { cursor: auto; }
}

/* ====== PROGRESS ====== */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--vermilion);
  z-index: 200;
  width: 0;
  transition: width 0.1s linear;
}

/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 24px 40px;
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
  padding: 16px 40px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.logo-u {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--vermilion);
  font-size: 28px;
}

.logo-l {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 15px;
  margin-left: 2px;
}

.nav-center {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-center a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--stone);
  transition: color 0.2s;
  position: relative;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s ease;
}

.nav-center a:hover { color: var(--ink); }
.nav-center a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bone) !important;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--vermilion);
}

.nav-cta .arrow {
  transition: transform 0.3s;
  display: inline-block;
}

.nav-cta:hover .arrow {
  transform: translateX(4px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 20px;
  position: relative;
  padding: 0;
}

.nav-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: 0.3s;
  left: 0;
}

.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 14px; }

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.nav-toggle.open span:nth-child(2) { transform: rotate(-45deg); top: 9px; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  padding: 96px 32px 40px;
  display: none;
  flex-direction: column;
  gap: 24px;
  z-index: 90;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 28px;
  font-style: italic;
}

.mobile-cta {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-style: normal !important;
  background: var(--ink);
  color: var(--bone);
  padding: 14px 24px;
  border-radius: 100px;
  text-align: center;
  margin-top: 16px;
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 40px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  flex: 1;
  padding: 40px 0;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--stone);
  text-transform: uppercase;
}

.tick {
  color: var(--vermilion);
  font-size: 8px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.sep { color: var(--dune-deep); }

.hero-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(88px, 18vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-headline .word-1 { animation-delay: 0.1s; }
.hero-headline .word-2 { animation-delay: 0.3s; color: var(--vermilion); }
.hero-headline .word-2 em { color: inherit; }
.hero-headline .word-3 { animation-delay: 0.5s; }

@keyframes wordUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-foot {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: end;
}

.hero-sub {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 560px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-self: end;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.link-inline .line-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.link-inline .line-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.link-inline:hover .line-wrap::after {
  transform: translateX(0);
}

.link-inline svg {
  transition: transform 0.3s;
}

.link-inline:hover svg {
  transform: translate(3px, -3px);
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--bone) !important;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--vermilion);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.btn-solid > * {
  position: relative;
  z-index: 1;
}

.btn-solid:hover::before {
  transform: translateY(0);
}

.btn-solid .arrow {
  transition: transform 0.3s;
}

.btn-solid:hover .arrow {
  transform: translateX(4px);
}

.hero-scoreboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(227, 213, 188, 0.25);
  backdrop-filter: blur(4px);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

.sb-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sb-k {
  color: var(--stone);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.sb-v {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.sb-pulse {
  color: var(--vermilion);
  position: relative;
  padding-left: 14px;
}

.sb-pulse::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--vermilion);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* horizon svg line */
.horizon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 40px;
  color: var(--dune-deep);
  opacity: 0.6;
  pointer-events: none;
}

.horizon.wide {
  height: 60px;
  opacity: 0.4;
}

/* ====== TICKER ====== */
.ticker {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bone-warm);
}

.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 48s linear infinite;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
}

.ticker-track .dot {
  color: var(--vermilion);
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== SECTIONS ====== */
section {
  position: relative;
}

.h-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}

.h-label .mono {
  color: var(--vermilion);
  font-size: 11px;
}

.h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.h-sub {
  font-size: 17px;
  color: var(--stone);
  max-width: 520px;
}

/* ====== INTRO ====== */
.intro {
  padding: 160px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}

.intro-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 8px;
}

.intro-label .mono {
  color: var(--vermilion);
  font-size: 14px;
  font-weight: 500;
}

.intro-body {
  max-width: 760px;
}

.intro-lede {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 36px;
  color: var(--ink);
}

.intro-body p + p {
  margin-top: 20px;
}

.intro-body p:not(.intro-lede) {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ====== WATCH / REEL ====== */
.watch {
  padding: 120px 0 140px;
  overflow: hidden;
  background: var(--bone-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.watch-head {
  max-width: 1440px;
  margin: 0 auto 60px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.scroll-hint svg { animation: hintSlide 2.2s ease-in-out infinite; }

@keyframes hintSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.reel {
  display: flex;
  gap: 40px;
  padding: 0 40px 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reel::-webkit-scrollbar { display: none; }

.reel-card {
  flex: 0 0 min(540px, 82vw);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
}

.reel-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--stone);
  margin-bottom: 16px;
}

.reel-player {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 70vh;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(26, 24, 21, 0.18), 0 0 0 1px var(--line);
  margin-bottom: 28px;
}

.reel-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--vermilion);
  padding: 6px 12px;
  border: 1px solid var(--vermilion);
  border-radius: 100px;
  margin-bottom: 14px;
}

.reel-caption h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.reel-caption p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.6;
}

.reel-nav {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.reel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s;
}

.reel-btn:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.reel-dots {
  display: flex;
  gap: 8px;
}

.reel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dune-deep);
  transition: all 0.3s;
}

.reel-dots .dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--vermilion);
}

/* ====== NUMBERS ====== */
.numbers {
  padding: 160px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.n-head {
  text-align: left;
  max-width: 1100px;
  margin-bottom: 80px;
}

.numbers-h2 {
  max-width: 800px;
}

.n-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.stat {
  padding: 48px 40px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.3s;
  position: relative;
}

.stat:nth-child(3n) { border-right: 0; }

.stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--vermilion);
  transition: width 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.stat:hover::after {
  width: 100%;
}

.stat-n {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(60px, 8vw, 112px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-size: 0.35em;
  font-style: italic;
  color: var(--vermilion);
  margin-left: 4px;
  vertical-align: super;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.4;
}

.stat-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--stone);
  line-height: 1.5;
}

/* ====== RÉSUMÉ / TIMELINE ====== */
.resume {
  padding: 160px 40px;
  background: var(--bone-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resume-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 120px;
  align-items: start;
}

.resume-sticky {
  position: sticky;
  top: 120px;
}

.resume-h2 {
  margin-bottom: 28px;
}

.resume-sub {
  font-size: 17px;
  color: var(--stone);
  max-width: 360px;
  line-height: 1.6;
}

.timeline {
  list-style: none;
  padding-top: 12px;
}

.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  opacity: 0.35;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.tl-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.tl-item:first-child { padding-top: 0; }

.tl-item.accent .tl-year {
  color: var(--vermilion);
}

.tl-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--stone);
  padding-top: 10px;
  font-weight: 500;
}

.tl-body h4 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.tl-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ====== TRAIN ====== */
.train {
  padding: 160px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.train-head {
  margin-bottom: 72px;
}

.train-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.train-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 56px 48px;
  background: var(--bone-warm);
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.train-card:hover {
  transform: translateY(-4px);
  border-color: var(--vermilion);
}

.train-card.primary {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.train-card.primary::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--vermilion-dim), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.tc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}

.tc-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  color: var(--vermilion);
}

.tc-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 100px;
}

.train-card.primary .tc-tag {
  color: var(--dune);
  border-color: var(--dune-deep);
}

.train-card h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.tc-list {
  list-style: none;
  margin-bottom: 40px;
}

.tc-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(227, 213, 188, 0.2);
  font-size: 16px;
  line-height: 1.5;
}

.tc-list li span {
  color: var(--vermilion);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 2px;
}

.tc-p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.tc-foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: start;
}

.tc-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--dune);
}

.train-card.minor .link-inline {
  color: var(--ink);
}

/* ====== PHILOSOPHY ====== */
.philosophy {
  padding: 180px 40px;
  background: var(--dune);
  position: relative;
  overflow: hidden;
}

.philosophy .horizon {
  top: 0; bottom: auto;
  color: var(--ink);
  opacity: 0.3;
}

.phil-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.pull {
  margin-bottom: 80px;
}

.quote-mark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 140px;
  line-height: 0.5;
  color: var(--vermilion);
  display: inline-block;
  margin-bottom: 12px;
}

.pull-p {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto 28px;
  font-style: italic;
}

.pull-attrib {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.phil-mantras {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 56px;
  border-top: 1px solid rgba(26, 24, 21, 0.15);
}

.mantra {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
}

.m-n {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 12px;
  color: var(--vermilion);
  letter-spacing: 0.04em;
}

/* ====== TESTIMONIALS / WORDS ====== */
.words {
  padding: 160px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.words-head {
  margin-bottom: 60px;
}

.words-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.word-card {
  padding: 40px 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bone-warm);
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}

.word-card::before {
  content: '"';
  position: absolute;
  top: -32px; left: 24px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  color: var(--vermilion);
  opacity: 0.7;
}

.word-card:hover {
  transform: translateY(-4px);
  border-color: var(--vermilion);
}

.word-card p {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-style: italic;
}

/* ====== CTA ====== */
.cta {
  padding: 180px 40px;
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(183, 63, 42, 0.22) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.cta-small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vermilion);
  margin-bottom: 24px;
}

.cta-h {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--bone);
}

.cta-h em {
  color: var(--vermilion);
}

.cta-p {
  font-size: 19px;
  color: rgba(246, 241, 232, 0.72);
  margin-bottom: 48px;
}

.btn-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 40px;
  background: var(--bone);
  color: var(--ink) !important;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-big::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--vermilion);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.btn-big:hover {
  color: var(--bone) !important;
}

.btn-big:hover::before {
  transform: translateY(0);
}

.btn-big > * {
  position: relative;
  z-index: 1;
}

.btn-big svg {
  transition: transform 0.3s;
}

.btn-big:hover svg {
  transform: translate(4px, -4px);
}

/* ====== FOOTER ====== */
.foot {
  padding: 80px 40px 32px;
  background: var(--bone);
  border-top: 1px solid var(--line);
  position: relative;
}

.foot .horizon {
  top: 0; bottom: auto;
  color: var(--dune-deep);
}

.foot-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-top: 40px;
}

.foot-brand p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.55;
  max-width: 320px;
  margin-top: 16px;
}

.foot-logo {
  display: inline-flex;
  align-items: baseline;
  font-size: 30px;
}

.foot-logo .logo-u {
  font-size: 34px;
}

.foot-logo .logo-l {
  font-size: 18px;
}

.foot-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vermilion);
  margin-bottom: 8px;
}

.foot-col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.foot-col a:hover { color: var(--vermilion); }

.foot-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.04em;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .hero-foot { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { justify-self: start; }

  .intro-grid { grid-template-columns: 1fr; gap: 32px; }

  .resume-grid { grid-template-columns: 1fr; gap: 56px; }
  .resume-sticky { position: static; }

  .train-grid { grid-template-columns: 1fr; }

  .n-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3n) { border-right: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: 0; }

  .words-grid { grid-template-columns: 1fr; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .hero-scoreboard { grid-template-columns: repeat(2, 1fr); }

  .cursor { display: none; }
  body { cursor: auto; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .nav {
    grid-template-columns: auto auto;
    padding: 16px 20px;
  }
  .nav.scrolled { padding: 12px 20px; }
  .nav-center { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }

  .hero { padding: 100px 20px 40px; min-height: auto; }
  .hero-headline { font-size: clamp(64px, 18vw, 120px); }

  .ticker-track { font-size: 20px; gap: 18px; }

  .intro { padding: 100px 20px; }
  .intro-lede { font-size: 28px; }

  .watch { padding: 80px 0 100px; }
  .watch-head { padding: 0 20px; grid-template-columns: 1fr; margin-bottom: 40px; }
  .scroll-hint { justify-self: start; }
  .reel { padding: 0 20px 24px; gap: 20px; }
  .reel-card { flex: 0 0 88vw; }
  .reel-caption h3 { font-size: 26px; }

  .numbers { padding: 100px 20px; }
  .n-grid { grid-template-columns: 1fr; }
  .stat { padding: 40px 24px; border-right: 0 !important; }

  .resume { padding: 100px 20px; }
  .resume-grid { gap: 40px; }
  .tl-item { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .tl-year { padding-top: 0; font-size: 12px; }
  .tl-body h4 { font-size: 26px; }

  .train { padding: 100px 20px; }
  .train-card { padding: 40px 28px; }
  .train-card h3 { font-size: 32px; }

  .philosophy { padding: 100px 20px; }
  .pull-p { font-size: 24px; }
  .phil-mantras { flex-direction: column; gap: 20px; align-items: center; padding-top: 40px; }

  .words { padding: 100px 20px; }

  .cta { padding: 100px 20px; }
  .cta-h { font-size: 56px; }
  .btn-big { padding: 18px 28px; font-size: 15px; }

  .foot { padding: 60px 20px 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 24px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
}
