:root {
  --bg: #0f0f11;
  --panel: #17181d;
  --panel-2: #1f2127;
  --line: rgba(255,255,255,.08);
  --text: #f4f4f6;
  --muted: #b5b7c1;
  --red: #ff2c2c;
  --red-dark: #c21414;
  --paper: #eeeeef;
  --black: #0a0b0d;
  --card-shadow: 0 20px 60px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255,44,44,.16), transparent 28%),
    radial-gradient(circle at left bottom, rgba(255,255,255,.06), transparent 18%),
    linear-gradient(180deg, #121318 0%, #0d0e12 100%);
  color: var(--text);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .05;
  background-image: radial-gradient(#fff 0.4px, transparent 0.4px);
  background-size: 4px 4px; mix-blend-mode: soft-light;
}
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(11,12,16,.82), rgba(11,12,16,.48));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand {
  display:flex; align-items:center; gap:10px; font-weight:900; letter-spacing:.08em;
  text-transform: uppercase;
}
.brand-mark {
  display:grid; place-items:center; width:34px; height:34px; border-radius: 10px;
  background: linear-gradient(180deg, var(--red), var(--red-dark)); font-size: 15px;
  box-shadow: 0 12px 24px rgba(255,44,44,.28);
}
.nav { display:flex; gap:22px; color: var(--muted); }
.nav a { font-size: 14px; }
.nav a:hover { color: var(--text); }
.top-actions { display:flex; gap:10px; }
.nav-btn, .cta, .copy-btn, .mini-btn {
  border: 1px solid rgba(255,255,255,.10);
  transition: .18s ease;
}
.nav-btn {
  padding: 11px 16px; border-radius: 12px; font-size: 13px; font-weight: 800;
  background: rgba(255,255,255,.04);
}
.nav-btn:hover, .mini-btn:hover, .cta:hover, .copy-btn:hover { transform: translateY(-2px); }
.nav-btn.alt { background: rgba(255,44,44,.12); border-color: rgba(255,44,44,.28); }
.hero {
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items:center;
  padding: 68px 0 42px;
}
.eyebrow {
  display:flex; align-items:center; gap:10px; color:#f0caca; font-size:12px; letter-spacing:.22em;
  text-transform: uppercase; margin-bottom: 12px;
}
.pulse {
  width:10px; height:10px; border-radius:999px; background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,44,44,.55); animation: pulse 2s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(255,44,44,0);} 100% { box-shadow: 0 0 0 0 rgba(255,44,44,0);} }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(72px, 11vw, 148px);
  line-height: .88; margin: 0; letter-spacing:.02em;
}
.hero h1 span { color: var(--paper); text-shadow: 0 8px 26px rgba(255,255,255,.08); }
.hero h1 { color: var(--red); }
.hero-text { max-width: 640px; color: var(--muted); font-size: 18px; line-height: 1.7; margin: 18px 0 24px; }
.hero-text strong { color: var(--text); }
.cta-row { display:flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.cta {
  display:inline-flex; align-items:center; justify-content:center; padding: 15px 22px;
  border-radius: 16px; font-weight: 900; letter-spacing: .03em;
}
.cta.primary {
  background: linear-gradient(180deg, var(--red), var(--red-dark)); color: #fff;
  box-shadow: 0 20px 36px rgba(255,44,44,.28);
}
.cta.ghost { background: rgba(255,255,255,.04); }
.ticker-strip {
  display:flex; flex-wrap: wrap; gap: 10px 14px; align-items:center; color: var(--muted);
  font-size: 13px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.ticker-strip strong { color: #fff; font-size: 12px; letter-spacing: .08em; }
.divider { width: 1px; height: 16px; background: rgba(255,255,255,.12); }
.hero-side {
  display:grid; gap: 18px;
}
.hero-card, .crash-card, .ca-panel, .info-card, .footer-box, .banner-wrap, .timeline-item {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--card-shadow);
}
.hero-card {
  position:relative; overflow:hidden; border-radius: 28px; padding: 18px;
}
.hero-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,44,44,.22), transparent 50%);
  pointer-events:none;
}
.hero-art {
  width:100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 20px;
}
.hero-card-badge {
  position:absolute; right:28px; bottom:28px; padding: 10px 14px; border-radius: 999px;
  background: rgba(10,11,13,.85); border: 1px solid rgba(255,255,255,.1); font-weight: 900;
}
.crash-card {
  display:flex; flex-direction:column; gap: 8px; padding: 18px 20px; border-radius: 22px;
}
.crash-title, .panel-label, .card-tag, .section-kicker {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color:#dfb4b4;
}
.crash-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 68px; line-height: .95; color: var(--red);
}
.crash-caption { color: var(--muted); }
.link-gates {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 18px 0 12px;
}
.gate {
  display:flex; flex-direction:column; gap: 8px; padding: 22px; border-radius: 22px;
  min-height: 150px; justify-content:flex-end; position:relative; overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.gate::after {
  content:''; position:absolute; inset:auto -10% -50% auto; width:140px; height:140px; border-radius:50%;
  background: rgba(255,255,255,.05); filter: blur(10px);
}
.gate strong { font-family:'Bebas Neue', sans-serif; font-size: 48px; letter-spacing:.03em; }
.gate small { color: var(--muted); }
.gate-kicker { font-size: 11px; letter-spacing: .18em; color: #ffd0d0; }
.gate.red { background: linear-gradient(180deg, rgba(255,44,44,.2), rgba(255,44,44,.08)); }
.gate.dark { background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03)); }
.gate.soft { background: linear-gradient(180deg, rgba(130,15,15,.25), rgba(255,255,255,.03)); }
.gate.line { background: linear-gradient(180deg, rgba(20,20,23,.7), rgba(255,255,255,.03)); }
.ca-section { padding: 16px 0 18px; }
.ca-panel {
  border-radius: 24px; padding: 22px; display:flex; align-items:center; justify-content:space-between; gap: 18px;
}
.panel-value {
  margin-top: 8px; font-size: 15px; font-weight: 700; word-break: break-all; color: #fff;
}
.copy-btn {
  padding: 15px 18px; border-radius: 16px; background: linear-gradient(180deg, var(--red), var(--red-dark));
  color:#fff; font-weight:900; cursor:pointer;
}
.banner-section { padding: 14px 0 10px; }
.banner-wrap { border-radius: 26px; overflow:hidden; }
.banner-img { width:100%; display:block; border-radius: 26px; }
.grid-section {
  display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; padding: 24px 0 12px;
}
.info-card {
  border-radius: 24px; padding: 22px;
}
.info-card.large { grid-row: span 2; }
.info-card h2, .info-card h3, .section-head h2, .footer-box h2 { margin: 10px 0 12px; }
.info-card h2, .section-head h2, .footer-box h2 { font-size: clamp(26px, 3vw, 42px); }
.info-card h3 { font-size: 22px; }
.info-card p { color: var(--muted); line-height: 1.7; margin: 0; }
.roadmap-section { padding: 36px 0 18px; }
.section-head { display:flex; flex-direction:column; gap:8px; margin-bottom: 18px; }
.timeline {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.timeline-item { border-radius: 24px; padding: 22px; }
.num {
  display:inline-grid; place-items:center; width:42px; height:42px; border-radius:999px;
  background: rgba(255,44,44,.18); color: #fff; font-weight: 900;
}
.timeline-item h3 { margin: 16px 0 10px; font-size: 22px; }
.timeline-item p { margin:0; color: var(--muted); line-height: 1.7; }
.footer-cta { padding: 24px 0 48px; }
.footer-box {
  border-radius: 26px; padding: 24px; display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.footer-links { display:flex; gap:12px; flex-wrap:wrap; }
.mini-btn {
  padding: 13px 18px; border-radius: 14px; background: rgba(255,255,255,.04); font-weight: 900;
}
.site-footer {
  display:flex; justify-content:space-between; gap:10px; padding: 0 0 28px; color: var(--muted); font-size: 14px;
}
.toast {
  position: fixed; left:50%; bottom: 22px; transform: translateX(-50%) translateY(14px);
  background: rgba(13,14,18,.95); color:#fff; padding: 12px 16px; border-radius: 999px;
  border:1px solid rgba(255,255,255,.1); opacity:0; pointer-events:none; transition:.2s ease; z-index: 60;
}
.toast.show { opacity:1; transform: translateX(-50%) translateY(0); }
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .link-gates, .grid-section, .timeline { grid-template-columns: repeat(2, 1fr); }
  .info-card.large { grid-row: auto; grid-column: span 2; }
}
@media (max-width: 760px) {
  .topbar { flex-wrap: wrap; gap: 14px; padding: 18px 0; }
  .nav { order: 3; width: 100%; overflow:auto; white-space: nowrap; padding-bottom: 2px; }
  .top-actions { width:100%; }
  .top-actions .nav-btn { flex:1; text-align:center; }
  .hero { padding-top: 34px; }
  .hero-text { font-size: 16px; }
  .link-gates, .grid-section, .timeline { grid-template-columns: 1fr; }
  .info-card.large { grid-column: auto; }
  .ca-panel, .footer-box, .site-footer { flex-direction: column; align-items: flex-start; }
  .copy-btn { width: 100%; }
  .gate strong { font-size: 42px; }
  .crash-number { font-size: 58px; }
}
