:root {
  --ink: #171716;
  --paper: #f0ede6;
  --acid: #f15a24;
  --line: rgba(23, 23, 22, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { color: var(--paper); background: var(--acid); }

.progress {
  position: fixed; inset: 0 0 auto; height: 3px; z-index: 1000;
  background: transparent;
}
.progress span { display: block; width: 0; height: 100%; background: var(--acid); }
.spotlight {
  position: fixed; width: 520px; height: 520px; border-radius: 50%; z-index: -1;
  left: var(--mouse-x, 50%); top: var(--mouse-y, 25%); transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(241, 90, 36, 0.11), transparent 68%);
  pointer-events: none;
}

.site-header {
  position: absolute; z-index: 20; top: 0; left: 0; right: 0;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 24px 3vw; border-bottom: 1px solid var(--line);
  font-family: "Arial Narrow", Arial, sans-serif; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
}
.monogram { display: flex; align-items: flex-start; width: max-content; font-size: 20px; font-weight: 900; letter-spacing: -.08em; }
.monogram sup { color: var(--acid); font-size: 8px; margin: 0 0 0 4px; letter-spacing: 0; }
.site-header nav { display: flex; gap: 34px; }
.site-header nav a { position: relative; }
.site-header nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.live-status { justify-self: end; display: flex; align-items: center; gap: 8px; font-variant-numeric: tabular-nums; }
.live-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 4px rgba(241,90,36,.14); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(241,90,36,0); } }

.hero {
  min-height: 100svh; position: relative; display: flex; flex-direction: column;
  justify-content: center; padding: 120px 3vw 42px; border-bottom: 1px solid var(--line);
}
.eyebrow, .section-index { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.hero .eyebrow { margin: 0 0 2.5vh .6vw; }
.hero h1 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(6rem, 15.2vw, 14rem); font-weight: 900; line-height: .73; letter-spacing: -.055em; text-transform: uppercase; }
.hero h1 span { display: block; }
.hero h1 .outline { color: transparent; -webkit-text-stroke: 2px var(--ink); margin-left: 9.5vw; }
.hero-bottom { display: flex; justify-content: space-between; align-items: end; margin: 6vh 1vw 0 29vw; }
.hero-bottom p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.1rem, 1.8vw, 1.65rem); line-height: 1.2; }
.round-link { display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid var(--ink); border-radius: 50%; font-size: 24px; transition: color .25s, background .25s, transform .25s; }
.round-link:hover, .round-link:focus-visible { color: var(--paper); background: var(--ink); transform: translateY(4px); }
.coordinate { position: absolute; right: 3vw; top: 16vh; padding-left: 18px; border-left: 1px solid var(--ink); font-size: 9px; line-height: 1.6; letter-spacing: .12em; }

.truth, .manifesto { padding: 120px 3vw; }
.truth { background: #dedbd3; }
.section-index { display: flex; align-items: center; gap: 15px; margin-bottom: 90px; }
.section-index::before { content: ""; display: inline-block; width: 30px; height: 1px; background: currentColor; }
.truth-copy { display: grid; grid-template-columns: 2fr 1fr; gap: 7vw; align-items: end; }
.truth h2 { margin: 0; max-width: 1000px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6.2vw, 7rem); font-weight: 400; line-height: .98; letter-spacing: -.055em; }
.truth h2 em { color: var(--acid); font-weight: 400; }
.truth-note { max-width: 390px; margin: 0 0 .6em; font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.55; }
.facts { margin: 110px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.facts > div { position: relative; min-height: 245px; padding: 18px 18px 22px 0; border-right: 1px solid var(--line); }
.facts > div:not(:first-child) { padding-left: 22px; }
.facts dt { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.facts dd { margin: 50px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 3.1rem); line-height: .95; }
.facts div > span { position: absolute; right: 14px; bottom: 4px; color: rgba(23,23,22,.45); font-size: 10px; }

.manifesto { background: var(--paper); }
.manifesto h2 { margin: 0 0 90px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(4.4rem, 11.4vw, 12rem); line-height: .83; letter-spacing: -.045em; }
.manifesto h2 span { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.principles article { min-height: 330px; padding: 18px 2vw 30px 0; border-right: 1px solid var(--line); }
.principles article:not(:first-child) { padding-left: 2vw; }
.principle-head { display: flex; justify-content: space-between; align-items: center; font-size: 10px; }
.principle-head i { width: 10px; height: 10px; background: var(--acid); }
.principles h3 { margin: 120px 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 400; }
.principles p { max-width: 390px; margin: 0; line-height: 1.6; }

.now { min-height: 100svh; position: relative; display: flex; flex-direction: column; justify-content: center; padding: 120px 3vw 70px; color: var(--paper); background: var(--ink); overflow: hidden; }
.now .eyebrow { margin-bottom: 60px; color: var(--acid); }
.now h2 { position: relative; z-index: 2; margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(5rem, 13vw, 13rem); line-height: .74; letter-spacing: -.045em; }
.now h2 i { color: var(--acid); font-family: Arial, sans-serif; font-weight: 400; font-style: normal; }
.now-copy { position: relative; z-index: 2; align-self: end; display: grid; grid-template-columns: 1fr 2fr; gap: 2vw; width: min(600px, 50vw); margin-top: 80px; padding-top: 18px; border-top: 1px solid rgba(240,237,230,.4); }
.now-copy p { margin: 0; line-height: 1.5; }
.now-copy p:first-child { color: var(--acid); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.now-orbit { position: absolute; right: -10vw; top: 5vh; width: 47vw; aspect-ratio: 1; border: 1px solid rgba(240,237,230,.18); border-radius: 50%; animation: rotate 20s linear infinite; }
.now-orbit::before, .now-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(240,237,230,.1); }
.now-orbit::before { inset: 13%; }.now-orbit::after { inset: 30%; }
.now-orbit span { position: absolute; top: 50%; left: -15px; color: var(--acid); font-size: 12px; font-weight: 700; }
@keyframes rotate { to { transform: rotate(360deg); } }

footer { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2vw; align-items: end; padding: 90px 3vw 35px; background: var(--acid); }
.footer-name { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(3.8rem, 8vw, 8rem); line-height: .8; letter-spacing: -.04em; }
footer p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; line-height: 1.25; }
.footer-meta { display: flex; justify-content: space-between; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; padding: 18px 5vw; }
  .site-header nav { display: none; }
  .hero { padding: 110px 5vw 32px; min-height: 92svh; }
  .hero h1 { font-size: 25vw; line-height: .78; }
  .hero h1 .outline { margin-left: 0; }
  .hero-bottom { margin: 9vh 0 0; }
  .coordinate { display: none; }
  .truth, .manifesto { padding: 85px 5vw; }
  .section-index { margin-bottom: 55px; }
  .truth-copy { grid-template-columns: 1fr; }
  .truth h2 { font-size: 12vw; }
  .truth-note { margin-top: 35px; }
  .facts { grid-template-columns: 1fr 1fr; margin-top: 70px; }
  .facts > div { min-height: 190px; border-bottom: 1px solid var(--line); }
  .facts > div:nth-child(odd) { padding-left: 0; }
  .facts dd { margin-top: 42px; font-size: 7vw; }
  .manifesto h2 { font-size: 17vw; margin-bottom: 60px; }
  .principles { grid-template-columns: 1fr; }
  .principles article, .principles article:not(:first-child) { min-height: auto; padding: 18px 0 45px; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles h3 { margin-top: 65px; }
  .now { padding: 95px 5vw 60px; }
  .now h2 { font-size: 19vw; }
  .now-copy { width: 100%; grid-template-columns: 1fr; margin-top: 65px; }
  .now-orbit { width: 90vw; right: -42vw; }
  footer { grid-template-columns: 1fr; gap: 45px; padding: 70px 5vw 30px; }
  .footer-meta { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
