* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0f1012;
  color: #f5f7fa;
}

.page {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.hero,
.band,
.screens,
.legal,
.footer {
  margin-top: 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 24px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: #ffd600;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
}

h2 {
  font-size: 26px;
  line-height: 1.1;
}

h3 {
  font-size: 17px;
}

.lede,
.hero-note,
.legal-copy p,
.faq-list p,
li,
.footer {
  color: #c7cbd3;
  font-size: 16px;
  line-height: 1.55;
}

.hero-note {
  margin-top: 14px;
  max-width: 680px;
}

.hero-copy,
.band,
.screens,
.legal {
  background: #17191d;
  border: 1px solid #262b33;
  border-radius: 8px;
  padding: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: #ff6b00;
  color: #fff;
}

.button.secondary {
  background: #232831;
  color: #fff;
}

.button.muted {
  background: #101216;
  color: #8d95a3;
  border: 1px solid #2d333d;
}

.hero-media img,
.shot-grid img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid #2a2f38;
}

.content-grid,
.shot-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

article,
figure {
  background: #101216;
  border: 1px solid #262b33;
  border-radius: 8px;
  padding: 16px;
}

figcaption {
  margin-top: 10px;
  color: #9ea5b3;
  font-size: 14px;
}

ul {
  padding-left: 18px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-copy,
.footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
}

a {
  color: #ffd600;
}

@media (max-width: 900px) {
  .hero,
  .content-grid,
  .shot-grid,
  .faq-list,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer {
    padding-bottom: 20px;
  }
}
