:root {
  --bg: #030205;
  --panel: #0d140d;
  --accent: #38ff2e;
  --accent2: #2eeae0;
  --text: #d1f5c7;
  --muted: #57fab8;
  --spine: 220px;
  --max: 920px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent2); }

.spine {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--spine);
  height: 100vh;
  padding: 2rem 1.25rem;
  border-right: 1px solid rgba(56, 255, 46, 0.15);
  background: rgba(3, 2, 5, 0.96);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 10;
}

.spine__brand {
  font-family: "SF Pro Rounded", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.spine__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.spine__links a {
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: none;
}

.spine__links a:hover { color: var(--accent); }

.page {
  margin-left: var(--spine);
  min-height: 100vh;
}

.hero--editorial {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem var(--pad) 2rem;
  max-width: calc(var(--max) + var(--spine));
}

.hero__kicker {
  margin: 0 0 0.5rem;
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: system-ui, sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
}

.hero__lead {
  margin: 0;
  font-size: 1.15rem;
  max-width: 34rem;
  color: var(--muted);
}

.hero__figure img {
  border-radius: 12px;
  border: 1px solid rgba(87, 250, 184, 0.2);
}

.section {
  padding: 2.5rem var(--pad);
  max-width: calc(var(--max) + var(--spine));
}

.section-head h2,
.prose-band h2,
.legal h3 {
  font-family: system-ui, sans-serif;
  font-weight: 700;
  color: var(--text);
}

.section-head p {
  color: var(--muted);
  margin-top: 0.35rem;
}

.prose-band {
  border-top: 1px solid rgba(56, 255, 46, 0.12);
}

.prose-band p {
  max-width: 42rem;
  font-size: 1.05rem;
}

.timeline__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0 0 0 1.5rem;
  border-left: 2px solid rgba(46, 234, 224, 0.35);
}

.timeline__list li {
  position: relative;
  padding: 0 0 1.75rem 1.25rem;
}

.timeline__list li::before {
  content: "";
  position: absolute;
  left: -1.62rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(56, 255, 46, 0.45);
}

.timeline__list h3 {
  margin: 0 0 0.35rem;
  font-family: system-ui, sans-serif;
  font-size: 1.05rem;
  color: var(--accent2);
}

.timeline__list p {
  margin: 0;
  max-width: 38rem;
}

.film-strip__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.film-strip__track figure {
  flex: 0 0 auto;
  margin: 0;
  scroll-snap-align: start;
  text-align: center;
}

.film-strip__track img {
  height: 420px;
  width: auto;
  border-radius: 18px;
  border: 1px solid rgba(56, 255, 46, 0.2);
}

.film-strip__track figcaption {
  margin-top: 0.5rem;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.legal-col {
  background: var(--panel);
  border: 1px solid rgba(87, 250, 184, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
}

.legal-col h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.legal-col p {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
}

.site-footer {
  padding: 2rem var(--pad) 3rem;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid rgba(56, 255, 46, 0.1);
}

@media (max-width: 900px) {
  .spine {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid rgba(56, 255, 46, 0.15);
  }

  .spine__links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .page { margin-left: 0; }

  .hero--editorial {
    grid-template-columns: 1fr;
  }

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

  .film-strip__track img {
    height: 360px;
  }
}
