@font-face {
  font-family: "Press Start 2P";
  src: url("/fonts/press-start-2p-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --navy-950: #050b17;
  --navy-900: #071225;
  --navy-850: #0a1932;
  --navy-800: #102344;
  --cream-50: #fffdf6;
  --cream-100: #f8f0df;
  --cream-200: #ebdfc6;
  --ink: #0b1528;
  --muted: #556078;
  --red-600: #d21f37;
  --red-700: #ae172b;
  --blue-600: #245db9;
  --blue-700: #16438a;
  --gold-400: #ffc944;
  --gold-500: #efa91e;
  --gold-700: #9b6310;
  --white: #ffffff;
  --shadow: #020712;
  --font-pixel: "Press Start 2P", "Courier New", monospace;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: 1200px;
  color-scheme: light;
  font-family: var(--font-body);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--cream-100);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: var(--blue-600);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--blue-700);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 4px solid var(--gold-400);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-400);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-180%);
  border: 3px solid var(--navy-950);
  background: var(--gold-400);
  color: var(--navy-950);
  padding: 10px 14px;
  font-family: var(--font-pixel);
  font-size: 10px;
  text-decoration: none;
}

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

.wrap,
.nav-shell {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 75% 22%, rgba(36, 93, 185, 0.18), transparent 32%),
    var(--navy-900);
  background-size: 7px 7px, 7px 7px, auto, auto;
  color: var(--cream-50);
}

.section-light {
  background: var(--cream-50);
}

.section-paper {
  background:
    linear-gradient(90deg, rgba(11, 21, 40, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(11, 21, 40, 0.025) 1px, transparent 1px),
    var(--cream-100);
  background-size: 8px 8px;
}

.section-blue {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--blue-700);
  background-size: 8px 8px;
  color: var(--cream-50);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold-400);
  background: rgba(5, 11, 23, 0.96);
  color: var(--cream-50);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(5, 11, 23, 0.985);
  box-shadow: 0 9px 0 rgba(2, 7, 18, 0.34);
}

.site-nav,
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo,
.logo {
  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.site-logo img,
.logo img {
  width: 132px;
  height: 44px;
  object-fit: contain;
}

.primary-nav,
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
}

.primary-nav a,
.nav-links a,
.download-nav a {
  color: var(--cream-50);
  font-family: var(--font-pixel);
  font-size: 9px;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:hover,
.nav-links a:hover,
.download-nav a:hover {
  color: var(--gold-400);
}

.primary-nav .nav-cta,
.nav-links .nav-cta {
  border: 2px solid var(--gold-400);
  background: var(--red-600);
  box-shadow: 3px 3px 0 var(--gold-700);
  padding: 10px 12px;
  color: var(--white);
}

.primary-nav .nav-cta:hover,
.nav-links .nav-cta:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--gold-700);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gold-400);
  background: transparent;
  color: var(--cream-50);
  padding: 10px 11px;
  font-family: var(--font-pixel);
  font-size: 9px;
  text-transform: uppercase;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }

.hero-arena {
  min-height: min(800px, calc(100svh - 76px));
  display: grid;
  align-items: center;
  border-bottom: 4px solid var(--gold-400);
  padding: clamp(64px, 9vw, 112px) 0 clamp(70px, 10vw, 122px);
}

.hero-arena::before,
.boss-section::before,
.final-cta::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 201, 68, 0.34);
  pointer-events: none;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
}

.hero-copy {
  min-width: 0;
  padding-block: 30px;
}

.hero-copy h1 {
  max-width: 730px;
  margin: 0;
  color: var(--cream-50);
  font-family: var(--font-pixel);
  font-size: clamp(38px, 3.8vw, 50px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.22;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: inline-block;
  color: var(--gold-400);
  font-size: 0.84em;
  text-shadow: 5px 5px 0 var(--red-700);
}

.hero-lede {
  max-width: 670px;
  margin: 32px 0 0;
  color: #d9dfeb;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.65;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--navy-950);
  box-shadow: 6px 6px 0 var(--shadow);
  padding: 15px 20px;
  color: var(--white);
  font-family: var(--font-pixel);
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 120ms ease, transform 120ms ease, background-color 120ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--shadow);
  color: var(--white);
  text-decoration: none;
}

.button-primary {
  border-color: var(--gold-400);
  background: var(--red-600);
}

.button-primary:hover {
  background: var(--red-700);
}

.button-ghost,
.button.secondary {
  border-color: var(--cream-50);
  background: transparent;
  color: var(--cream-50);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button-large {
  min-height: 62px;
  padding: 17px 24px;
  font-size: 11px;
}

.button[data-store-state="pending"]::before {
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--gold-400);
  content: "";
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.78;
}

.availability-note {
  margin: 22px 0 0;
  color: #99a7bd;
  font-size: 14px;
}

.arena-frame {
  position: relative;
  border: 5px solid var(--gold-400);
  background: var(--navy-950);
  box-shadow: 12px 12px 0 var(--red-700), 19px 19px 0 var(--shadow);
  padding: 10px;
}

.arena-frame::after {
  position: absolute;
  inset: 6px;
  border: 2px solid rgba(255, 253, 246, 0.55);
  pointer-events: none;
  content: "";
}

.arena-frame-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 3px solid var(--gold-400);
  padding: 10px 12px 12px;
  color: var(--gold-400);
  font-family: var(--font-pixel);
  font-size: 8px;
  line-height: 1.3;
  text-transform: uppercase;
}

.arena-frame-top span:nth-child(2) { color: var(--cream-50); text-align: center; }
.arena-frame-top span:last-child { text-align: right; }
.arena-frame > img { width: 100%; }

.hero-floor {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28px;
  background: repeating-linear-gradient(90deg, var(--red-700) 0 32px, #7c0e20 32px 64px);
  box-shadow: inset 0 5px 0 var(--gold-400), inset 0 -5px 0 var(--navy-950);
}

.proof-rail {
  border-bottom: 4px solid var(--navy-950);
  background: var(--red-600);
  color: var(--cream-50);
}

.proof-rail-inner {
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 80px);
}

.proof-rail p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.proof-rail strong {
  color: var(--gold-400);
  font-family: var(--font-pixel);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
}

.proof-rail span {
  max-width: 150px;
  font-family: var(--font-pixel);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

.proof-divider {
  width: 2px;
  height: 55px;
  background: rgba(255, 253, 246, 0.38);
}

.transformation-section,
.loop-section,
.boss-section,
.party-section,
.fit-section,
.faq-section {
  padding: clamp(82px, 10vw, 142px) 0;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 52px;
}

.section-index,
.eyebrow {
  margin: 0 0 18px;
  color: var(--red-600);
  font-family: var(--font-pixel);
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-index-gold { color: var(--gold-400); }
.section-index-cream { color: var(--cream-50); }

.section-heading h2,
.loop-intro h2,
.boss-heading h2,
.party-copy h2,
.fit-title h2,
.faq-intro h2,
.final-cta h2,
.legal-hero h1,
.download-card h1 {
  margin: 0;
  font-family: var(--font-pixel);
  font-size: clamp(31px, 4.6vw, 58px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: balance;
}

.section-heading > p:last-child,
.loop-intro > p:last-child,
.boss-heading > p,
.party-copy > p,
.fit-copy > p,
.faq-intro > p {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}

.transformation-art {
  margin: 0;
  border: 5px solid var(--navy-950);
  background: var(--navy-950);
  box-shadow: 12px 12px 0 var(--red-600);
}

.transformation-art img {
  width: 100%;
}

.transformation-art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 3px solid var(--gold-400);
  padding: 18px 20px;
  color: var(--cream-50);
  font-family: var(--font-pixel);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

.loop-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 10vw, 145px);
}

.loop-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.loop-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.loop-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: start;
  gap: 24px;
  border-top: 3px solid var(--navy-950);
  padding: 34px 0 40px;
}

.loop-step:last-child {
  border-bottom: 3px solid var(--navy-950);
}

.step-number {
  color: var(--red-600);
  font-family: var(--font-pixel);
  font-size: 15px;
}

.loop-step h3 {
  margin: 0;
  font-family: var(--font-pixel);
  font-size: clamp(17px, 2.2vw, 25px);
  font-weight: 400;
  line-height: 1.45;
}

.loop-step p {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.step-status {
  min-width: 74px;
  border: 2px solid var(--navy-950);
  background: var(--red-600);
  padding: 8px 10px;
  color: var(--white);
  font-family: var(--font-pixel);
  font-size: 8px;
  text-align: center;
  text-transform: uppercase;
}

.step-status-blue { background: var(--blue-600); }
.step-status-gold { background: var(--gold-400); color: var(--navy-950); }

.boss-section {
  border-block: 4px solid var(--gold-400);
}

.boss-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
  margin-bottom: 58px;
}

.boss-heading > p {
  color: #b9c3d3;
}

.boss-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.boss-card {
  min-width: 0;
  border: 3px solid var(--gold-400);
  background: var(--navy-950);
  box-shadow: 7px 7px 0 rgba(210, 31, 55, 0.8);
}

.boss-portrait {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-400);
  background: var(--navy-800);
}

.boss-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.boss-card:hover .boss-portrait img {
  transform: scale(1.025);
}

.boss-portrait > span {
  position: absolute;
  right: 8px;
  bottom: 8px;
  border: 2px solid var(--gold-400);
  background: var(--red-600);
  padding: 8px 9px;
  color: var(--white);
  font-family: var(--font-pixel);
  font-size: 8px;
  text-transform: uppercase;
}

.boss-copy {
  padding: 22px 18px 24px;
}

.boss-copy p {
  margin: 0 0 10px;
  color: var(--gold-400);
  font-family: var(--font-pixel);
  font-size: 8px;
  text-transform: uppercase;
}

.boss-copy h3 {
  min-height: 52px;
  margin: 0;
  color: var(--cream-50);
  font-family: var(--font-pixel);
  font-size: clamp(13px, 1.45vw, 18px);
  font-weight: 400;
  line-height: 1.45;
}

.boss-copy > span {
  display: block;
  margin-top: 16px;
  color: #aeb9ca;
  font-size: 14px;
  line-height: 1.45;
}

.party-section {
  border-bottom: 4px solid var(--navy-950);
}

.party-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.party-layout > *,
.leaderboard,
.leaderboard li,
.leaderboard li span {
  min-width: 0;
}

.party-copy > p {
  color: #e1e8f2;
}

.party-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.party-points li {
  border: 2px solid var(--cream-50);
  padding: 10px 12px;
  color: var(--cream-50);
  font-family: var(--font-pixel);
  font-size: 8px;
  line-height: 1.4;
  text-transform: uppercase;
}

.leaderboard {
  border: 5px solid var(--navy-950);
  background: var(--cream-50);
  box-shadow: 12px 12px 0 var(--gold-400);
  color: var(--ink);
  padding: 22px;
}

.leaderboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 3px solid var(--navy-950);
  padding-bottom: 17px;
}

.leaderboard-header span,
.leaderboard-header strong {
  display: block;
  font-family: var(--font-pixel);
  text-transform: uppercase;
}

.leaderboard-header span {
  margin-bottom: 10px;
  color: var(--red-600);
  font-size: 8px;
}

.leaderboard-header strong {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.4;
}

.leaderboard-header img {
  width: 58px;
}

.leaderboard ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.leaderboard li {
  display: grid;
  grid-template-columns: 36px 56px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--cream-200);
  padding: 16px 0;
}

.leaderboard .rank { width: 34px; }
.leaderboard .avatar { width: 54px; border: 2px solid var(--navy-950); background: var(--cream-200); }
.leaderboard li span { min-width: 0; }
.leaderboard li strong { display: block; font-family: var(--font-pixel); font-size: 9px; line-height: 1.45; }
.leaderboard li small { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; }
.leaderboard li b { font-family: var(--font-pixel); font-size: 10px; white-space: nowrap; }
.leaderboard > p { margin: 16px 0 0; color: var(--muted); font-size: 12px; }

.fit-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 10vw, 150px);
}

.fit-copy > p { margin-top: 2px; }

.fit-list {
  margin: 38px 0 0;
}

.fit-list > div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px;
  border-top: 2px solid var(--navy-950);
  padding: 20px 0;
}

.fit-list > div:last-child {
  border-bottom: 2px solid var(--navy-950);
}

.fit-list dt {
  color: var(--red-600);
  font-family: var(--font-pixel);
  font-size: 8px;
  line-height: 1.5;
  text-transform: uppercase;
}

.fit-list dd {
  margin: 0;
  font-weight: 750;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 10vw, 145px);
}

.faq-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-intro > p {
  font-size: 17px;
}

.faq-list details {
  border-top: 3px solid var(--navy-950);
}

.faq-list details:last-child {
  border-bottom: 3px solid var(--navy-950);
}

.faq-list summary {
  position: relative;
  padding: 26px 55px 26px 0;
  cursor: pointer;
  font-family: var(--font-pixel);
  font-size: clamp(13px, 1.8vw, 18px);
  line-height: 1.6;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 2px solid var(--navy-950);
  background: var(--gold-400);
  content: "+";
  font-family: var(--font-pixel);
  font-size: 13px;
}

.faq-list details[open] summary::after { content: "−"; background: var(--red-600); color: var(--white); }
.faq-list details > p { max-width: 760px; margin: -5px 55px 28px 0; color: var(--muted); }

.final-cta {
  border-top: 4px solid var(--gold-400);
  padding: clamp(84px, 11vw, 145px) 0;
  text-align: center;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta img {
  width: 180px;
  margin-bottom: 35px;
}

.final-cta h2 {
  max-width: 980px;
  color: var(--gold-400);
}

.final-cta p {
  max-width: 660px;
  margin: 26px auto 32px;
  color: #c2ccdc;
  font-size: 19px;
}

.site-footer {
  border-top: 4px solid var(--gold-400);
  background: var(--navy-950);
  color: #aeb9ca;
}

.footer-main {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 40px;
  padding-block: 52px;
}

.footer-grid {
  width: min(var(--wrap), calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(130px, 1fr));
  align-items: start;
  gap: clamp(28px, 5vw, 68px);
  margin-inline: auto;
  padding-block: 52px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-grid > div:first-child img { width: 150px; }
.footer-grid > div:first-child p { max-width: 260px; margin: 4px 0 0; }
.footer-grid strong { color: var(--gold-400); font-family: var(--font-pixel); font-size: 9px; line-height: 1.5; text-transform: uppercase; }

.footer-logo img { width: 150px; }
.footer-main > p { max-width: 420px; margin: 0; }
.footer-main nav,
.footer-grid nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 15px 24px; }
.footer-main a,
.footer-grid a { color: var(--cream-50); font-family: var(--font-pixel); font-size: 8px; line-height: 1.5; text-decoration: none; text-transform: uppercase; }
.footer-main a:hover,
.footer-grid a:hover { color: var(--gold-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #26334a;
  padding-block: 22px 26px;
  color: #7f8ba0;
  font-size: 12px;
}

.site-footer > .footer-bottom:not(.wrap) {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.compact-footer .footer-bottom { border-top: 0; }

.download-nav { display: flex; gap: 24px; }
.download-main { min-height: calc(100svh - 180px); display: grid; place-items: center; padding: 75px 24px 100px; }
.download-card { position: relative; z-index: 1; width: min(760px, 100%); border: 5px solid var(--gold-400); background: var(--cream-50); box-shadow: 12px 12px 0 var(--red-700); padding: clamp(36px, 7vw, 74px); color: var(--ink); text-align: center; }
.download-card > img { width: 190px; margin: 0 auto 36px; }
.download-card h1 { color: var(--ink); font-size: clamp(29px, 5vw, 51px); }
.download-card > p { max-width: 620px; margin: 26px auto; color: var(--muted); font-size: 19px; }
.download-card .button { margin-top: 8px; }
.download-card .download-fineprint { margin-top: 24px; font-size: 13px; }
.download-status { display: inline-block; margin: 0 auto 28px; border: 2px solid var(--navy-950); background: var(--gold-400); padding: 8px 10px; font-family: var(--font-pixel); font-size: 8px; text-transform: uppercase; }
.download-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 22px; border-top: 2px solid var(--cream-200); margin-top: 34px; padding-top: 24px; }
.download-links a { font-weight: 750; }

/* Shared legal and support surfaces */
.legal-page {
  background: var(--cream-100);
}

.legal-hero {
  border-bottom: 4px solid var(--gold-400);
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    var(--navy-900);
  background-size: 8px 8px;
  color: var(--cream-50);
  padding: clamp(62px, 9vw, 110px) max(24px, calc((100% - var(--wrap)) / 2));
}

.legal-hero .wrap { max-width: 920px; }
.legal-hero h1 { max-width: 900px; color: var(--cream-50); font-size: clamp(31px, 5vw, 54px); }
.legal-hero p:not(.section-index):not(.eyebrow) { max-width: 780px; margin: 25px 0 0; color: #c5cfde; font-size: 19px; }

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 28px;
  color: #9dabc0;
  font-size: 13px;
}

.legal-layout {
  width: min(var(--wrap), calc(100% - 48px));
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(48px, 8vw, 110px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.legal-nav {
  position: sticky;
  top: 112px;
  align-self: start;
  border: 3px solid var(--navy-950);
  background: var(--cream-50);
  box-shadow: 6px 6px 0 var(--navy-950);
  padding: 20px;
}

.legal-nav strong {
  display: block;
  margin-bottom: 15px;
  color: var(--red-600);
  font-family: var(--font-pixel);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  border-top: 1px solid var(--cream-200);
  padding: 10px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.legal-nav a:hover { color: var(--red-600); }
.legal-content { min-width: 0; }
.legal-section { scroll-margin-top: 110px; margin-bottom: 64px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section > h2 { margin: 0 0 24px; font-family: var(--font-pixel); font-size: clamp(20px, 3vw, 30px); font-weight: 400; line-height: 1.45; }
.legal-section > h3 { margin: 36px 0 12px; color: var(--red-600); font-family: var(--font-pixel); font-size: 13px; font-weight: 400; line-height: 1.5; }
.legal-section p,
.legal-section li { color: #3f4a5d; }
.legal-section ul,
.legal-section ol { padding-left: 24px; }
.legal-section li { margin: 9px 0; }

.legal-card,
.support-card {
  border: 3px solid var(--navy-950);
  background: var(--cream-50);
  box-shadow: 6px 6px 0 var(--navy-950);
  padding: 26px;
}

.legal-card h3,
.support-card h2,
.support-card h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-pixel);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.support-card p:last-child { margin-bottom: 0; }
.steps { padding-left: 0 !important; list-style: none; counter-reset: steps; }
.steps > li { position: relative; min-height: 42px; counter-increment: steps; padding: 3px 0 20px 58px; }
.steps > li::before { position: absolute; top: 0; left: 0; width: 40px; height: 40px; display: grid; place-items: center; border: 2px solid var(--navy-950); background: var(--gold-400); content: counter(steps, decimal-leading-zero); font-family: var(--font-pixel); font-size: 8px; }
.link-list { margin: 0; padding: 0 !important; list-style: none; }
.link-list li { border-top: 1px solid var(--cream-200); margin: 0; padding: 13px 0; }
.link-list li:first-child { border-top: 0; padding-top: 0; }

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 3px solid var(--navy-950);
  background: var(--cream-50);
}

.data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid var(--cream-200);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--navy-900);
  color: var(--cream-50);
  font-family: var(--font-pixel);
  font-size: 8px;
  line-height: 1.5;
  text-transform: uppercase;
}

.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:nth-child(even) { background: rgba(235, 223, 198, 0.28); }

.callout,
.notice {
  border: 3px solid var(--navy-950);
  border-left-width: 10px;
  background: var(--cream-50);
  box-shadow: 5px 5px 0 var(--navy-950);
  margin: 28px 0;
  padding: 20px 22px;
}

.callout.info,
.notice { border-left-color: var(--blue-600); }
.callout.warning { border-left-color: var(--red-600); background: #fff4e2; }
.callout strong { color: var(--ink); }

.legal-page > .callout,
.legal-page > .legal-section {
  width: min(var(--wrap), calc(100% - 48px));
  margin-inline: auto;
}

.legal-page > .legal-section {
  margin-block: clamp(58px, 8vw, 92px);
}

/* Compatibility for the original static launch pages while they migrate. */
.page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--red-600);
  font-family: var(--font-pixel);
  font-size: 12px;
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 4px solid var(--navy-950);
  background: var(--gold-400);
  box-shadow: 5px 5px 0 var(--navy-950);
  color: var(--navy-950);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
}

.page > .hero,
.panel {
  border: 4px solid var(--navy-950);
  background: var(--cream-50);
  box-shadow: 8px 8px 0 var(--navy-950);
  padding: clamp(24px, 5vw, 48px);
}

.page > .hero h1 { margin: 0; font-family: var(--font-pixel); font-size: clamp(30px, 6vw, 54px); font-weight: 400; line-height: 1.3; }
.page > .hero p,
.panel p { color: var(--muted); }
.page .grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.panel h2 { margin: 0 0 14px; font-family: var(--font-pixel); font-size: clamp(18px, 3vw, 26px); font-weight: 400; line-height: 1.45; }
.panel h3 { margin: 30px 0 12px; color: var(--red-600); font-family: var(--font-pixel); font-size: 12px; font-weight: 400; line-height: 1.5; text-transform: uppercase; }
.rule { width: 150px; height: 10px; margin: 22px 0; background: linear-gradient(90deg, var(--gold-400) 0 42%, var(--navy-950) 42% 54%, transparent 54% 62%, var(--navy-950) 62% 74%, transparent 74% 82%, var(--navy-950) 82% 100%); }
.page > .footer { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 42px; color: var(--muted); font-size: 13px; }

.js .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal[data-reveal-delay="1"] { transition-delay: 80ms; }
.js .reveal[data-reveal-delay="2"] { transition-delay: 160ms; }
.js .reveal[data-reveal-delay="3"] { transition-delay: 240ms; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .hero-copy h1 { font-size: clamp(38px, 4.5vw, 50px); }
  .boss-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
  .boss-copy h3 { min-height: 0; }
  .party-layout { grid-template-columns: 0.8fr 1.2fr; gap: 50px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 76px; }
  .wrap,
  .nav-shell { width: min(100% - 32px, var(--wrap)); }
  .nav-toggle { display: inline-flex; }
  .primary-nav,
  .nav-links {
    position: absolute;
    top: calc(100% + 3px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 3px solid var(--gold-400);
    background: var(--navy-950);
    padding: 12px 16px 20px;
  }
  .primary-nav[data-open="true"],
  .nav-links[data-open="true"] { display: flex; }
  .primary-nav a,
  .nav-links a { border-bottom: 1px solid #26334a; padding: 15px 12px; }
  .primary-nav .nav-cta,
  .nav-links .nav-cta { margin-top: 10px; text-align: center; }
  .hero-arena { min-height: auto; padding-top: 74px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-copy h1 { font-size: clamp(42px, 8vw, 58px); }
  .hero-visual { max-width: 690px; }
  .loop-layout,
  .faq-layout { grid-template-columns: 1fr; gap: 52px; }
  .loop-intro,
  .faq-intro { position: static; }
  .boss-heading { grid-template-columns: 1fr; gap: 12px; }
  .party-layout,
  .fit-layout { grid-template-columns: 1fr; gap: 58px; }
  .leaderboard { max-width: 680px; }
  .footer-main { grid-template-columns: 150px 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main nav,
  .footer-grid nav { grid-column: 1 / -1; justify-content: flex-start; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
  .legal-nav strong { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .site-nav,
  .nav-shell { min-height: 70px; }
  .site-logo img,
  .logo img { width: 112px; height: auto; }
  .nav-toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .hero-arena::before,
  .boss-section::before,
  .final-cta::before { inset: 9px; }
  .hero-arena { padding: 56px 0 76px; }
  .hero-copy { padding-block: 10px; }
  .hero-copy h1 { font-size: clamp(31px, 8.4vw, 34px); line-height: 1.32; }
  .hero-copy h1 span { display: block; max-width: 100%; text-shadow: 3px 3px 0 var(--red-700); }
  .hero-lede { margin-top: 24px; font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .arena-frame { border-width: 3px; box-shadow: 7px 7px 0 var(--red-700), 12px 12px 0 var(--shadow); padding: 6px; }
  .arena-frame-top { gap: 7px; padding: 8px 7px 9px; font-size: 6px; }
  .proof-rail-inner { min-height: 0; align-items: stretch; flex-direction: column; gap: 0; padding-block: 14px; }
  .proof-rail p { justify-content: space-between; width: 100%; padding: 14px 4px; }
  .proof-rail p span { max-width: none; text-align: right; }
  .proof-divider { width: 100%; height: 1px; }
  .transformation-section,
  .loop-section,
  .boss-section,
  .party-section,
  .fit-section,
  .faq-section { padding: 78px 0; }
  .section-heading h2,
  .loop-intro h2,
  .boss-heading h2,
  .party-copy h2,
  .fit-title h2,
  .faq-intro h2,
  .final-cta h2,
  .legal-hero h1,
  .download-card h1 { font-size: clamp(27px, 8.2vw, 37px); line-height: 1.4; }
  .transformation-art { box-shadow: 7px 7px 0 var(--red-600); }
  .transformation-art img { min-height: 210px; object-fit: cover; object-position: center; }
  .transformation-art figcaption { align-items: flex-start; flex-direction: column; font-size: 7px; }
  .loop-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-status { grid-column: 2; justify-self: start; }
  .boss-gallery { grid-template-columns: 1fr; }
  .boss-card { display: grid; grid-template-columns: 44% 56%; }
  .boss-portrait { border-right: 3px solid var(--gold-400); border-bottom: 0; }
  .boss-portrait img { height: 100%; min-height: 210px; }
  .boss-copy { display: flex; flex-direction: column; justify-content: center; padding: 18px 14px; }
  .boss-copy h3 { font-size: 14px; }
  .boss-copy > span { font-size: 12px; }
  .leaderboard { padding: 14px; box-shadow: 7px 7px 0 var(--gold-400); }
  .party-layout { grid-template-columns: minmax(0, 1fr); }
  .party-copy h2 { font-size: 22px; }
  .leaderboard-header img { width: 44px; }
  .leaderboard li { grid-template-columns: 27px 44px 1fr; gap: 8px; }
  .leaderboard .rank { width: 27px; }
  .leaderboard .avatar { width: 42px; }
  .leaderboard li b { grid-column: 3; font-size: 8px; }
  .fit-list > div { grid-template-columns: 1fr; gap: 8px; }
  .faq-list summary { font-size: 12px; }
  .final-cta { padding: 80px 0; }
  .footer-main,
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-main nav,
  .footer-grid nav { grid-column: auto; flex-direction: column; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .download-nav { gap: 14px; }
  .download-nav a { font-size: 7px; }
  .download-main { padding: 48px 16px 75px; }
  .download-card { box-shadow: 7px 7px 0 var(--red-700); padding: 32px 20px; }
  .download-card > p { font-size: 17px; }
  .legal-layout { width: min(100% - 28px, var(--wrap)); padding-top: 45px; }
  .legal-nav { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .page { width: min(100% - 24px, 960px); padding-top: 28px; }
  .page .grid { grid-template-columns: 1fr; }
  .page > .hero,
  .panel { box-shadow: 5px 5px 0 var(--navy-950); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --muted: #354055; }
  .section-dark { background: var(--navy-950); }
}

@media print {
  .site-header,
  .site-footer,
  .legal-nav,
  .button,
  .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .legal-layout { display: block; width: 100%; padding: 0; }
  .legal-hero { border: 0; background: #fff; color: #000; padding: 0 0 25px; }
  .legal-hero h1,
  .legal-hero p:not(.section-index):not(.eyebrow) { color: #000; }
  .table-wrap { overflow: visible; }
  a { color: #000; }
}
