:root {
  color-scheme: dark;
  --bg: #0d0d0f;
  --bg-metal: #141418;
  --surface: #1a1a20;
  --surface-lit: #222228;
  --text: #eceae4;
  --muted: #8a8880;
  --rrr: #ff4d00;
  --rrr-dim: rgba(255, 77, 0, 0.14);
  --chrome: #c8c4bc;
  --chrome-dim: rgba(200, 196, 188, 0.1);
  --garage: #3a3a42;
  --border: rgba(236, 234, 228, 0.08);
  --radius: 4px;
  --radius-sm: 2px;
  --font-display:
    "Arial Black",
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  --font-body:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 77, 0, 0.03) 0,
      rgba(255, 77, 0, 0.03) 1px,
      transparent 1px,
      transparent 40px
    ),
    radial-gradient(ellipse 50% 35% at 0% 100%, var(--rrr-dim), transparent 50%),
    linear-gradient(180deg, var(--bg-metal) 0%, var(--bg) 100%);
}

.backdrop__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--rrr) 0,
    var(--rrr) 20px,
    #1a1a20 20px,
    #1a1a20 40px
  );
}

.page {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.hero {
  margin-bottom: 36px;
}

.hero__garage {
  padding: 34px 30px 30px;
  background: linear-gradient(165deg, var(--surface-lit) 0%, var(--surface) 100%);
  border: 2px solid var(--garage);
  border-left: 6px solid var(--rrr);
  border-radius: var(--radius);
  position: relative;
}

.hero__garage::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(200, 196, 188, 0.15);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--chrome-dim), transparent);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 5px 12px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--rrr);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-title .rrr {
  color: var(--rrr);
  text-shadow: 2px 2px 0 rgba(255, 77, 0, 0.25);
}

.brand-title .garage {
  display: block;
  margin-top: 8px;
  font-size: 0.48em;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--chrome);
}

h1 {
  margin: 20px 0 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 14px;
  max-width: 54ch;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

.updated {
  margin-top: 16px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--rrr);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.highlights li:nth-child(1) {
  border-bottom: 3px solid var(--rrr);
}

.highlights li:nth-child(2) {
  border-bottom: 3px solid var(--chrome);
}

.highlights li:nth-child(3) {
  border-bottom: 3px solid var(--garage);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rrr);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

.card p + p {
  margin-top: 10px;
}

.card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(34, 34, 40, 0.6) 100%);
  border-left: 4px solid var(--rrr);
}

a {
  color: var(--rrr);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 77, 0, 0.35);
}

a:hover {
  color: var(--chrome);
}

.footer {
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--surface);
  border: 2px solid var(--garage);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.footer strong .rrr {
  color: var(--rrr);
}

@media (max-width: 760px) {
  .highlights {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card--wide {
    grid-column: auto;
  }

  .hero__garage {
    padding: 26px 20px 22px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 32px 0 56px;
    width: min(100% - 24px, 940px);
  }
}
