/* MAESTRO canon: corp cobalt + street rust. Dual voice. No purple glow. */
:root {
  --void: #07090c;
  --bg: #0c1016;
  --panel: #141a22;
  --line: rgba(111, 168, 196, 0.22);
  --cobalt: #6fa8c4;
  --cobalt-bright: #98d1ff;
  --cobalt-deep: #1a3a52;
  --rust: #c45c2a;
  --rust-dim: #8a3d1c;
  --sand: #e8d5b5;
  --text: #e8eef2;
  --muted: #8fa0ad;
  --font-brand: "Bebas Neue", Impact, sans-serif;
  --font: "Barlow", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--void);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}
a { color: var(--cobalt-bright); text-decoration: none; }
a:hover { color: var(--sand); }
code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.92em;
  color: var(--sand);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.12em 0.4em;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.035;
  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' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scan {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 55;
  opacity: 0.04;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(152, 209, 255, 0.07) 3px
  );
  animation: scanMove 8s linear infinite;
}
@keyframes scanMove {
  from { transform: translateY(0); }
  to { transform: translateY(12px); }
}

.wrap { width: min(1080px, 92vw); margin: 0 auto; }

.top {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 4vw;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.95), rgba(7, 9, 12, 0.4) 85%, transparent);
}
.brand-mark {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  color: var(--text);
}
.nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a { color: var(--muted); }
.nav a:hover { color: var(--cobalt); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #071018;
  background: linear-gradient(135deg, var(--cobalt-bright), var(--cobalt));
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn:hover { color: #071018; transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: var(--sand);
  border: 1px solid rgba(232, 213, 181, 0.4);
}
.btn-ghost:hover { color: var(--sand); border-color: var(--sand); }
.btn-nav, .btn-small {
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
}
.btn-pulse {
  animation: ctaPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(152, 209, 255, 0.4);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(152, 209, 255, 0.45); filter: brightness(1); }
  50% { box-shadow: 0 0 18px 4px rgba(152, 209, 255, 0.25); filter: brightness(1.08); }
}
button.btn { appearance: none; -webkit-appearance: none; }

/* HERO — full-bleed banner first */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6.5rem 4vw 3.5rem;
  overflow: hidden;
  background: #07090c;
}
.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: 0;
  animation: bannerIn 1.2s ease both;
}
@keyframes bannerIn {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: none; }
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.35) 0%, rgba(7, 9, 12, 0.15) 35%, rgba(7, 9, 12, 0.82) 72%, rgba(7, 9, 12, 0.96) 100%),
    linear-gradient(90deg, rgba(7, 9, 12, 0.55) 0%, transparent 42%);
  pointer-events: none;
}
.hero-plane {
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  animation: rise 1s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.brand-hero {
  font-family: var(--font-brand);
  font-size: clamp(4.5rem, 15vw, 9rem);
  line-height: 0.88;
  letter-spacing: 0.1em;
  color: var(--text);
}
.hero h1 {
  margin-top: 0.4rem;
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cobalt);
}
.lead {
  margin-top: 1rem;
  max-width: 32rem;
  font-size: 1.12rem;
  color: var(--sand);
  opacity: 0.88;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}
.cta-row .btn {
  min-width: 11rem;
}
.wipe-strip {
  position: relative;
  z-index: 2;
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem 1.25rem;
  max-width: 44rem;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(90deg, rgba(196, 92, 42, 0.28), rgba(26, 58, 82, 0.35));
  border-left: 3px solid var(--rust);
  animation: stripIn 1.1s ease 0.25s both;
}
@keyframes stripIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.wipe-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--sand);
}
.wipe-countdown {
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--cobalt-bright);
  line-height: 1;
}
.wipe-threat {
  flex: 1 1 12rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.wipe-strip.wipe-imminent {
  border-left-color: var(--cobalt-bright);
  animation: stripPulse 1.6s ease-in-out infinite;
}
.wipe-strip.wipe-live {
  border-left-color: var(--rust);
  background: linear-gradient(90deg, rgba(196, 92, 42, 0.45), rgba(26, 58, 82, 0.25));
}
@keyframes stripPulse {
  0%, 100% { box-shadow: inset 0 0 0 0 transparent; }
  50% { box-shadow: inset 0 0 24px rgba(152, 209, 255, 0.12); }
}
.hero-stamp {
  position: relative;
  z-index: 2;
  margin-top: 1.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--rust);
  font-weight: 700;
}

/* Voices */
.voices {
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.voice {
  padding: 3.2rem 2rem;
}
.voice.corp {
  background: linear-gradient(160deg, rgba(26, 58, 82, 0.35), transparent 70%);
  border-right: 1px solid var(--line);
}
.voice.street {
  background: linear-gradient(200deg, rgba(196, 92, 42, 0.2), transparent 65%);
}
.voice-tag {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.corp .voice-tag { color: var(--cobalt); }
.street .voice-tag { color: var(--rust); }
.voice h2 {
  font-family: var(--font-brand);
  font-size: 2rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.voice p { color: var(--muted); max-width: 28rem; }

.block {
  padding: 4.2rem 0;
  border-top: 1px solid var(--line);
  background: var(--void);
}
.block.tint { background: var(--bg); }

.arena-sky {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 50% -10%, rgba(152, 209, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(26, 58, 82, 0.45), transparent 50%),
    linear-gradient(180deg, #0a121c 0%, #0c1016 45%, #07090c 100%);
}
.arena-sky::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(152, 209, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(152, 209, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
.arena-sky .wrap { position: relative; z-index: 1; }
.arena-sky .section-title { color: var(--cobalt-bright); }

.kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.corp-k { color: var(--cobalt); }
.street-k { color: var(--rust); }
.kicker.light { color: var(--cobalt-bright); }

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.07em;
  font-weight: 400;
  margin-bottom: 1rem;
}
.prose { max-width: 40rem; color: var(--muted); margin-bottom: 0.85rem; }
.prose strong, .prose.muted { color: var(--text); }
.prose.muted { opacity: 0.85; }

.fact-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.fact-row li {
  padding: 1rem;
  background: var(--panel);
  border-top: 2px solid var(--cobalt-deep);
}
.fact-row span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.fact-row strong { font-size: 0.95rem; color: var(--sand); font-weight: 600; }

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}
.mode-card {
  padding: 1.25rem 1.15rem 1.35rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  border-top: 2px solid rgba(111, 168, 196, 0.35);
}
.mode-card.is-active {
  border-top-color: var(--cobalt-bright);
  background: linear-gradient(165deg, rgba(26, 58, 82, 0.45), rgba(0, 0, 0, 0.25));
}
.mode-badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rust);
}
.mode-card.is-active .mode-badge { color: var(--cobalt-bright); }
.mode-card h3 {
  font-family: var(--font-brand);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  margin-bottom: 0.55rem;
}
.mode-card > p {
  color: var(--sand);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}
.mode-card ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}
.mode-card li {
  position: relative;
  padding-left: 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.mode-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--cobalt);
}


.timeline {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-top: 1.4rem;
  counter-reset: week;
}
.timeline li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem 1.25rem;
  padding: 1.1rem 1.2rem;
  background: var(--panel);
  border-left: 3px solid var(--cobalt-deep);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.timeline li:hover {
  border-left-color: var(--cobalt);
  transform: translateX(3px);
}
.timeline em {
  grid-row: 1 / 3;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt);
  align-self: center;
}
.timeline strong { color: var(--text); }
.timeline p { grid-column: 2; color: var(--muted); font-size: 0.95rem; }
.timeline .finale {
  border-left-color: var(--rust);
  background: linear-gradient(90deg, rgba(196, 92, 42, 0.18), var(--panel) 55%);
}
.timeline .finale em { color: var(--rust); }

.proto-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-top: 1.4rem;
}
.proto-list h3 {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--cobalt-bright);
  margin-bottom: 0.35rem;
}
.proto-list p { color: var(--muted); }
.note {
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  color: var(--sand);
  font-size: 0.92rem;
  max-width: 40rem;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.panel {
  padding: 1.35rem;
  background: rgba(111, 168, 196, 0.08);
  border: 1px solid var(--line);
}
.panel h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.9rem;
}
.start {
  margin-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.rules {
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
  margin-top: 0.5rem;
  color: var(--muted);
}

.shame {
  border-top: 1px solid rgba(196, 92, 42, 0.35);
  background:
    radial-gradient(ellipse at 70% 20%, rgba(196, 92, 42, 0.12), transparent 50%),
    var(--bg);
}
.shame-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}
.shame-list li {
  display: grid;
  grid-template-columns: minmax(5rem, 0.7fr) minmax(10rem, 1.2fr) 1.4fr 0.55fr;
  gap: 0.75rem 1rem;
  align-items: baseline;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--rust);
  border: 1px solid rgba(196, 92, 42, 0.25);
  border-left-width: 3px;
  border-left-color: var(--rust);
}
.shame-name {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--sand);
  font-weight: 400;
}
.shame-id {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.82rem;
  color: var(--cobalt-bright);
  word-break: break-all;
}
.shame-reason {
  color: var(--muted);
  font-size: 0.92rem;
}
.shame-date {
  color: var(--rust);
  font-size: 0.85rem;
  text-align: right;
}
.shame-empty {
  color: var(--muted);
  border: none !important;
  background: transparent !important;
}

.connect {
  padding: 4.5rem 0 4rem;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(26, 58, 82, 0.4), transparent 55%),
    var(--void);
}
.connect-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1.25rem 0 0.75rem;
  padding: 1rem 1.15rem;
  background: #05070a;
  border: 1px solid var(--line);
}
.connect-box code {
  font-size: 1.05rem;
  background: transparent;
  color: var(--cobalt-bright);
}
.hint {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.foot {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .voices-grid,
  .fact-row,
  .proto-list,
  .mode-grid,
  .split { grid-template-columns: 1fr; }
  .hero-banner { object-position: center 22%; }
  .hero { min-height: 92vh; padding-top: 5.5rem; }
  .voice.corp { border-right: none; border-bottom: 1px solid var(--line); }
  .shame-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .shame-date { text-align: left; }
  .timeline li { grid-template-columns: 1fr; }
  .timeline em { grid-row: auto; }
  .hero { justify-content: center; }
  .wipe-strip { margin-top: 1.5rem; }
}
