:root {
  --bg: #12101a;
  --panel: #1a1724;
  --ink: #f3ece0;
  --mute: #9a9284;
  --gold: #d4b05a;
  --gold-dim: rgba(212, 176, 90, 0.22);
  --purple: #6e4aa8;
  --green: #4a9a62;
  --line: rgba(243, 236, 224, 0.12);
  --gutter: max(0.75rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  --page: min(52rem, 100%);
  --header-h: 3.75rem;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}
*, *::before, *::after { box-sizing: border-box; }
html {
  color-scheme: dark;
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background:
    radial-gradient(56rem 26rem at 8% -12%, rgba(110, 74, 168, 0.22), transparent 58%),
    radial-gradient(44rem 24rem at 100% 0%, rgba(74, 154, 98, 0.1), transparent 52%),
    var(--bg);
  color: var(--ink);
  font: 16px/1.5 "Segoe UI", system-ui, sans-serif;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
h1 {
  font: 700 clamp(1.35rem, 4vw, 1.85rem)/1.2 Georgia, "Times New Roman", serif;
  margin: 0 0 0.4rem;
  text-wrap: balance;
}
.wrap, .top-bar {
  width: var(--page);
  margin-inline: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
#why, #life, #play, #buy, #story, #trailer, #box { scroll-margin-top: calc(var(--header-h) + var(--safe-t) + 0.75rem); }

.top {
  position: sticky; top: 0; z-index: 30;
  padding-top: var(--safe-t);
  background: rgba(18, 16, 26, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dim);
}
.top-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: var(--header-h);
  flex-wrap: nowrap;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: inherit; text-decoration: none;
  font-weight: 700; font-size: 1rem;
  min-width: 0;
}
.brand img {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.brand-text { white-space: nowrap; }
.nav {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav a { color: var(--ink); text-decoration: none; white-space: nowrap; }
.nav a:hover { color: var(--gold); }
.nav-rules { color: var(--gold); }
.nav-mobile {
  margin-left: auto;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.1rem; border-radius: 4px; border: 0;
  background: var(--gold); color: #16120a;
  font: 700 0.95rem/1 "Segoe UI", system-ui, sans-serif;
  text-decoration: none;
}
.btn:hover { filter: brightness(1.06); }
.btn-ghost {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(212, 176, 90, 0.45);
}
.btn-top { flex-shrink: 0; padding: 0.55rem 0.9rem; }

.hero {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem 0 0.5rem;
}
.hero .cover {
  width: min(22rem, calc(100% - 12px));
  margin-inline: auto;
  outline: 1px solid var(--gold);
  box-shadow: 0 0 0 5px var(--gold-dim);
}
.hero-copy h1 { margin: 0 0 0.35rem; }
.slogan {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-weight: 700;
  font-size: clamp(1rem, 2.6vw, 1.15rem);
}
.hero-copy p { margin: 0 0 0.75rem; color: #d8d0c2; }
.quote {
  margin: 0 0 0.9rem;
  padding: 0.15rem 0 0.15rem 0.8rem;
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
  color: #d8d0c2;
}
.quote cite {
  display: block;
  margin-top: 0.4rem;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--mute);
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin: 1.1rem 0 1rem;
}
.specs > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.28rem;
  min-width: 0;
  padding: 0.7rem 0.3rem 0.65rem;
  background: var(--panel);
  border: 1px solid var(--gold-dim);
}
.specs svg { width: 1.4rem; height: 1.4rem; color: var(--gold); flex-shrink: 0; }
.specs b { display: block; font-size: 1.1rem; line-height: 1; color: var(--ink); white-space: nowrap; }
.specs span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
}

.ribbon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0 0 0.25rem;
}
.ribbon span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 2.55rem;
  padding: 0.4rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(212, 176, 90, 0.35);
  white-space: normal;
}
.ribbon span:nth-child(3n) { color: #c9b6ef; background: rgba(110, 74, 168, 0.28); border-color: rgba(110, 74, 168, 0.45); }
.ribbon span:nth-child(3n+2) { color: #b7e0c2; background: rgba(74, 154, 98, 0.2); border-color: rgba(74, 154, 98, 0.4); }

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0.2rem 0 0.7rem;
  line-height: 1.15;
}
.price small { font-size: 0.82rem; color: var(--mute); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.15rem 0 0.55rem; }
.ship { font-size: 0.88rem; color: var(--mute); margin: 0.4rem 0 0; }
.pay-missing { display: none; font-size: 0.88rem; color: #c4b48a; margin-top: 0.4rem; }

.sec { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.sec h2 {
  margin: 0 0 0.5rem;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.lead { margin: 0 0 0.85rem; color: var(--mute); font-size: 0.95rem; }

.g { display: grid; gap: 0.5rem; }
.g + .g, .g + img, .g + .life-board { margin-top: 0.5rem; }
.g img, .life-board {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #0c0a12;
}
.life-board { aspect-ratio: 16 / 9; }
.duo { grid-template-columns: 1fr 1fr; }
.trio { grid-template-columns: 1fr; }
.split { grid-template-columns: 1fr; align-items: stretch; }
.split img, .split video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #000;
}
.split video { object-fit: contain; }

.player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.why { display: grid; grid-template-columns: 1fr; gap: 0.65rem; }
.why div {
  padding: 0.9rem 0.95rem 1rem;
  background: var(--panel);
  border-top: 3px solid var(--gold);
  font-size: 0.95rem;
  color: #d8d0c2;
}
.why div:nth-child(2) { border-top-color: var(--purple); }
.why div:nth-child(3) { border-top-color: var(--green); }
.why b { display: block; color: var(--ink); margin-bottom: 0.35rem; font-size: 1rem; }

.lore {
  margin-top: 0.85rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(90deg, rgba(110, 74, 168, 0.28), rgba(74, 154, 98, 0.12));
  border: 1px solid rgba(212, 176, 90, 0.28);
  color: var(--ink);
  font-size: 0.98rem;
}

.story-copy p { margin: 0 0 0.75rem; color: #d8d0c2; }
.story-copy img {
  width: 100%;
  margin: 0.6rem 0 0.85rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pdfs { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.pdfs a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid var(--gold-dim);
  background: rgba(18, 16, 26, 0.5);
  text-decoration: none;
  font-size: 0.95rem; font-weight: 700;
}
.pdfs a:hover { border-color: var(--gold); }
.pdfs a.pdf-main {
  background: var(--gold);
  color: #16120a;
  border-color: var(--gold);
}

.buy {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem 1rem;
  background: var(--panel);
  border: 1px solid var(--gold);
}
.buy .price { margin: 0; }
button.btn { border: 0; cursor: pointer; font-family: inherit; justify-self: stretch; width: 100%; max-width: 22rem; }
.order { display: grid; gap: 0.7rem; width: 100%; max-width: 36rem; }
.order label { display: grid; gap: 0.3rem; font-size: 0.88rem; color: var(--mute); font-weight: 600; }
.order label span { font-weight: 400; }
.order input[type="text"],
.order input[type="tel"],
.order input[type="email"],
.order textarea {
  width: 100%;
  max-width: 100%;
  background: #12101a;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.7rem 0.8rem;
  font: inherit;
  border-radius: 4px;
}
.order input:focus,
.order textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.order-row { display: grid; grid-template-columns: 1fr; gap: 0.7rem; }
.countries {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}
.countries legend { font-size: 0.88rem; color: var(--mute); font-weight: 600; padding: 0; margin-right: 0.4rem; }
.countries label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 600;
}
.order .consent {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-weight: 400;
  color: var(--mute);
}
.order .consent input { margin-top: 0.2rem; flex-shrink: 0; }
.consent-fine {
  margin: -0.35rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #7a7468;
}
.consent-fine a { color: #9a9284; }
.faq details { border-top: 1px solid var(--line); padding: 0.7rem 0; font-size: 0.95rem; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 0.5rem 0 0; color: #d8d0c2; }

.fine {
  padding: 1.15rem 0 calc(1.5rem + var(--safe-b));
  border-top: 1px solid var(--line);
  font-size: 0.8rem; line-height: 1.65; color: #7a7468;
}
.fine a { color: #9a9284; }
.fine p { margin: 0 0 0.25rem; }

.stick-buy {
  display: flex;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 25;
  background: #1a1724;
  border-top: 1px solid var(--gold-dim);
  padding: 0.65rem max(0.9rem, env(safe-area-inset-right, 0px)) calc(0.65rem + var(--safe-b)) max(0.9rem, env(safe-area-inset-left, 0px));
  align-items: center; gap: 0.65rem;
  min-height: calc(3.5rem + var(--safe-b));
}
.stick-buy .btn { margin-left: auto; }
body:has(.stick-buy) { padding-bottom: calc(3.6rem + var(--safe-b)); }

.muted { color: var(--mute); }
.note { font-size: 0.92rem; color: var(--mute); margin-top: 0.5rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.65rem; }
.cta-row .btn { flex: 1 1 12rem; }
.kicker { margin: 0 0 0.4rem; color: var(--gold); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }

@media (min-width: 40rem) {
  .specs { gap: 0.55rem; }
  .specs > div {
    flex-direction: row;
    text-align: left;
    padding: 0.85rem 0.9rem;
    gap: 0.7rem;
  }
  .specs svg { width: 2rem; height: 2rem; }
  .specs b { font-size: 1.35rem; }
  .specs span { font-size: 0.68rem; letter-spacing: 0.06em; margin-top: 0.15rem; }
  .ribbon { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ribbon span { min-height: 2.7rem; font-size: 0.72rem; padding: 0.45rem 0.6rem; }
  .order-row { grid-template-columns: 1fr 1fr; }
  .why { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trio { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr 1fr; }
  button.btn { justify-self: start; width: auto; }
  .stick-buy { display: none; }
  body:has(.stick-buy) { padding-bottom: 0; }
}

@media (min-width: 56rem) {
  .nav { display: flex; }
  .nav-mobile { display: none; }
  .hero {
    grid-template-columns: minmax(16rem, 20rem) minmax(0, 1fr);
    align-items: start;
    gap: 1.6rem;
    padding-top: 1.6rem;
  }
  .hero .cover { width: 100%; margin-inline: 0; }
}

@media (max-width: 22.5rem) {
  .brand-text { display: none; }
}
