:root {
  --black: #080808;
  --black-soft: #141414;
  --paper: #f3f1ea;
  --paper-deep: #e9e5da;
  --white: #ffffff;
  --red: #ff1f3d;
  --blue: #087bff;
  --yellow: #ffd30a;
  --muted: #6f6d66;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(8, 8, 8, 0.17);
  --shell: min(1280px, calc(100vw - 64px));
  --font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--black);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 128px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  color: var(--white);
  background: rgba(8, 8, 8, 0.94);
  border-color: var(--line-dark);
  backdrop-filter: blur(14px);
}

.product-header {
  color: var(--black);
  border-color: var(--line-light);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.header-brand picture,
.header-brand img {
  width: 23px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav > a:not(.header-cta) {
  position: relative;
}

.site-nav > a:not(.header-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}

.site-nav > a:not(.header-cta):hover::after,
.site-nav > a:not(.header-cta):focus-visible::after {
  right: 0;
}

.header-cta {
  padding: 10px 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--white);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.product-header:not(.is-scrolled) .header-cta {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.header-cta:hover,
.header-cta:focus-visible,
.product-header:not(.is-scrolled) .header-cta:hover,
.product-header:not(.is-scrolled) .header-cta:focus-visible {
  color: currentColor;
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: currentColor;
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  min-height: 930px;
  padding: 146px 0 68px;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero-grid {
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(560px, 1.09fr);
  align-items: center;
  gap: 36px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 18px 0 30px;
}

.hero-kicker,
.section-label,
.path-label,
.production-note {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.hero-kicker span {
  padding: 0 6px;
  color: var(--yellow);
}

.hero h1,
.game-story h2,
.section-head h2,
.pieces-copy h2,
.how h2,
.final-cta h2,
.product-copy h1,
.details-heading h2,
.reserve-again h2 {
  margin: 0;
  font-size: clamp(52px, 6.8vw, 106px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero h1 {
  max-width: 660px;
  margin-top: 22px;
}

.hero-lead {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.68;
}

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

.button {
  min-height: 56px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--black);
  background: var(--yellow);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--blue);
}

.hero-product {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
}

.hero-product-panel {
  position: absolute;
  inset: 34px -170px 24px 3%;
  background: var(--paper);
}

.hero-product-panel::before,
.hero-product-panel::after {
  content: "";
  position: absolute;
}

.hero-product-panel::before {
  top: 0;
  left: 0;
  width: 12px;
  height: 92px;
  background: var(--red);
}

.hero-product-panel::after {
  right: 0;
  bottom: 0;
  width: 114px;
  height: 12px;
  background: var(--blue);
}

.hero-product picture {
  position: relative;
  z-index: 1;
  width: min(890px, 113%);
  transform: translate(22px, 30px);
}

.hero-product img {
  width: 100%;
  filter: drop-shadow(0 36px 30px rgba(0, 0, 0, 0.24));
}

.section-label {
  color: var(--muted);
}

.game-story {
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
}

.game-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 100px;
  align-items: start;
}

.game-story-heading h2 {
  max-width: 810px;
  margin-top: 24px;
  font-size: clamp(50px, 6vw, 88px);
}

.game-story-copy {
  padding-top: 39px;
}

.game-story-copy p {
  margin: 0 0 24px;
  color: #4f4e49;
  font-size: 18px;
  line-height: 1.7;
}

.game-story-copy .story-signoff {
  color: var(--black);
  font-weight: 800;
}

.clean-board {
  margin-top: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: end;
  gap: 42px;
  border-top: 1px solid var(--line-light);
  padding-top: 44px;
}

.clean-board-frame {
  min-height: 560px;
  display: grid;
  place-items: center;
  background: var(--paper-deep);
  overflow: hidden;
}

.clean-board-frame picture {
  width: min(720px, 92%);
}

.clean-board-frame img {
  width: 100%;
  filter: drop-shadow(0 24px 22px rgba(46, 27, 12, 0.16));
}

.clean-board > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.paths {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: 160px minmax(0, 850px);
  gap: 56px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(46px, 5.5vw, 82px);
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.path-card {
  min-height: 560px;
  padding: 38px 42px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.path-card + .path-card {
  border-left: 1px solid var(--line-light);
}

.path-number {
  margin: 0 0 88px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.path-label {
  margin-bottom: 16px;
}

.path-card h3 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.path-card p:not(.path-number, .path-label) {
  max-width: 500px;
  margin: 26px 0 0;
  color: #5a5953;
  font-size: 17px;
}

.path-card a {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.path-card a span {
  font-size: 20px;
}

.path-online {
  color: var(--white);
  background: var(--black);
}

.path-online .path-number,
.path-online p:not(.path-label) {
  color: rgba(255, 255, 255, 0.6);
}

.path-online .path-label {
  color: var(--blue);
}

.path-online a {
  border-color: rgba(255, 255, 255, 0.28);
}

.path-physical {
  background: var(--paper-deep);
}

.path-physical .path-label {
  color: var(--red);
}

.pieces-section {
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.pieces-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(530px, 1.22fr);
  align-items: center;
  gap: 56px;
}

.pieces-copy {
  position: relative;
  z-index: 2;
}

.pieces-copy .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.pieces-copy h2 {
  max-width: 650px;
  margin-top: 24px;
  font-size: clamp(48px, 5.3vw, 80px);
}

.pieces-copy > p:not(.section-label) {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
}

.text-link {
  min-width: 270px;
  margin-top: 42px;
  padding-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 800;
}

.pieces-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.pieces-visual::before {
  content: "";
  position: absolute;
  inset: 9% -150px 8% 4%;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pieces-visual picture {
  position: relative;
  z-index: 1;
  width: min(820px, 112%);
  transform: translateX(18px);
}

.pieces-visual img {
  width: 100%;
}

.how {
  background: var(--paper);
}

.section-head.compact {
  margin-bottom: 58px;
}

.rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.rule {
  min-width: 0;
  background: var(--paper);
}

.rule + .rule {
  border-left: 1px solid var(--line-light);
}

.rule-visual {
  height: 300px;
  display: grid;
  place-items: center;
  background: var(--paper-deep);
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
}

.rule-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rule-visual:not(.rule-visual-clean) img {
  object-fit: cover;
}

.rule-visual-clean picture {
  width: 86%;
  height: 86%;
}

.rule-visual-clean img {
  filter: drop-shadow(0 16px 14px rgba(46, 27, 12, 0.15));
}

.rule-copy {
  min-height: 270px;
  padding: 30px 34px 36px;
}

.rule-number {
  margin: 0 0 55px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.rule h3 {
  margin: 0 0 14px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.rule-copy > p:last-child {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
}

.brand-section {
  padding: 126px 0 120px;
  color: var(--white);
  background: var(--black);
}

.brand-section-inner {
  min-height: 680px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.brand-section .section-label {
  color: rgba(255, 255, 255, 0.48);
}

.brand-logo-large {
  width: min(350px, 62vw);
  margin: 68px 0 58px;
}

.brand-logo-large img {
  width: 100%;
}

.brand-section-inner > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}

.final-cta {
  padding: 92px 0;
  color: var(--white);
  background: var(--blue);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.final-cta .section-label {
  color: rgba(255, 255, 255, 0.63);
}

.final-cta h2 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(42px, 5vw, 76px);
}

.site-footer {
  padding: 70px 0 44px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: end;
  gap: 56px;
}

.footer-brand,
.footer-brand picture,
.footer-brand img {
  width: 78px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

/* Board game page */

.product-hero {
  min-height: 900px;
  padding: 145px 0 82px;
  background: var(--paper);
}

.product-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 58px;
}

.product-visual {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 20px 6% 36px -180px;
  background: var(--paper-deep);
}

.product-visual picture {
  position: relative;
  z-index: 1;
  width: min(810px, 112%);
  transform: translateY(22px);
}

.product-visual img {
  width: 100%;
  filter: drop-shadow(0 34px 26px rgba(0, 0, 0, 0.17));
}

.production-note {
  position: absolute;
  right: 0;
  bottom: 38px;
  z-index: 2;
  padding: 13px 16px;
  color: var(--black);
  background: var(--yellow);
}

.product-copy {
  position: relative;
  z-index: 2;
}

.product-copy h1 {
  margin-top: 22px;
  font-size: clamp(54px, 6.3vw, 94px);
}

.product-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #55534e;
  font-size: 18px;
  line-height: 1.67;
}

.reserve-form {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.field label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 58px;
  padding: 0 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 0;
  outline: none;
}

.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.field-error {
  min-height: 22px;
  margin: 7px 0 0;
  color: #b00020;
  font-size: 13px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  margin: 14px 0 24px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: #5a5953;
  font-size: 13px;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.55;
  transform: none;
}

.form-note {
  margin: 15px 0 0;
  color: #73716b;
  font-size: 12px;
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
}

.form-status.success {
  color: #146326;
}

.form-status.error {
  color: #b00020;
}

.form-status.loading {
  color: var(--muted);
}

.product-details {
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 90px;
}

.details-heading .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.details-heading h2 {
  max-width: 820px;
  margin-top: 24px;
  font-size: clamp(52px, 6vw, 90px);
}

.details-text {
  padding-top: 36px;
}

.details-text p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
}

.product-pieces {
  margin-top: 72px;
  border-top: 1px solid var(--line-dark);
}

.product-pieces picture {
  width: min(970px, 94%);
  margin: 38px auto -16px;
}

.product-pieces img {
  width: 100%;
}

.product-facts {
  background: var(--paper);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.fact {
  min-height: 310px;
  padding: 30px 36px 42px;
}

.fact + .fact {
  border-left: 1px solid var(--line-light);
}

.fact > p {
  margin: 0 0 96px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.fact h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.fact span {
  display: block;
  max-width: 310px;
  color: var(--muted);
}

.reserve-again {
  padding: 92px 0;
  color: var(--black);
  background: var(--yellow);
}

.reserve-again-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.reserve-again .section-label {
  color: rgba(8, 8, 8, 0.6);
}

.reserve-again h2 {
  max-width: 900px;
  margin-top: 20px;
  font-size: clamp(42px, 5.5vw, 78px);
}

.reserve-again .button-primary {
  color: var(--white);
  background: var(--black);
}

.reserve-again .button-primary:hover,
.reserve-again .button-primary:focus-visible {
  color: var(--black);
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-delay-short {
  transition-delay: 100ms;
}

.reveal-delay {
  transition-delay: 180ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 44px, 1000px);
  }

  .site-nav {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 20px;
  }

  .hero-product-panel {
    right: -120px;
  }

  .game-story-grid {
    gap: 64px;
  }

  .section-head {
    grid-template-columns: 120px 1fr;
  }

  .pieces-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 26px;
  }

  .product-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 34px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .section {
    padding: 92px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 18px;
    left: 18px;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    color: var(--white);
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid var(--line-dark);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a::after {
    display: none;
  }

  .header-cta,
  .product-header:not(.is-scrolled) .header-cta {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 34px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(56px, 13vw, 90px);
  }

  .hero-product {
    min-height: 560px;
  }

  .hero-product-panel {
    inset: 22px -80px 18px 0;
  }

  .hero-product picture {
    width: min(850px, 112%);
    transform: translateY(24px);
  }

  .game-story-grid,
  .clean-board,
  .section-head,
  .pieces-grid,
  .product-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .game-story-grid {
    gap: 18px;
  }

  .game-story-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .clean-board {
    gap: 20px;
  }

  .clean-board-frame {
    min-height: 500px;
  }

  .path-grid,
  .rules,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .path-card + .path-card,
  .rule + .rule,
  .fact + .fact {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .path-card {
    min-height: 470px;
  }

  .path-number,
  .fact > p {
    margin-bottom: 56px;
  }

  .pieces-visual {
    min-height: 430px;
  }

  .pieces-visual::before {
    inset: 8% -80px 7% 0;
  }

  .pieces-visual picture {
    width: min(820px, 108%);
    transform: none;
  }

  .rule {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  }

  .rule-visual {
    height: 330px;
    border-bottom: 0;
    border-right: 1px solid var(--line-light);
  }

  .rule-copy {
    min-height: 330px;
  }

  .brand-section-inner {
    min-height: 580px;
  }

  .final-cta-inner,
  .reserve-again-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-cta .button,
  .reserve-again .button {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .product-hero {
    min-height: auto;
    padding: 116px 0 82px;
  }

  .product-grid {
    min-height: auto;
  }

  .product-visual {
    min-height: 560px;
    order: 2;
  }

  .product-copy {
    order: 1;
  }

  .product-visual::before {
    inset: 20px -80px 34px 0;
  }

  .product-visual picture {
    width: min(820px, 110%);
  }

  .production-note {
    right: 0;
    bottom: 24px;
  }

  .details-text {
    padding-top: 0;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .section {
    padding: 74px 0;
  }

  .header-brand span {
    display: none;
  }

  .header-brand picture,
  .header-brand img {
    width: 22px;
    height: 32px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-kicker {
    max-width: 290px;
    line-height: 1.6;
  }

  .hero h1,
  .product-copy h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .hero-lead,
  .product-lead,
  .game-story-copy p,
  .pieces-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    min-height: 380px;
  }

  .hero-product-panel {
    inset: 18px -50px 12px 0;
  }

  .hero-product-panel::before {
    width: 8px;
    height: 54px;
  }

  .hero-product-panel::after {
    width: 70px;
    height: 8px;
  }

  .hero-product picture {
    width: 115%;
    transform: translateY(18px);
  }

  .game-story h2,
  .section-head h2,
  .pieces-copy h2,
  .details-heading h2,
  .reserve-again h2,
  .final-cta h2 {
    font-size: 44px;
  }

  .clean-board {
    margin-top: 54px;
  }

  .clean-board-frame {
    min-height: 360px;
  }

  .path-card {
    min-height: 430px;
    padding: 28px 24px 26px;
  }

  .path-card h3 {
    font-size: 40px;
  }

  .pieces-visual {
    min-height: 290px;
  }

  .pieces-visual picture {
    width: 112%;
  }

  .rule {
    display: block;
  }

  .rule-visual {
    height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .rule-copy {
    min-height: 245px;
    padding: 28px 24px 30px;
  }

  .rule-number {
    margin-bottom: 48px;
  }

  .brand-section {
    padding: 90px 0 84px;
  }

  .brand-section-inner {
    min-height: 500px;
  }

  .brand-logo-large {
    width: min(270px, 70vw);
    margin: 50px 0 44px;
  }

  .final-cta,
  .reserve-again {
    padding: 72px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .product-visual {
    min-height: 390px;
  }

  .product-visual picture {
    width: 118%;
  }

  .production-note {
    right: 0;
    bottom: 10px;
    font-size: 10px;
  }

  .product-pieces picture {
    width: 112%;
    margin-left: -6%;
  }

  .fact {
    min-height: 230px;
    padding: 28px 24px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* One typeface throughout the site */
html,
body,
h1,
h2,
h3,
h4,
p,
a,
span,
label,
button,
input,
textarea,
select {
  font-family: Arial, Helvetica, sans-serif;
}
