:root {
  --bg: #030303;
  --bg-soft: #0a0a0a;
  --text: #f4f4f4;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.15);
  --red: #ff1f3d;
  --acid: #7dff00;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Modak", system-ui;
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, #1a0d10 0%, var(--bg) 55%), var(--bg);
  overflow-x: hidden;
  letter-spacing: 0.02em;
}

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: -1; opacity: 0.08;
  background-image: radial-gradient(#fff 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}
.smoke {
  position: fixed; border-radius: 50%; filter: blur(90px); z-index: -2; pointer-events: none;
}
.s1 { width: 35vw; aspect-ratio: 1; left: -10vw; top: -14vw; background: radial-gradient(circle, #ff1f3d66, transparent); }
.s2 { width: 32vw; aspect-ratio: 1; right: -12vw; top: 20vh; background: radial-gradient(circle, #7dff0033, transparent); }

.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 4vw; border-bottom: 1px solid var(--line);
  background: rgba(5,5,5,.82); backdrop-filter: blur(10px);
}
.brand { text-decoration: none; color: var(--text); display: grid; gap: .25rem; }
.brand-logo {
  width: clamp(72px, 11vw, 120px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 16px rgba(255, 31, 61, 0.18));
}
.brand small {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .6rem;
  color: var(--muted);
}
.ig {
  text-decoration: none; color: var(--text); font-weight: 700;
  border: 1px solid var(--line); border-radius: 999px; padding: .48rem .9rem;
}

main { width: min(1280px, 92vw); margin: 0 auto; }

.hero {
  min-height: 80vh;
  display: grid;
  align-content: center;
  padding: 3rem 0;
}
.overline {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  margin: 0;
}
.hero-wordmark {
  width: clamp(180px, 30vw, 420px);
  height: auto;
  margin: .6rem 0 .2rem;
  filter: drop-shadow(0 0 24px rgba(0,0,0,.6));
}
.hero h1 {
  margin: .3rem 0 .5rem;
  font-family: "Modak", system-ui;
  font-size: clamp(4rem, 16vw, 13rem);
  line-height: .8;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hero h1 span {
  color: var(--red);
  text-shadow: 0 0 28px rgba(255,31,61,.45);
}
.lead {
  max-width: 68ch;
  color: #c5c5c5;
  font-size: 1.04rem;
}

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.strip p {
  margin: 0;
  width: max-content;
  font-family: "Modak", system-ui;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  letter-spacing: .08em;
  color: #d7d7d7;
  animation: move 14s linear infinite;
}
@keyframes move { to { transform: translateX(-50%); } }

.chapter { padding: 2rem 0; }
.chapter h2 {
  margin: .25rem 0 .9rem;
  font-family: "Modak", system-ui;
  letter-spacing: .04em;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: .85;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.timeline article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  padding: 1rem;
}
.timeline article.active {
  border-color: rgba(255,31,61,.65);
  box-shadow: 0 0 24px rgba(255,31,61,.22);
}
.date {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: .45rem;
}
.timeline h3 { margin: 0 0 .4rem; }
.timeline p { margin: 0; color: #c7c7c7; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #ff1f3d15, #000000);
  padding: 1rem;
  font-family: "Modak", system-ui;
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: .9;
  color: #f0f0f0;
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.facts article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  padding: .85rem;
}
.facts h3 { margin: 0 0 .4rem; font-size: 1rem; }
.facts p { margin: 0; color: #b8b8b8; }

footer {
  border-top: 1px solid var(--line);
  padding: 1rem 4vw;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
}

@media (max-width: 1080px) {
  .timeline, .split, .facts { grid-template-columns: 1fr; }
}
