@font-face {
  font-family: "Anton";
  src: url("../fonts/anton.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --yellow: #FFC60B;
  --black: #0B0A07;
  --red: #D7282F;
  --paper: #F4F1E8;
  --ink: #15130E;
  --ink-2: #1D1A13;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 4px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: "Archivo", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-180%);
  background: var(--paper);
  color: var(--black);
  padding: 12px 16px;
  border-radius: 4px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: #0B0A07;
  border-bottom: 1px solid #1D1A13;
}
.nav {
  width: min(100%, var(--max));
  margin: auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand-lockup {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: .04em;
  white-space: nowrap;
}
.brand-lockup .x { color: var(--red); }
.brand-lockup img { width: 40px; height: 40px; }
.nav-links {
  margin-left: auto;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
}
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 700; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--yellow); }
.menu-button { display: none; }

.section {
  width: min(100%, var(--max));
  margin: auto;
  padding: clamp(72px, 10vw, 150px) var(--pad);
}
.section-tight { padding-top: 54px; padding-bottom: 54px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow::before { content: "×"; color: var(--red); font-size: 20px; }
.display {
  margin: 18px 0 22px;
  max-width: 1100px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(58px, 10.6vw, 168px);
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.display .yellow { color: var(--yellow); }
.display .red { color: var(--red); }
.lede {
  max-width: 760px;
  font-size: clamp(18px, 2.1vw, 28px);
  color: var(--paper);
}
.muted { color: var(--paper); opacity: .72; }

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0B0A07, #0B0A07),
    url("../media/hero-lineup-v4.jpg") center/cover no-repeat;
  background-blend-mode: multiply;
  opacity: .82;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, #FFC60B 0 9%, transparent 9.3%),
    linear-gradient(180deg, transparent 20%, #0B0A07 95%);
  z-index: -1;
}
.hero .section { padding-top: 110px; padding-bottom: 64px; }
.stage-note {
  display: inline-flex;
  align-items: center;
  max-width: 680px;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid var(--red);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid var(--yellow);
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button.secondary { background: transparent; color: var(--paper); border-color: var(--paper); }
.button.red { background: var(--red); border-color: var(--red); color: var(--paper); }

.metric-strip {
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  background: var(--ink);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--max));
  margin: auto;
  padding: 0 var(--pad);
}
.metric { padding: 28px 22px; border-right: 1px solid var(--ink-2); }
.metric:first-child { border-left: 1px solid var(--ink-2); }
.metric strong { display: block; font-family: "Anton", Impact, sans-serif; font-size: 44px; color: var(--yellow); }
.metric span { font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(22px, 4vw, 52px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }

.card {
  position: relative;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--ink-2);
  background: var(--ink);
  overflow: hidden;
}
.card.yellow { background: var(--yellow); color: var(--black); }
.card.paper { background: var(--paper); color: var(--black); }
.card.red { background: var(--red); }
.card h2, .card h3 { margin-top: 0; font-family: "Anton", Impact, sans-serif; text-transform: uppercase; line-height: .95; }
.card h2 { font-size: clamp(42px, 6vw, 82px); }
.card h3 { font-size: clamp(28px, 3vw, 44px); }
.card .number { font-family: "Anton", Impact, sans-serif; color: var(--red); font-size: 24px; }

.duck-card { min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
.duck-card::after {
  content: "×";
  position: absolute;
  right: 22px;
  top: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: 180px;
  line-height: .9;
  opacity: .12;
  color: var(--red);
}
.duck-card .number, .duck-card h2, .duck-card p { position: relative; z-index: 1; }
.duck-card img {
  position: absolute;
  inset: 20px 20px auto auto;
  width: min(52%, 360px);
  max-height: 290px;
  object-fit: contain;
}

.big-copy {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(46px, 7.7vw, 116px);
  line-height: .92;
  text-transform: uppercase;
}
.big-copy .outline { color: transparent; -webkit-text-stroke: 1px var(--paper); }

.media-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 16px; }
.media-card {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--ink-2);
  background: var(--ink);
  overflow: hidden;
}
.media-card img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.media-card .label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  background: var(--black);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card { padding: 0; }
.product-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.product-card .body { padding: 20px; }
.product-card .status { color: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-card h3 { margin: 7px 0 5px; font-size: 31px; }

.timeline { display: grid; gap: 0; border-top: 1px solid var(--ink-2); }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink-2);
}
.timeline-item .step { color: var(--red); font-family: "Anton", Impact, sans-serif; font-size: 28px; }
.timeline-item h3 { margin: 0; text-transform: uppercase; }
.timeline-item .state { color: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--paper);
  background: var(--black);
  color: var(--paper);
  padding: 14px;
  border-radius: 0;
}
textarea { min-height: 150px; resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.checkbox input { width: auto; margin-top: 4px; }

.logo-stage {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 48px;
  background:
    linear-gradient(90deg, #1D1A13 1px, transparent 1px),
    linear-gradient(#1D1A13 1px, transparent 1px),
    var(--ink);
  background-size: 40px 40px;
}
.logo-stage img { max-height: 310px; object-fit: contain; }
.swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.swatch { min-height: 170px; padding: 16px; display: flex; align-items: end; color: var(--black); font-weight: 800; }
.swatch.black { background: var(--black); color: var(--paper); border: 1px solid var(--paper); }
.swatch.ink { background: var(--ink); color: var(--paper); }
.swatch.yellow { background: var(--yellow); }
.swatch.red { background: var(--red); color: var(--paper); }
.swatch.paper { background: var(--paper); }

.notice {
  padding: 18px;
  border-left: 6px solid var(--yellow);
  background: var(--ink);
}
.notice.danger { border-color: var(--red); }

.prose { max-width: 820px; }
.prose h1, .prose h2, .prose h3 { font-family: "Anton", Impact, sans-serif; text-transform: uppercase; line-height: .95; }
.prose h1 { font-size: clamp(58px, 9vw, 130px); }
.prose h2 { margin-top: 58px; font-size: clamp(38px, 5vw, 66px); }
.prose h3 { margin-top: 34px; font-size: 30px; }
.prose p, .prose li { font-size: 18px; }
.prose a { color: var(--yellow); }

.site-footer { border-top: 1px solid var(--ink-2); }
.footer-grid {
  width: min(100%, var(--max));
  margin: auto;
  padding: 50px var(--pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}
.footer-grid h2 { font-family: "Anton", Impact, sans-serif; text-transform: uppercase; font-size: 44px; margin: 0; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { width: min(100%, var(--max)); margin: auto; padding: 18px var(--pad) 36px; font-size: 12px; opacity: .7; }

@media (max-width: 880px) {
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 18px var(--pad); background: var(--black); border-bottom: 1px solid var(--ink-2); flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .menu-button { display: inline-flex; margin-left: auto; border: 1px solid var(--paper); background: transparent; color: var(--paper); padding: 8px 12px; }
  .metrics, .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .media-grid, .footer-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-item .state { grid-column: 2; }
  .swatches { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .metrics, .grid-4, .grid-3, .form-grid { grid-template-columns: 1fr; }
  .metric, .metric:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid var(--ink-2); }
  .display { font-size: clamp(54px, 18vw, 92px); }
  .duck-card { min-height: 460px; }
  .duck-card .number, .duck-card h2, .duck-card p { position: relative; z-index: 1; }
.duck-card img { width: 64%; }
  .swatches { grid-template-columns: 1fr; }
  .swatch { min-height: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
