:root {
  color-scheme: dark;
  --background: #050506;
  --surface: #111316;
  --border: #2a2d31;
  --orange: #ff5a1f;
  --amber: #ffa51e;
  --text: #ffffff;
  --muted: #a8a8ad;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  letter-spacing: 0;
}

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 40px));
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  mix-blend-mode: screen;
  object-fit: contain;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.82;
}

.brand-wordmark span {
  font-size: 18px;
  font-weight: 900;
}

.brand-wordmark strong {
  color: var(--orange);
  font-size: 28px;
  font-style: italic;
  font-weight: 950;
}

.brand--footer .brand-mark {
  width: 36px;
  height: 36px;
}

.brand--footer .brand-wordmark span {
  font-size: 12px;
}

.brand--footer .brand-wordmark strong {
  font-size: 18px;
}

.status {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, 92vh);
  place-items: center;
  overflow: hidden;
  padding: 116px 24px 42px;
  border-bottom: 1px solid var(--border);
}

.hero-copy {
  position: absolute;
  z-index: 1;
  top: 22%;
  left: max(24px, calc((100% - 1120px) / 2));
  max-width: 390px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 9vw, 112px);
  line-height: 0.88;
}

.lede {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 550;
  line-height: 1.45;
}

.product-shot {
  width: min(355px, 76vw);
  max-height: 72vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.72));
  transform: translateX(24%);
}

.rules {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 92px;
}

.section-heading {
  max-width: 650px;
}

h2 {
  margin-bottom: 38px;
  font-size: 42px;
  line-height: 1.08;
}

.rules ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--border);
}

.rules li {
  min-height: 190px;
  padding: 28px 28px 24px 0;
  border-bottom: 1px solid var(--border);
}

.rules li + li {
  padding-left: 28px;
  border-left: 1px solid var(--border);
}

.rules li span {
  display: block;
  margin-bottom: 26px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
}

.rules li strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.rules li p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

footer {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 14px;
}

footer nav {
  display: flex;
  gap: 20px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  color: var(--text);
}

@media (max-width: 760px) {
  .status {
    max-width: 120px;
    text-align: right;
  }

  .hero {
    min-height: 860px;
    align-items: end;
    padding-top: 170px;
  }

  .hero-copy {
    top: 130px;
    right: 24px;
    left: 24px;
    text-align: center;
  }

  h1 {
    font-size: 64px;
  }

  .lede {
    font-size: 17px;
  }

  .product-shot {
    max-height: 570px;
    transform: none;
  }

  .rules {
    padding-top: 58px;
  }

  h2 {
    font-size: 34px;
  }

  .rules ol {
    grid-template-columns: 1fr;
  }

  .rules li {
    min-height: 0;
    padding: 24px 0;
  }

  .rules li + li {
    padding-left: 0;
    border-left: 0;
  }
}
