@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #0b0b0c;
  --panel: #111113;
  --line: rgba(255,255,255,.12);
  --text: #f4f2ed;
  --muted: #9b9b9f;
  --blue: #21468b;
  --red: #ae1c28;
  --warm: #f1eadf;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .035;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.topbar {
  height: 72px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11,11,12,.82);
  backdrop-filter: blur(14px);
}
.brand, .status {
  font: 500 11px/1 DM Mono, monospace;
  letter-spacing: .13em;
}
.brand { display: flex; align-items: center; gap: 12px; }
.status { color: #b6b6b8; display: flex; align-items: center; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #56d574; box-shadow: 0 0 14px rgba(86,213,116,.65); }

.flag-mini {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  height: 12px;
  border: 1px solid rgba(255,255,255,.22);
}
.flag-mini i:nth-child(1) { background: var(--blue); }
.flag-mini i:nth-child(2) { background: #f5f5f2; }
.flag-mini i:nth-child(3) { background: var(--red); }

.hero {
  min-height: calc(100vh - 72px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 150px) clamp(20px, 6vw, 88px) 90px;
  position: relative;
}
.eyebrow, .section-label {
  font: 500 11px/1.2 DM Mono, monospace;
  letter-spacing: .2em;
  color: #a3a3a6;
}
.hero h1 {
  font-size: clamp(70px, 15vw, 210px);
  line-height: .78;
  letter-spacing: -.075em;
  margin: 30px 0 38px;
  font-weight: 900;
  max-width: 1050px;
}
.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244,242,237,.68);
}
.lede {
  max-width: 680px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.5;
  letter-spacing: -.02em;
  color: #c6c5c3;
}
.lede strong { color: var(--text); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button {
  font: 600 11px/1 DM Mono, monospace;
  letter-spacing: .08em;
  padding: 16px 18px;
  border: 1px solid var(--line);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.35); }
.button.primary { background: var(--warm); color: #111; border-color: var(--warm); }
.button.primary span { margin-left: 10px; }
.button.ghost { color: #c4c4c7; }

.pixel-card {
  width: min(470px, 88vw);
  margin: 100px 0 0 auto;
  position: relative;
}
.pixel-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  right: 0;
  top: 0;
  filter: blur(70px);
  background: linear-gradient(90deg, rgba(33,70,139,.35), rgba(255,255,255,.08), rgba(174,28,40,.32));
  opacity: .7;
}
.pixel-ad {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  aspect-ratio: 3 / 1;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 22px 90px rgba(0,0,0,.42);
  image-rendering: pixelated;
}
.pixel-ad .blue { background: var(--blue); }
.pixel-ad .white { background: #f1f0e9; display:grid; place-items:center; }
.pixel-ad .red { background: var(--red); }
.pixel-ad .white span {
  color:#111;
  font: 900 clamp(42px, 7vw, 80px)/1 Inter, sans-serif;
  transform: translateY(-2%);
}
.pixel-meta {
  position: relative;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
  font: 500 10px/1 DM Mono, monospace;
  letter-spacing:.1em;
  color:#77777c;
}

.story {
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px clamp(20px, 6vw, 56px);
  border-top: 1px solid var(--line);
}
.timeline { margin-top: 46px; }
.event {
  display:grid;
  grid-template-columns: minmax(90px, 160px) 1fr;
  gap: 30px;
  padding: 44px 0;
  border-top:1px solid var(--line);
}
.event:last-child { border-bottom: 1px solid var(--line); }
.year {
  font: 500 clamp(26px, 4vw, 52px)/1 DM Mono, monospace;
  letter-spacing:-.06em;
}
.event h2 {
  margin:0 0 14px;
  font-size: clamp(23px, 3vw, 38px);
  letter-spacing:-.04em;
}
.event p {
  max-width: 650px;
  color:#aaa9ac;
  line-height:1.7;
  margin:0;
  font-size:16px;
}
.muted-event { opacity:.58; }
.accent-event .year { color:#fff; }

.numbers {
  max-width: 1320px;
  margin: 0 auto;
  border:1px solid var(--line);
  display:grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  min-height: 190px;
  padding: 30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.stat + .stat { border-left:1px solid var(--line); }
.stat strong {
  font-size: clamp(46px, 7vw, 86px);
  letter-spacing:-.07em;
  line-height:1;
}
.stat span {
  font:500 10px/1 DM Mono, monospace;
  letter-spacing:.12em;
  color:#77777c;
}

.manifesto {
  min-height: 62vh;
  display:grid;
  place-items:center;
  text-align:center;
  padding: 90px 20px;
  position:relative;
}
.manifesto p {
  font-size: clamp(34px, 7vw, 92px);
  line-height:1.02;
  letter-spacing:-.06em;
  margin:0;
  font-weight:400;
}
.manifesto strong { font-weight:800; }
.quote-mark {
  position:absolute;
  font: 900 clamp(180px, 32vw, 500px)/1 Georgia, serif;
  opacity:.035;
  transform:translateY(-6%);
  user-select:none;
}

.next {
  max-width: 1160px;
  margin:0 auto;
  padding: 110px clamp(20px, 6vw, 56px) 130px;
  border-top:1px solid var(--line);
}
.next-grid {
  margin-top:45px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:70px;
}
.next h2 {
  font-size:clamp(36px, 6vw, 72px);
  line-height:.98;
  letter-spacing:-.06em;
  margin:0;
}
.next h2 span { color:#7a7a7f; }
.next-copy {
  align-self:end;
  color:#aaa9ac;
  font-size:16px;
  line-height:1.7;
}
.tiny {
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid var(--line);
  font: 400 11px/1.55 DM Mono, monospace;
  color:#65656a;
}

footer {
  border-top:1px solid var(--line);
  min-height:86px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 clamp(20px, 4vw, 64px);
  font:500 10px/1 DM Mono, monospace;
  letter-spacing:.11em;
  color:#77777c;
}
.footer-right span { color:#ddd; padding:0 7px; }

.reveal {
  opacity:0;
  transform:translateY(16px);
  animation: reveal .75s cubic-bezier(.2,.7,.2,1) forwards;
}
.delay-1 { animation-delay:.08s; }
.delay-2 { animation-delay:.16s; }
.delay-3 { animation-delay:.24s; }
@keyframes reveal { to { opacity:1; transform:none; } }

@media (max-width: 760px) {
  .topbar { height:64px; }
  .status { font-size:9px; }
  .brand { font-size:9px; letter-spacing:.09em; }
  .hero { min-height:auto; padding-top:72px; padding-bottom:80px; }
  .hero h1 { margin-top:24px; }
  .pixel-card { margin-top:70px; }
  .event { grid-template-columns:1fr; gap:16px; }
  .numbers { grid-template-columns:1fr 1fr; margin:0 16px; }
  .stat { min-height:150px; }
  .stat:nth-child(3) { border-left:0; border-top:1px solid var(--line); }
  .stat:nth-child(4) { border-top:1px solid var(--line); }
  .next-grid { grid-template-columns:1fr; gap:40px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  .reveal { animation:none; opacity:1; transform:none; }
}
