:root {
  color-scheme: dark;
  --bg: #000000;
  --surface: #161616;
  --surface-2: #282828;
  --text: #F7F7F7;
  --text-muted: #969696;
  --line: #3A3A3A;
  --accent: #C01428;
  --accent-hover: #DA2A3F;
  --navy: #003080;
  --font-display: Michroma;
  --font-body: Raleway;
  --maxw: 1200px;
}
* {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, p, ul, ol, dl, blockquote, figure {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
body {
  background: var(--bg);
  color: var(--text);
  font: 300 1.0625rem / 1.7 var(--font-body);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.3;
}
h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
}
h2 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}
h3, h4 {
  font-size: clamp(1rem, 2vw, 1.25rem);
}
a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-underline-offset: 0.25em;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 1em 2.2em;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover {
  background: var(--accent-hover);
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--text);
}
.btn--ghost:hover {
  background: transparent;
  border-color: var(--accent);
}
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}
.section {
  padding-block: clamp(64px, 10vw, 140px);
}
.section--alt {
  background: var(--surface);
}
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5em 1em;
  text-decoration: none;
  z-index: 9999;
  transform: translateY(-100%);
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
