:root {
  --black:  #07070a;
  --ink:    #0d0d10;
  --white:  #f7f5ee;
  --dim:    rgba(247,245,238,.55);
  --line:   rgba(247,245,238,.12);
  --ember:  #ff5722;
  --flame:  #ff8a3d;
  --gold:   #ffc14d;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.4;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.mono { font-family: 'IBM Plex Mono', monospace; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 36px; }

/* ============ FIXED CHROME ============ */
.chrome {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 36px;
  mix-blend-mode: difference;
  pointer-events: none;
}
.chrome > * { pointer-events: auto; }
.live {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Mono', monospace; font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--white);
}
.live .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 var(--ember);
  animation: heartbeat 1.4s infinite;
}
@keyframes heartbeat {
  0%   { box-shadow: 0 0 0 0 rgba(255,87,34,.7); }
  70%  { box-shadow: 0 0 0 14px rgba(255,87,34,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,87,34,0); }
}
.chrome-right {
  font-family: 'IBM Plex Mono', monospace; font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--white);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 120px 24px 80px;
  isolation: isolate;
}
.hero::before {
  content:''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(255,87,34,.22) 0%, rgba(255,87,34,.06) 35%, transparent 70%);
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { opacity: .7; transform: scale(1) } 50% { opacity: 1; transform: scale(1.05) } }
.hero::after {
  content:''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  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.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .07;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 30px; height: 1px; background: var(--ember);
}

.colossal {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(7rem, 32vw, 28rem);
  line-height: .8;
  letter-spacing: -.07em;
  color: var(--white);
  font-feature-settings: "tnum","lnum";
  font-variation-settings: "opsz" 96;
  text-align: center;
  position: relative;
  animation: pulseScale 1.4s ease-in-out infinite;
}
@keyframes pulseScale {
  0%, 100% { transform: scale(1); text-shadow: 0 0 80px rgba(255,87,34,.15); }
  50%      { transform: scale(1.012); text-shadow: 0 0 120px rgba(255,87,34,.35); }
}
.hero-label {
  margin-top: 30px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 2.4rem);
  letter-spacing: -.01em;
  text-align: center;
}
.hero-label em {
  font-style: italic; color: var(--ember); font-weight: 300;
}

.ticks {
  margin-top: 70px;
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--dim); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
}
.ticks span strong {
  color: var(--white); font-weight: 600; margin-right: 6px;
  font-feature-settings: "tnum";
}

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--dim);
  font-family: 'IBM Plex Mono', monospace; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
}
.scroll-cue .arr {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--ember));
  animation: drop 2.4s ease-in-out infinite;
}
@keyframes drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: top; }
  56%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ KINETIC VERBS ============ */
.verbs { padding: 80px 0; scroll-snap-type: y mandatory; }
.verb-screen {
  min-height: 92vh;
  min-height: 92svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 36px;
  position: relative;
  border-top: 1px solid var(--line);
  scroll-snap-align: start;
}
.verb-screen .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 30px;
}
.verb-word {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 22vw, 22rem);
  line-height: .82;
  letter-spacing: -.06em;
  color: var(--white);
  font-variation-settings: "opsz" 96;
  margin: 0;
}
.verb-word .dot { color: var(--ember); }
.verb-body {
  margin-top: 40px;
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  max-width: 22ch;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.35;
}

.verb-word .letter {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s cubic-bezier(.2,.8,.2,1), opacity 1s;
}
.verb-screen.in .verb-word .letter { transform: translateY(0); opacity: 1; }
.verb-word .letter:nth-child(1) { transition-delay: 0.05s }
.verb-word .letter:nth-child(2) { transition-delay: 0.10s }
.verb-word .letter:nth-child(3) { transition-delay: 0.15s }
.verb-word .letter:nth-child(4) { transition-delay: 0.20s }
.verb-word .letter:nth-child(5) { transition-delay: 0.25s }
.verb-word .letter:nth-child(6) { transition-delay: 0.30s }
.verb-word .letter:nth-child(7) { transition-delay: 0.35s }
.verb-word .letter:nth-child(8) { transition-delay: 0.40s }
.verb-word .letter:nth-child(9) { transition-delay: 0.45s }

.verb-body, .verb-screen .num { opacity: 0; transform: translateY(20px); transition: opacity .9s .6s, transform .9s .6s; }
.verb-screen.in .verb-body, .verb-screen.in .num { opacity: 1; transform: none; }

/* ============ MANIFESTO ============ */
.manifesto {
  padding: 200px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255,87,34,.08) 0%, transparent 60%),
    var(--black);
}
.manifesto-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 36px;
}
.manifesto .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 60px; display: block;
}
.manifesto p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 4.2vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  max-width: 22ch;
  margin-bottom: 60px;
  color: var(--white);
}
.manifesto p:last-child { margin-bottom: 0; }
.manifesto p strong {
  font-weight: 400;
  color: var(--ember);
  font-style: italic;
}
.manifesto p.right { margin-left: auto; text-align: right; }
.manifesto p.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ PILLARS ============ */
.pillars {
  padding: 160px 36px;
  border-top: 1px solid var(--line);
}
.pillars-head {
  max-width: 1320px; margin: 0 auto 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end;
}
.pillars-head .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 24px; display: block;
}
.pillars-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 6rem);
  line-height: .92; letter-spacing: -.04em;
}
.pillars-head h2 em { font-style: italic; color: var(--ember); font-weight: 300; }
.pillars-head p { color: var(--dim); font-size: 1.05rem; max-width: 38ch; }

.pillar-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.pcell {
  background: var(--black);
  padding: 50px 36px 60px;
  transition: background .4s, color .4s;
  cursor: default;
}
.pcell:hover, .pcell:focus-within { background: var(--ember); color: var(--black); }
.pcell:hover .pnum, .pcell:focus-within .pnum { color: var(--black); }
.pcell .pnum {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .2em; color: var(--ember);
  transition: color .4s;
}
.pcell h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.6rem); margin: 80px 0 18px;
  letter-spacing: -.02em; line-height: .9;
}
.pcell p { font-size: .98rem; line-height: 1.55; }
.pcell:not(:hover):not(:focus-within) p { color: var(--dim); }

/* ============ VOICES ============ */
.voices {
  padding: 160px 0;
  border-top: 1px solid var(--line);
}
.voices-head {
  max-width: 900px; margin: 0 auto 120px; padding: 0 36px; text-align: center;
}
.voices-head .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 24px; display: block;
}
.voices-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: .92; letter-spacing: -.035em;
}
.voices-head h2 em { font-style: italic; color: var(--ember); font-weight: 300; }

.voice {
  max-width: 1100px; margin: 0 auto;
  padding: 100px 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.voice:last-child { border-bottom: 1px solid var(--line); }
.voice blockquote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  max-width: 24ch; margin: 0 auto 40px;
}
.voice cite {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ember); font-style: normal;
}

/* ============ CTA ============ */
.cta {
  padding: 200px 36px;
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,87,34,.45) 0%, rgba(255,87,34,.1) 30%, transparent 70%);
}
.cta .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 30px; display: block;
}
.cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(3.4rem, 13vw, 12rem);
  line-height: .82; letter-spacing: -.06em;
  margin: 0 auto 50px; max-width: 12ch;
}
.cta h2 em { font-style: italic; color: var(--ember); font-weight: 300; }
.cta p {
  max-width: 50ch; margin: 0 auto 60px;
  color: var(--dim); font-size: 1.05rem;
}
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 22px 38px;
  border-radius: 100px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--white);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative; overflow: hidden;
  min-height: 48px;
}
.btn:focus-visible { outline: 2px solid var(--ember); outline-offset: 4px; }
.btn-fill { background: var(--ember); border-color: var(--ember); color: var(--black); }
.btn-fill:hover { background: var(--white); border-color: var(--white); transform: translateY(-4px); box-shadow: 0 24px 50px rgba(255,87,34,.4); }
.btn-ghost { background: transparent; color: var(--white); cursor: pointer; }
.btn-ghost:hover { background: var(--white); color: var(--black); transform: translateY(-4px); }

/* Share toast */
.share-toast {
  position: fixed; bottom: 36px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ember); color: var(--black);
  font-family: 'IBM Plex Mono', monospace; font-size: .78rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 100px;
  z-index: 100; pointer-events: none;
  opacity: 0; transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s;
}
.share-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ FOOTER ============ */
footer {
  padding: 50px 36px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dim);
  flex-wrap: wrap; gap: 16px;
}

/* Progress bar */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; background: rgba(247,245,238,.05); z-index: 60; }
.progress-fill { height: 100%; width: 0; background: var(--ember); box-shadow: 0 0 16px var(--ember); transition: width .15s linear; will-change: width; }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  .wrap { padding: 0 22px; }
  .chrome { padding: 18px 22px; }
  .chrome-right { display: none; }

  .hero { padding: 100px 20px 70px; }
  .hero-eyebrow { font-size: .65rem; letter-spacing: .22em; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 18px; }
  .ticks { margin-top: 50px; gap: 22px; font-size: .72rem; }

  .verbs { padding: 40px 0; }
  .verb-screen { padding: 40px 22px; min-height: 80vh; min-height: 80svh; }
  .verb-body { margin-top: 28px; }

  .manifesto { padding: 110px 0; }
  .manifesto-inner { padding: 0 22px; }
  .manifesto p { margin-bottom: 40px; max-width: none; }
  .manifesto p.right { text-align: left; }

  .pillars { padding: 110px 22px; }
  .pillars-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 60px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .pcell { padding: 36px 24px 44px; }
  .pcell h3 { margin-top: 50px; }

  .voices { padding: 110px 0; }
  .voices-head { margin-bottom: 70px; padding: 0 22px; }
  .voice { padding: 70px 22px; }

  .cta { padding: 130px 22px; }
  .cta p { font-size: 1rem; }
  .btn { padding: 20px 30px; font-size: .72rem; letter-spacing: .15em; }

  footer { padding: 40px 22px; justify-content: center; text-align: center; }
}

@media (max-width: 520px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .ticks { gap: 16px; }
  .live { font-size: .62rem; letter-spacing: .15em; }
  .manifesto { padding: 90px 0; }
  .pillars { padding: 90px 22px; }
  .voices { padding: 90px 0; }
  .voice { padding: 60px 22px; }
  .cta { padding: 110px 22px; }
}

@media (hover: none) {
  .pcell:active { background: var(--ember); color: var(--black); }
  .pcell:active .pnum { color: var(--black); }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .verbs { scroll-snap-type: none !important; }
  .verb-word .letter { transform: none !important; opacity: 1 !important; }
  .verb-body, .verb-screen .num { opacity: 1 !important; transform: none !important; }
  .colossal { animation: none !important; }
  .hero::before { animation: none !important; }
  .live .pulse { animation: none !important; }
  .scroll-cue .arr { animation: none !important; }
}

@media print {
  .chrome, .progress, .scroll-cue { display: none !important; }
  body { background: #fff; color: #000; }
}
