:root {
  --paper: #fff8ed;
  --paper-2: #f4eee4;
  --white: #ffffff;
  --ink: #103a31;
  --ink-2: #214e44;
  --body: #4f625d;
  --red: #f2475c;
  --red-deep: #bd283f;
  --lime: #d8ee92;
  --yellow: #ffe39b;
  --sky: #dcecff;
  --blush: #ffe5e8;
  --line: rgba(16, 58, 49, 0.16);
  --line-light: rgba(255, 248, 237, 0.18);
  --shadow: 0 24px 70px rgba(16, 58, 49, 0.16);
  --shadow-soft: 0 14px 38px rgba(16, 58, 49, 0.1);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", Georgia, serif;

  /* Compatibility tokens used by the existing support and legal pages. */
  --bg: var(--paper);
  --bg-2: var(--paper-2);
  --surface: var(--white);
  --surface-2: var(--paper-2);
  --text: var(--ink);
  --text-muted: var(--body);
  --text-faint: #71807c;
  --gold: #d29d24;
  --gold-soft: #9c6d00;
  --gold-line: rgba(16, 58, 49, 0.16);
  --red-bright: var(--red);
  --font-display: var(--font-serif);
  --font-body: var(--font-sans);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

p,
h1,
h2,
h3,
h4,
dl,
dd,
figure {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 700;
}

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 58, 49, 0.1);
  background: rgba(255, 248, 237, 0.93);
  backdrop-filter: blur(18px);
}

.navbar,
.nav {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand img,
.brand .chip {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 2px;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  place-content: center;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 1px solid var(--red-deep);
  border-radius: 10px;
  color: var(--white);
  background: var(--red-deep);
  box-shadow: 0 10px 24px rgba(242, 71, 92, 0.22);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #9f1f34;
  box-shadow: 0 14px 30px rgba(189, 40, 63, 0.28);
}

.button-small {
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 9px;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
}

.text-link span {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 0.88rem;
  place-items: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
  background: var(--lime);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--red-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  overflow: hidden;
  padding-block: clamp(64px, 7vw, 96px) clamp(74px, 8vw, 112px);
}

.hero-grid {
  display: grid;
  min-height: 620px;
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
}

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

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.9rem, 6.2vw, 5.55rem);
  font-weight: 850;
  letter-spacing: -0.067em;
  line-height: 0.93;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 12px;
  color: var(--red);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 600px;
  margin-top: 30px;
  color: var(--body);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.hero-facts {
  display: flex;
  gap: 34px;
  margin-top: 48px;
}

.hero-facts > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 9px;
}

.hero-facts > div + div {
  position: relative;
  padding-left: 34px;
}

.hero-facts > div + div::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.hero-facts dt {
  grid-row: 1 / 3;
  color: var(--ink);
  font-size: 2.1rem;
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 1;
}

.hero-facts dd {
  max-width: 90px;
  color: var(--body);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.18;
}

.hero-art {
  position: relative;
  height: 620px;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(16, 58, 49, 0.06);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 80%, rgba(216, 238, 146, 0.95) 0 11%, transparent 11.5%),
    radial-gradient(circle at 88% 16%, rgba(255, 227, 155, 0.9) 0 9%, transparent 9.5%),
    var(--sky);
  box-shadow: var(--shadow-soft);
}

.art-orbit {
  position: absolute;
  z-index: -1;
  border: 2px solid rgba(16, 58, 49, 0.11);
  border-radius: 50%;
}

.art-orbit-one {
  top: -90px;
  left: -10px;
  width: 390px;
  height: 390px;
}

.art-orbit-two {
  right: -150px;
  bottom: -170px;
  width: 520px;
  height: 520px;
}

.phone-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid var(--ink);
  border-radius: 28px;
  background: #470715;
  box-shadow: 0 28px 55px rgba(16, 58, 49, 0.28);
  transform-origin: center bottom;
}

.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-card-left {
  top: 116px;
  left: -5%;
  z-index: 1;
  width: 34%;
  transform: rotate(-8deg);
}

.phone-card-main {
  top: 42px;
  left: 30%;
  z-index: 3;
  width: 41%;
}

.phone-card-right {
  top: 118px;
  right: -5%;
  z-index: 2;
  width: 34%;
  transform: rotate(8deg);
}

.hero-note {
  position: absolute;
  z-index: 5;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(16, 58, 49, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-note-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(242, 71, 92, 0.13);
}

.trust-strip {
  color: var(--paper);
  background: var(--ink);
}

.trust-strip-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 52px);
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 750;
  letter-spacing: 0.025em;
  text-align: center;
}

.trust-strip-inner span[aria-hidden] {
  color: var(--yellow);
  font-size: 0.6rem;
}

.section {
  padding-block: clamp(82px, 9vw, 126px);
}

.section-heading h2 {
  max-width: 850px;
  font-size: clamp(2.7rem, 5.25vw, 4.65rem);
  font-weight: 830;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child,
.section-heading-split > p {
  color: var(--body);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.section-heading-centered {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered h2 {
  margin-inline: auto;
}

.section-heading-centered > p:last-child {
  max-width: 690px;
  margin: 24px auto 0;
}

.section-heading-split {
  display: grid;
  align-items: end;
  gap: 50px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.section-heading-split > p {
  max-width: 480px;
  padding-bottom: 4px;
}

.benefit-grid {
  display: grid;
  gap: 22px;
  margin-top: 58px;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(16, 58, 49, 0.08);
  border-radius: var(--radius-lg);
}

.benefit-card::after {
  position: absolute;
  right: -52px;
  bottom: -62px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(16, 58, 49, 0.12);
  border-radius: 50%;
  content: "";
}

.benefit-card-green {
  background: var(--lime);
}

.benefit-card-red {
  background: var(--blush);
}

.benefit-card-yellow {
  background: var(--yellow);
}

.feature-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 62px;
  border: 1px solid rgba(16, 58, 49, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  place-items: center;
}

.feature-icon svg {
  width: 36px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-number {
  color: rgba(16, 58, 49, 0.58);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.benefit-card h3 {
  max-width: 270px;
  margin-top: 12px;
  font-size: 1.9rem;
  font-weight: 820;
}

.benefit-card p {
  max-width: 320px;
  margin-top: 17px;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.58;
}

.game-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 92% 16%, rgba(242, 71, 92, 0.25), transparent 23%),
    radial-gradient(circle at 8% 92%, rgba(216, 238, 146, 0.16), transparent 25%),
    var(--ink);
}

.game-section .eyebrow {
  color: var(--lime);
}

.game-section .section-heading-split > p {
  color: rgba(255, 248, 237, 0.72);
}

.game-grid {
  display: grid;
  gap: 18px;
  margin-top: 60px;
  grid-template-columns: repeat(4, 1fr);
}

.game-card {
  position: relative;
  min-height: 380px;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 238, 146, 0.48);
  background: rgba(255, 255, 255, 0.095);
}

.game-symbol {
  display: grid;
  width: 62px;
  height: 62px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.07);
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  place-items: center;
}

.game-symbol-red {
  color: #ff8292;
}

.game-index {
  position: absolute;
  top: 30px;
  right: 28px;
  color: rgba(255, 248, 237, 0.45);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.game-card h3 {
  margin-top: 70px;
  font-size: 1.72rem;
  font-weight: 800;
}

.game-card p {
  margin-top: 16px;
  color: rgba(255, 248, 237, 0.72);
  font-size: 0.93rem;
  line-height: 1.58;
}

.game-tag {
  position: absolute;
  bottom: 26px;
  left: 28px;
  padding: 7px 12px;
  border: 1px solid rgba(216, 238, 146, 0.22);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(216, 238, 146, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-section {
  background: var(--white);
}

.showcase-grid {
  display: grid;
  gap: 22px;
  margin-top: 60px;
  grid-template-columns: repeat(3, 1fr);
}

.showcase-card {
  overflow: hidden;
  border: 1px solid rgba(16, 58, 49, 0.09);
  border-radius: var(--radius-lg);
}

.showcase-card-blush {
  background: var(--blush);
}

.showcase-card-blue {
  background: var(--sky);
}

.showcase-card-lime {
  background: var(--lime);
}

.showcase-image {
  display: grid;
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
  padding: 24px;
  place-items: center;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(16, 58, 49, 0.17);
  object-fit: contain;
}

.showcase-copy {
  min-height: 220px;
  padding: 28px 30px 32px;
  border-top: 1px solid rgba(16, 58, 49, 0.09);
  background: rgba(255, 255, 255, 0.58);
}

.showcase-copy > span {
  color: var(--red-deep);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin-top: 10px;
  font-size: 1.55rem;
  font-weight: 820;
}

.showcase-copy p {
  margin-top: 14px;
  color: var(--body);
  font-size: 0.94rem;
  line-height: 1.58;
}

.practice-section {
  background: var(--paper);
}

.practice-layout {
  display: grid;
  overflow: hidden;
  padding: clamp(40px, 6vw, 76px);
  border-radius: var(--radius-xl);
  color: var(--paper);
  background:
    radial-gradient(circle at 6% 10%, rgba(242, 71, 92, 0.28), transparent 22%),
    radial-gradient(circle at 92% 92%, rgba(216, 238, 146, 0.15), transparent 25%),
    var(--ink);
  gap: clamp(50px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
}

.practice-copy {
  align-self: center;
}

.practice-copy .eyebrow {
  color: var(--lime);
}

.practice-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 820;
  letter-spacing: -0.06em;
}

.practice-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255, 248, 237, 0.72);
  font-size: 1.05rem;
}

.practice-copy .text-link {
  margin-top: 30px;
  color: var(--paper);
}

.practice-copy .text-link span {
  border-color: var(--line-light);
  color: var(--ink);
}

.practice-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.practice-steps li {
  display: grid;
  min-height: 116px;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  grid-template-columns: 54px 1fr;
}

.practice-steps li > span {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.75rem;
  font-weight: 850;
  place-items: center;
}

.practice-steps h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.practice-steps p {
  margin-top: 7px;
  color: rgba(255, 248, 237, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.audience-section {
  padding-top: 0;
}

.audience-grid {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.audience-grid article {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.25);
}

.audience-grid article > span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.audience-grid h3 {
  margin-top: 54px;
  font-size: 1.5rem;
  font-weight: 820;
}

.audience-grid p {
  margin-top: 14px;
  color: var(--body);
  font-size: 0.94rem;
}

.faq-section {
  background: var(--paper-2);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: clamp(2.7rem, 4.4vw, 4.2rem);
  font-weight: 820;
  letter-spacing: -0.06em;
}

.faq-intro > p:last-child {
  margin-top: 22px;
  color: var(--body);
}

.faq-intro a {
  color: var(--red-deep);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.faq-list,
.faq {
  display: grid;
  gap: 0;
}

.faq-list details,
.faq details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child,
.faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary,
.faq summary {
  display: flex;
  min-height: 78px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  color: var(--ink);
  font-weight: 780;
  list-style: none;
}

.faq-list summary::-webkit-details-marker,
.faq summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after,
.faq summary::after {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  content: "+";
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  place-items: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary::after,
.faq details[open] summary::after {
  transform: rotate(45deg);
  background: var(--lime);
}

.faq-list details p,
.faq details p {
  max-width: 650px;
  padding: 0 52px 24px 0;
  color: var(--body);
  line-height: 1.65;
}

.final-cta {
  background: var(--white);
}

.final-cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 100px) clamp(30px, 8vw, 120px);
  border-radius: var(--radius-xl);
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 227, 155, 0.72) 0 8%, transparent 8.5%),
    radial-gradient(circle at 90% 85%, rgba(216, 238, 146, 0.85) 0 12%, transparent 12.5%),
    var(--red-deep);
  text-align: center;
}

.final-cta-mark {
  display: grid;
  width: 92px;
  height: 92px;
  margin: 0 auto 26px;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  place-items: center;
}

.final-cta-panel .eyebrow {
  color: var(--lime);
}

.final-cta-panel h2 {
  max-width: 800px;
  margin-inline: auto;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 850;
  letter-spacing: -0.065em;
}

.final-cta-panel > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px auto 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 1.08rem;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.platform-row span {
  min-width: 180px;
  padding: 14px 20px;
  border: 1px solid rgba(16, 58, 49, 0.18);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(16, 58, 49, 0.09);
  font-size: 0.9rem;
  font-weight: 780;
}

.site-footer {
  padding-block: 72px 28px;
  color: var(--paper);
  background: var(--ink);
}

.site-footer .brand {
  color: var(--paper);
}

.footer-top {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
}

.footer-brand > p {
  max-width: 370px;
  margin-top: 20px;
  color: rgba(255, 248, 237, 0.66);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 34px;
  grid-template-columns: 0.8fr 1fr 1.45fr;
}

.footer-links > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links h3 {
  margin-bottom: 5px;
  color: var(--lime);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  max-width: 100%;
  color: rgba(255, 248, 237, 0.73);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 248, 237, 0.56);
  font-size: 0.8rem;
}

.footer-bottom a:hover {
  color: var(--paper);
}

/* Shared support, privacy, terms and account-deletion pages. */
.legal {
  min-height: 65vh;
  padding-block: clamp(56px, 8vw, 104px);
  background:
    radial-gradient(circle at 92% 6%, rgba(220, 236, 255, 0.8), transparent 22%),
    var(--paper);
}

.legal-wrap {
  max-width: 820px;
  margin-inline: auto;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--red-deep);
  font-size: 0.9rem;
  font-weight: 750;
}

.legal h1 {
  max-width: 780px;
  font-size: clamp(2.9rem, 7vw, 5.5rem);
  font-weight: 840;
  letter-spacing: -0.065em;
}

.legal .updated {
  margin: 14px 0 42px;
  color: var(--body);
  font-size: 0.9rem;
}

.legal h2 {
  margin: 48px 0 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.48rem;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.legal h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.legal p,
.legal li {
  color: var(--body);
}

.legal p + p {
  margin-top: 16px;
}

.legal ul,
.legal ol:not(.del-steps) {
  padding-left: 22px;
}

.legal li + li {
  margin-top: 8px;
}

.legal strong {
  color: var(--ink);
}

.legal a:not(.back-home):not(.support-email) {
  color: var(--red-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.toc {
  margin: 0 0 40px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.toc ol {
  margin: 14px 0 0;
  columns: 2;
  column-gap: 34px;
}

.toc li {
  break-inside: avoid;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid rgba(189, 40, 63, 0.18);
  border-radius: var(--radius);
  background: var(--blush);
}

.disclaimer .mark {
  flex: 0 0 auto;
  font-size: 1.3rem;
}

.disclaimer p {
  margin: 0;
}

.support-email {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.legal .faq {
  margin-top: 18px;
}

.legal .faq details {
  background: transparent;
}

.legal .faq summary {
  padding-inline: 0;
}

.legal .faq p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .hero-art {
    height: 570px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 6.4vw, 4.8rem);
  }

  .hero-facts {
    gap: 22px;
  }

  .hero-facts > div + div {
    padding-left: 22px;
  }

  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-card {
    min-height: 330px;
  }

  .practice-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .navbar {
    min-height: 70px;
  }

  .nav-toggle {
    display: grid;
  }

  .navbar .nav-panel {
    position: absolute;
    top: calc(100% + 1px);
    right: -16px;
    left: -16px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-bottom: 1px solid transparent;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, padding 220ms ease;
  }

  .navbar .nav-panel.is-open {
    max-height: 520px;
    padding-block: 22px 26px;
    border-bottom-color: var(--line);
    box-shadow: 0 24px 40px rgba(16, 58, 49, 0.12);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar .nav-links {
    display: grid;
    align-items: stretch;
    gap: 2px;
  }

  .navbar .nav-links a {
    display: block;
    min-height: 44px;
    padding: 11px 4px;
  }

  .navbar .nav-links a::after {
    display: none;
  }

  .navbar .nav-panel .button {
    width: 100%;
    margin-top: 14px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(4rem, 10.5vw, 5.6rem);
  }

  .hero-art {
    width: min(100%, 650px);
    height: 620px;
    margin-inline: auto;
  }

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

  .benefit-card {
    min-height: 320px;
  }

  .feature-icon {
    margin-bottom: 42px;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    max-width: 620px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    margin-top: 52px;
  }

  .practice-layout {
    grid-template-columns: 1fr;
  }

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

  .audience-grid article {
    min-height: 220px;
  }

  .audience-grid h3 {
    margin-top: 40px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav:not(.navbar) {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 12px;
  }

  .nav:not(.navbar) > .nav-links {
    width: 100%;
    gap: 18px;
    font-size: 0.82rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-facts {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-facts > div {
    display: block;
    text-align: center;
  }

  .hero-facts > div + div {
    padding-left: 0;
  }

  .hero-facts > div + div::before {
    top: 0;
    bottom: 0;
  }

  .hero-facts dt {
    font-size: 1.8rem;
  }

  .hero-facts dd {
    max-width: none;
    margin-top: 6px;
  }

  .hero-art {
    height: 540px;
  }

  .hero-note {
    right: 18px;
    bottom: 18px;
  }

  .trust-strip-inner {
    flex-direction: column;
    gap: 9px;
    padding-block: 22px;
  }

  .trust-strip-inner span[aria-hidden] {
    display: none;
  }

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

  .game-card {
    min-height: 315px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .toc ol {
    columns: 1;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand {
    font-size: 1rem;
  }

  .brand img,
  .brand .chip {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-block: 42px 64px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.35rem);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-facts {
    margin-top: 38px;
  }

  .hero-art {
    height: 470px;
    border-radius: 30px;
  }

  .phone-card {
    border-width: 5px;
    border-radius: 20px;
  }

  .phone-card-left {
    top: 105px;
    left: -10%;
    width: 39%;
  }

  .phone-card-main {
    top: 35px;
    left: 27%;
    width: 46%;
  }

  .phone-card-right {
    top: 105px;
    right: -10%;
    width: 39%;
  }

  .hero-note {
    max-width: calc(100% - 36px);
    font-size: 0.74rem;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading h2 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .benefit-card,
  .game-card {
    padding: 26px;
  }

  .showcase-image {
    padding: 18px;
  }

  .showcase-copy {
    min-height: 0;
    padding: 24px;
  }

  .practice-layout {
    width: calc(100% - 16px);
    padding: 30px 20px;
    border-radius: 30px;
  }

  .practice-copy h2,
  .faq-intro h2 {
    font-size: 2.65rem;
  }

  .practice-steps li {
    gap: 14px;
    padding: 17px;
    grid-template-columns: 46px 1fr;
  }

  .practice-steps li > span {
    width: 44px;
    height: 44px;
  }

  .audience-grid article {
    padding: 28px;
  }

  .faq-list summary,
  .faq summary {
    min-height: 72px;
    font-size: 0.94rem;
  }

  .faq-list details p,
  .faq details p {
    padding-right: 12px;
  }

  .final-cta-panel {
    border-radius: 30px;
  }

  .final-cta-panel h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .platform-row {
    flex-direction: column;
  }

  .platform-row span {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links > div:last-child {
    grid-column: auto;
  }

  .support-email {
    border-radius: 16px;
    font-size: 0.84rem;
  }
}

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