:root {
  --navy: #17325b;
  --navy-deep: #0e2240;
  --cream: #fffaf0;
  --yellow: #ffd34e;
  --ink: #152844;
  --muted: #526176;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-bottom: 8px solid var(--yellow);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 22px solid rgba(255,255,255,.06);
}

.hero::before { width: 270px; height: 270px; top: -150px; right: -80px; }
.hero::after { width: 180px; height: 180px; bottom: -125px; left: -80px; }

.hero__dots {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 74px 0 64px;
  text-align: center;
}

.brand-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 17px;
  margin-bottom: 22px;
  color: var(--navy-deep);
  background: var(--yellow);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
  transform: rotate(-2deg);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 880px;
  margin: 0 auto 16px;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.16;
  letter-spacing: .02em;
}

h1 span {
  display: block;
  margin-bottom: 8px;
  color: #dce7f8;
  font-size: .5em;
  letter-spacing: .12em;
}

.catch {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 800;
}

.intro {
  max-width: 700px;
  margin: 0 auto 28px;
  color: #e3ebf7;
  font-size: 1.05rem;
}

.scroll-cue {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 22px;
  color: var(--navy-deep);
  background: var(--white);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(7, 24, 49, .5);
}

.games-section { padding: 76px 0 88px; }
.section-heading { margin-bottom: 34px; text-align: center; }
.eyebrow { margin-bottom: 5px; color: #56708f; font-size: .8rem; font-weight: 800; letter-spacing: .16em; }
.section-heading h2,
.coming-soon h2 { margin-bottom: 10px; color: var(--navy); font-size: clamp(1.75rem, 4vw, 2.55rem); line-height: 1.35; }
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); }

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

.game-card {
  --accent: #ed7e30;
  --tint: #fff1e7;
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}

.game-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -64px;
  right: -48px;
  background: var(--tint);
  border-radius: 50%;
}

.game-card:hover,
.game-card:focus-visible { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--ink); }
.game-card:focus-visible { outline: 5px solid var(--yellow); outline-offset: 4px; }
.game-card--purple { --accent: #7b5bd6; --tint: #efeaff; }
.game-card--red { --accent: #e95546; --tint: #ffe8e4; }
.game-card--green { --accent: #18866d; --tint: #dff7ee; }

.game-card__number {
  position: absolute;
  top: 17px;
  right: 22px;
  z-index: 1;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

.game-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.game-card__icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  background: var(--tint);
  border: 2px solid var(--accent);
  border-radius: 21px;
  font-size: 2.35rem;
  transform: rotate(-3deg);
}

.free-badge {
  align-self: flex-end;
  padding: 4px 13px;
  color: var(--accent);
  background: var(--tint);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
}

.game-card h3 { margin-bottom: 13px; font-size: clamp(1.35rem, 3vw, 1.75rem); line-height: 1.4; }
.game-card p { margin-bottom: 25px; color: var(--muted); font-size: 1rem; }

.game-card__button {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 12px 18px;
  color: var(--white);
  background: var(--accent);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
}

.game-card__button > span { font-size: 1.45rem; line-height: 1; transition: transform .18s ease; }
.game-card:hover .game-card__button > span { transform: translateX(5px); }

.coming-soon { padding: 72px 0; color: var(--white); background: #eaf0f8; }
.coming-soon__inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  align-items: center;
  padding: 38px 44px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 26px;
  box-shadow: 8px 8px 0 var(--ink);
}

.rocket {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 3.3rem;
}

.coming-soon .eyebrow { color: #725d00; }
.coming-soon p:last-child { margin-bottom: 0; }

.next-step { padding: 80px 0 88px; background: #edf4fb; border-top: 1px solid #d9e4f1; }
.next-step__intro { max-width: 780px; margin: 0 auto 38px; }
.next-step__intro > p { color: var(--muted); }
.next-step__intro > p:last-child { margin-bottom: 0; }
.mobile-break { display: none; }

.support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.support-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 7px 7px 0 var(--ink);
}
.support-card__icon { display: grid; width: 68px; height: 68px; margin-bottom: 18px; place-items: center; border-radius: 18px; font-size: 2rem; }
.support-card--learn .support-card__icon { background: #fff4c7; }
.support-card--consult .support-card__icon { background: #dff7ee; }
.support-card__label { margin-bottom: 5px; color: #56708f; font-size: .8rem; font-weight: 800; letter-spacing: .15em; }
.support-card h3 { margin-bottom: 14px; color: var(--navy); font-size: clamp(1.35rem, 3vw, 1.7rem); line-height: 1.4; }
.support-card > p:not(.support-card__label) { color: var(--muted); }
.support-card__button {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
}
.support-card__button:not(.support-card__button--disabled):hover,
.support-card__button:not(.support-card__button--disabled):focus-visible { background: #244b82; }
.support-card__button:focus-visible { outline: 4px solid var(--yellow); outline-offset: 3px; }
.support-card__button--disabled { justify-content: center; color: #59677a; background: #e5e9ef; cursor: default; }

.business-section { padding: 82px 0; background: var(--navy); }
.business-card { overflow: hidden; background: var(--white); border: 2px solid var(--ink); border-radius: 26px; box-shadow: 9px 9px 0 var(--yellow); }
.business-card__heading { padding: 38px 42px 30px; color: var(--white); background: var(--navy-deep); }
.business-card__heading .eyebrow { color: var(--yellow); }
.business-card__heading h2 { margin-bottom: 14px; font-size: clamp(1.7rem, 4vw, 2.5rem); line-height: 1.4; }
.business-card__heading p:last-child { max-width: 800px; margin-bottom: 0; color: #d7e2f1; }
.business-card__body { display: grid; grid-template-columns: 1.25fr .75fr; gap: 34px; padding: 36px 42px 42px; }
.business-card__lead { margin-bottom: 10px; color: var(--navy); font-weight: 800; }
.example-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 18px; margin: 0 0 20px; padding: 0; list-style: none; }
.example-list li { position: relative; padding-left: 24px; }
.example-list li::before { content: "✓"; position: absolute; left: 0; color: #18866d; font-weight: 800; }
.business-card__note { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.price-box { align-self: start; padding: 25px; background: #fff8dc; border: 2px solid var(--ink); border-radius: 20px; }
.price-box > p:first-child { margin-bottom: 2px; color: var(--navy); font-weight: 800; }
.price-box__price { margin-bottom: 4px; color: var(--navy-deep); }
.price-box__price strong { font-size: 2.35rem; line-height: 1.2; }
.price-box__note { color: var(--muted); font-size: .85rem; }
.price-box .support-card__button { margin-top: 20px; }

footer { padding: 42px 0; color: #bdcbe0; background: var(--navy-deep); }
.footer-brand { margin-bottom: 14px; color: var(--white); font-size: 1.05rem; font-weight: 800; }
.disclaimer { max-width: 900px; margin-bottom: 0; font-size: .82rem; line-height: 1.8; }

@media (max-width: 720px) {
  .wrap { width: min(100% - 28px, 560px); }
  .desktop-only { display: none; }
  .hero__inner { padding: 52px 0 48px; }
  h1 { font-size: clamp(2.15rem, 11.5vw, 3rem); }
  h1 span { font-size: .46em; }
  .intro { font-size: 1rem; }
  .games-section { padding: 56px 0 66px; }
  .games-grid { grid-template-columns: 1fr; gap: 22px; }
  .game-card { min-height: 0; padding: 24px; border-radius: 20px; box-shadow: 6px 6px 0 var(--ink); }
  .game-card__icon { width: 66px; height: 66px; font-size: 2rem; }
  .game-card__button { min-height: 60px; }
  .coming-soon { padding: 55px 0; }
  .coming-soon__inner { grid-template-columns: 1fr; gap: 18px; padding: 28px 24px; box-shadow: 6px 6px 0 var(--ink); }
  .rocket { width: 82px; height: 82px; font-size: 2.5rem; }
  .next-step { padding: 58px 0 66px; }
  .mobile-break { display: initial; }
  .support-grid { grid-template-columns: 1fr; gap: 22px; }
  .support-card { min-height: 0; padding: 24px; border-radius: 20px; box-shadow: 6px 6px 0 var(--ink); }
  .support-card__button { margin-top: 10px; min-height: 58px; }
  .business-section { padding: 60px 0; }
  .business-card { border-radius: 21px; box-shadow: 6px 6px 0 var(--yellow); }
  .business-card__heading { padding: 28px 24px 25px; }
  .business-card__body { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px 30px; }
  .example-list { grid-template-columns: 1fr; }
  .price-box { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
