:root {
  color-scheme: dark;
  --background: #091016;
  --surface: #111b23;
  --surface-strong: #17242e;
  --text: #f6f3ea;
  --muted: #bcc6cc;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #59d2c7;
  --accent-strong: #f0b45e;
  --danger: #f47a68;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.aural {
  --background: #080b0e;
  --surface: #12171b;
  --surface-strong: #1b2227;
  --accent: #63dce6;
  --accent-strong: #e2b65f;
  --danger: #f26ac2;
}

body.snowday {
  --background: #101a3a;
  --surface: #172b54;
  --surface-strong: #204577;
  --text: #f7fbff;
  --muted: #d7e5f2;
  --line: rgba(215, 229, 242, 0.24);
  --accent: #52c3c6;
  --accent-strong: #ffd166;
  --danger: #f05d50;
}

a {
  color: var(--accent);
}

.site-nav {
  align-items: center;
  background: rgba(6, 10, 13, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 58px;
  padding: 10px max(20px, calc((100vw - 1120px) / 2));
  position: relative;
  z-index: 3;
}

.site-nav strong {
  color: var(--text);
}

.site-nav div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-nav a {
  font-weight: 700;
  text-decoration: none;
}

.hero {
  align-items: end;
  background-position: center;
  background-size: cover;
  display: grid;
  min-height: min(76vh, 780px);
  padding: 64px max(20px, calc((100vw - 1120px) / 2));
  position: relative;
}

.hero::before {
  background: rgba(3, 7, 10, 0.58);
  content: "";
  inset: 0;
  position: absolute;
}

.hero.marketborough {
  background-image: url("/assets/marketborough-key-art.png");
}

.hero.aural-alibi {
  background-image: url("/assets/aural-alibi-key-art.png");
}

.hero.snowday-shuffle {
  background-image: url("/assets/snowday-shuffle-hero.jpg");
  background-position: center 46%;
}

.hero.snowday-shuffle::before {
  background: linear-gradient(90deg, rgba(8, 17, 42, 0.9) 0%, rgba(8, 17, 42, 0.58) 52%, rgba(8, 17, 42, 0.22) 100%);
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.icon {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  height: 104px;
  object-fit: cover;
  width: 104px;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 8vw, 88px);
}

h2 {
  font-size: clamp(28px, 5vw, 44px);
}

h3 {
  font-size: 22px;
}

p,
li {
  color: var(--muted);
  font-size: 18px;
}

.hero p {
  color: #f2f3f4;
  font-size: clamp(19px, 3vw, 25px);
  max-width: 700px;
}

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

.button {
  align-items: center;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: #071113;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  text-decoration: none;
}

.button.secondary {
  background: rgba(5, 10, 13, 0.72);
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--text);
}

.band {
  border-bottom: 1px solid var(--line);
  padding: 56px max(20px, calc((100vw - 1120px) / 2));
}

.band.alt {
  background: var(--surface);
}

.section-intro {
  max-width: 760px;
}

.feature-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 34px;
}

.feature {
  border-top: 3px solid var(--accent-strong);
  padding-top: 18px;
}

.feature p {
  margin-bottom: 0;
}

.proof {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: 30px;
}

.proof div {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
}

.proof strong {
  color: var(--accent);
  display: block;
  font-size: 24px;
}

.shot-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.shot-grid figure {
  margin: 0;
}

.shot-grid img {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  height: auto;
  width: 100%;
}

.shot-grid figcaption {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

.document {
  margin: 0 auto;
  max-width: 920px;
  padding: 56px 20px 72px;
}

.document h1 {
  font-size: clamp(38px, 7vw, 66px);
  margin-bottom: 16px;
}

.document h2 {
  border-top: 1px solid var(--line);
  font-size: 27px;
  margin-top: 38px;
  padding-top: 28px;
}

.document .summary {
  color: var(--text);
  font-size: 22px;
  max-width: 780px;
}

.notice {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  margin: 26px 0;
  padding: 18px 20px;
}

.footer {
  color: var(--muted);
  font-size: 14px;
  padding: 28px max(20px, calc((100vw - 1120px) / 2));
}

@media (max-width: 640px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 72vh;
    padding-bottom: 42px;
  }

  .icon {
    height: 82px;
    width: 82px;
  }

  p,
  li {
    font-size: 16px;
  }

  .hero.snowday-shuffle::before {
    background: rgba(8, 17, 42, 0.68);
  }

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