@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-weight: 600 650;
  font-display: swap;
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cream: #f6f3ec;
  --white: #ffffff;
  --ink: #141821;
  --muted: #5b6270;
  --line: #e6e1d6;
  --navy: #081448;
  --navy-2: #12205f;
  --red: #c62828;
  --gold: #8b6914;
  --shadow: 0 24px 60px rgba(8, 20, 72, 0.14);
  --radius: 22px;
  --max: 1160px;
  --font: "Outfit", "Segoe UI", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}
#app-seo img { max-width: 100%; display: block; }
a { color: var(--navy-2); }
html.play-direct,
html.play-direct body {
  background: #081448 !important;
}
html.play-direct #app-seo {
  display: none !important;
}
html.play-direct #app-splash:not([hidden]) {
  display: block;
}
#app-seo {
  position: relative;
  z-index: 20;
  background: var(--cream);
  min-height: 100vh;
}
#app-seo[hidden],
#app-splash[hidden] { display: none !important; }
#app-splash {
  position: fixed;
  inset: 0;
  background: #081448;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 243, 236, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner,
.shell {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(8, 20, 72, 0.18);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--navy); }

.cta, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta {
  background: var(--navy);
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(8, 20, 72, 0.22);
}
.cta:hover { transform: translateY(-1px); }
.cta-secondary {
  background: var(--white);
  color: var(--navy) !important;
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.cta-nav { padding: 0.6rem 1.05rem; font-size: 0.92rem; }
.cta-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  width: 42rem;
  height: 42rem;
  right: -8rem;
  top: -10rem;
  background: radial-gradient(circle, rgba(8, 20, 72, 0.09), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.chips {
  display: inline-flex;
  gap: 0.28rem;
}
.chip {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.chip.r { background: var(--red); }
.chip.w { background: #fff; box-shadow: inset 0 0 0 1px #d7d0c4; }
h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  color: var(--navy);
  font-weight: 650;
}
h1 .h1-brand { display: block; }
h1 .h1-tag {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  max-width: 18em;
  color: var(--navy-2);
}
.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.6rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.trust span { display: flex; align-items: center; gap: 0.4rem; }

.hero-stage {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
}
.hero-icon {
  width: min(100%, 18rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 22px 40px rgba(8, 20, 72, 0.22));
}
.jack {
  position: absolute;
  width: 8.5rem;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(8, 20, 72, 0.18));
  pointer-events: none;
}
.jack img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.jack-one { left: -1.2rem; top: 1.5rem; transform: rotate(-8deg); }
.jack-two { right: -1rem; bottom: 1.2rem; transform: rotate(9deg); }

.band {
  padding: 4.2rem 0;
}
.band-white { background: var(--white); }
.band h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 0.4rem;
  color: var(--navy);
}
.band-lead {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 38rem;
}
.mode-grid,
.step-grid,
.extra-grid {
  display: grid;
  gap: 1.15rem;
}
.mode-grid { grid-template-columns: repeat(4, 1fr); }
.step-grid { grid-template-columns: repeat(3, 1fr); }
.extra-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: 0 10px 30px rgba(8, 20, 72, 0.04);
}
.band-white .card { background: var(--cream); }
.ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: var(--navy);
  color: #fff;
}
.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  color: var(--navy);
}
.card p { margin: 0; color: var(--muted); }
.step-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.15rem;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 0.6rem 0 0.1rem; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 2.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer a { color: var(--navy); text-decoration: none; font-weight: 600; }

.prose {
  width: min(760px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
}
.prose h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.8rem;
}
.prose h2 {
  font-family: var(--display);
  color: var(--navy);
  margin: 2rem 0 0.5rem;
}
.prose ol, .prose ul { color: var(--muted); padding-left: 1.2rem; }

@media (max-width: 960px) {
  .hero-grid,
  .mode-grid,
  .step-grid,
  .extra-grid,
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .hero-stage { min-height: 22rem; }
}
@media (max-width: 700px) {
  .site-header-inner,
  .shell { width: min(var(--max), calc(100% - 1.5rem)); }
  .nav-links a:not(.cta) { display: none; }
  .hero { padding: 2.4rem 0 2rem; }
  .hero-grid,
  .mode-grid,
  .step-grid,
  .extra-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .jack { width: 6.2rem; }
  h1 { font-size: 3rem; }
}
