:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --panel2: #101010;
  --text: #f2efe9;
  --muted: #a6a29c;
  --red: #d71920;
  --red2: #ff2b2f;
  --line: rgba(255,255,255,.13);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(215,25,32,.10), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .045;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(to bottom, rgba(5,5,5,.94), rgba(5,5,5,.66));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand, .status-link {
  font-weight: 900;
  letter-spacing: .11em;
  font-size: .78rem;
}
.brand { display: inline-flex; gap: 10px; align-items: center; }
.brand-dot, .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red2);
  box-shadow: 0 0 16px rgba(255,43,47,.85);
}
.status-link { color: #d7d3ce; }

.hero {
  max-width: var(--max);
  min-height: 100svh;
  margin: 0 auto;
  padding: 118px 22px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(360px, .87fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #d9d5ce;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 900;
}
.hero-logo {
  width: min(520px, 78vw);
  margin: 0 0 8px -14px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 24px rgba(220,0,10,.10));
}
.kicker {
  margin: 10px 0 8px;
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
  letter-spacing: .18em;
  font-weight: 900;
  color: #e8e5de;
}
h1, h2, h3, .btn, .stamp {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7.3vw, 6.7rem);
  line-height: .87;
  letter-spacing: -.025em;
  max-width: 760px;
}
h1 span { color: var(--red2); }
.lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: #c3beb7;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: .09em;
  font-size: .95rem;
}
.btn-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 0 34px rgba(215,25,32,.20);
}
.btn-primary:hover { background: var(--red2); }
.btn-ghost { border-color: rgba(255,255,255,.25); color: #e5e0d9; background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: rgba(255,255,255,.55); }

.hero-media {
  position: relative;
  min-height: 600px;
  border: 1px solid rgba(255,255,255,.14);
  background: #0b0b0b;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 -130px 100px rgba(0,0,0,.35);
  pointer-events: none;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.media-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 10px 12px;
  background: rgba(5,5,5,.87);
  border: 1px solid rgba(255,255,255,.24);
  letter-spacing: .13em;
  font-weight: 900;
  font-size: .7rem;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
  animation: ticker 34s linear infinite;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .77rem;
}
.ticker-track span { white-space: nowrap; }
.ticker-track b { color: var(--red2); }
@keyframes ticker { to { transform: translateX(-50%); } }

.status-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 118px 22px;
}
.section-head { max-width: 820px; }
.section-head h2, .classified-copy h2, .updates h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.015em;
}
.section-head > p:last-child, .classified-copy > p:not(.eyebrow), .updates p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.status-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  overflow: hidden;
}
.status-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .28s ease;
}
.status-card:hover::after { transform: scaleX(1); }
.num { color: var(--red2); font-weight: 900; letter-spacing: .12em; }
.status-card h3 { margin: 58px 0 12px; font-size: 1.7rem; letter-spacing: .03em; }
.status-card p { margin: 0; color: var(--muted); line-height: 1.55; }

.classified {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 760px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080808;
}
.classified-media { min-height: 760px; overflow: hidden; }
.classified-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; filter: saturate(.85) contrast(1.05); }
.classified-copy {
  padding: clamp(46px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(215,25,32,.03), rgba(215,25,32,0)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.016) 0 1px, transparent 1px 13px);
}
.classified-copy > p:not(.eyebrow) { max-width: 580px; }
.stamp {
  align-self: flex-start;
  margin-top: 34px;
  padding: 12px 18px 10px;
  color: var(--red2);
  border: 3px solid var(--red2);
  letter-spacing: .13em;
  font-size: 1.5rem;
  transform: rotate(-3deg);
  opacity: .9;
}

.updates {
  padding: 128px 22px;
  background: radial-gradient(circle at 50% 0%, rgba(215,25,32,.12), transparent 34rem);
}
.updates-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.updates .eyebrow { justify-content: center; }
.updates p { max-width: 620px; margin-left: auto; margin-right: auto; }
.notify-form {
  max-width: 680px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.notify-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  background: #090909;
  color: white;
  border: 1px solid rgba(255,255,255,.25);
  outline: none;
  letter-spacing: .07em;
}
.notify-form input:focus { border-color: var(--red2); box-shadow: 0 0 0 3px rgba(215,25,32,.13); }
.microcopy { font-size: .78rem !important; color: #777 !important; }

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 22px 48px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  color: #97928b;
  font-size: .78rem;
  letter-spacing: .08em;
}
footer strong, footer span { display: block; }
footer strong { color: #ddd8d1; margin-bottom: 6px; }
.footer-right { display: flex; gap: 24px; align-items: flex-start; text-align: right; }
.footer-right a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-logo { width: min(470px, 88vw); margin-left: -8px; }
  .hero-media { min-height: 74svh; max-height: 860px; }
  .status-grid { grid-template-columns: 1fr; }
  .status-card { min-height: 210px; }
  .status-card h3 { margin-top: 40px; }
  .classified { grid-template-columns: 1fr; }
  .classified-media { min-height: 72svh; max-height: 860px; }
  .classified-copy { padding: 78px 24px; }
}

@media (max-width: 640px) {
  .topbar { height: 60px; padding-left: 16px; padding-right: 16px; }
  .status-link { display: none; }
  .hero { padding: 88px 16px 40px; gap: 30px; }
  .hero-logo { margin-bottom: 12px; }
  h1 { font-size: clamp(3.05rem, 15.5vw, 5.25rem); }
  .lede { margin-top: 22px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-media { min-height: 650px; }
  .status-section { padding: 90px 16px; }
  .section-head h2, .classified-copy h2, .updates h2 { font-size: clamp(3rem, 15vw, 5rem); }
  .classified-media { min-height: 650px; }
  .updates { padding: 92px 16px; }
  .notify-form { grid-template-columns: 1fr; }
  footer { padding-left: 16px; padding-right: 16px; flex-direction: column; }
  .footer-right { justify-content: space-between; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Mobile brand refinement - V2 */
@media (max-width: 640px) {
  .hero { padding-top: 80px; }
  .hero-copy .eyebrow { margin-bottom: 12px; }
  .hero-logo {
    width: min(225px, 62vw);
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 18px rgba(220,0,10,.12));
  }
  .kicker { margin-top: 0; }
}

@media (max-width: 640px) {
  .hero-logo-picture { display: block; }
  .hero-logo {
    width: min(286px, 74vw);
    height: auto;
    margin: 0 auto 18px;
    mix-blend-mode: normal;
  }
}
