:root {
  color-scheme: dark;
  --black: #0b0b0b;
  --panel: #151514;
  --text: #ececea;
  --muted: #a7a7a1;
  --red: #e61919;
  --line: rgba(236, 236, 234, 0.14);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Sora", system-ui, sans-serif;
  --mono: "Roboto Mono", ui-monospace, monospace;
  --pill: 999px;
  --radius: 16px;
}
* { box-sizing: border-box; }
html { background: var(--black); scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--body);
  background:
    radial-gradient(circle at 74% 12%, rgba(230,25,25,.16), transparent 28rem),
    linear-gradient(180deg, #090909, #050505 46%, #10100f);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; width: 100%; height: auto; }
.wrap { width: min(calc(100% - 40px), 1320px); margin-inline: auto; }
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; font-weight: 800; font-size: .82rem; color: var(--muted); }
.nav-links a { min-height: 42px; display: inline-flex; align-items: center; border: 1px solid transparent; border-radius: var(--pill); padding: 0 12px; }
.nav-links a:hover { border-color: var(--line); color: var(--text); }
.hero {
  min-height: calc(100dvh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  padding-block: clamp(58px, 8vw, 112px);
}
.kicker {
  width: fit-content;
  border: 1px solid rgba(230,25,25,.5);
  border-radius: var(--pill);
  padding: 8px 12px;
  color: var(--text);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; text-wrap: balance; overflow-wrap: anywhere; }
h1 {
  max-width: 920px;
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: .84;
  text-transform: uppercase;
}
.lead { max-width: 68ch; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.hero-art {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}
.hero-art img { height: 100%; object-fit: cover; filter: saturate(1.06) contrast(1.08); }
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 38%, rgba(0,0,0,.78));
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pill);
  padding: 0 22px;
  font-weight: 900;
}
.primary { background: var(--red); color: var(--text); }
.secondary { border: 1px solid var(--line); color: var(--text); }
.section { padding-block: clamp(58px, 8vw, 110px); border-top: 1px solid rgba(236,236,234,.08); }
.section h2 { font-family: var(--display); font-size: clamp(2.4rem, 6vw, 5.8rem); line-height: .86; text-transform: uppercase; }
.section > .wrap > p { max-width: 76ch; color: var(--muted); line-height: 1.7; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--line); }
.card { min-height: 270px; padding: 22px; background: rgba(19,19,18,.94); }
.card img { aspect-ratio: 1; object-fit: cover; border-radius: 10px; margin-bottom: 16px; }
.card h3 { font-family: var(--display); font-size: clamp(1.45rem, 3vw, 2.8rem); line-height: .9; text-transform: uppercase; }
.card p { color: var(--muted); line-height: 1.62; }
footer { border-top: 1px solid var(--line); padding: 26px 0; color: var(--muted); }
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-art { min-height: 360px; }
  .button { width: 100%; }
  h1 { font-size: clamp(2.72rem, 15vw, 4.2rem); }
  .section h2 { font-size: clamp(2.25rem, 12vw, 3.8rem); }
}
