:root {
  --ink: #17324a;
  --ink-soft: #51697c;
  --paper: #fffaf0;
  --paper-strong: #fff4dc;
  --coral: #ff6b5f;
  --coral-dark: #e84f45;
  --sun: #ffcc4a;
  --teal: #24a59a;
  --teal-dark: #177e77;
  --sky: #dff3ff;
  --blue: #4d8df7;
  --violet: #7d68e8;
  --white: #ffffff;
  --line: rgba(23, 50, 74, 0.11);
  --shadow: 0 28px 80px rgba(36, 73, 94, 0.14);
  --shadow-soft: 0 14px 38px rgba(36, 73, 94, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(255, 204, 74, 0.2), transparent 34rem),
    radial-gradient(circle at 100% 10%, rgba(77, 141, 247, 0.12), transparent 36rem),
    var(--paper);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  width: min(calc(100% - 32px), var(--max));
  min-height: 148px;
  margin: 18px auto 0;
  padding: 8px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px rgba(37, 77, 96, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 132px;
  max-width: 420px;
  object-fit: contain;
}

.header-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
}

.header-nav a {
  color: #3d566a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--coral-dark);
}

.header-cta {
  padding: 11px 18px;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  background: #0f273a;
}

.hero {
  width: min(calc(100% - 32px), var(--max));
  min-height: 720px;
  margin: 22px auto 0;
  padding: clamp(38px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 44px;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.98), rgba(255,248,232,0.94)),
    var(--white);
  border: 1px solid rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -150px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(36,165,154,0.08) 0 7px, transparent 7px 20px);
  z-index: -1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
}

.hero-orb-one {
  width: 310px;
  height: 310px;
  left: -130px;
  top: -130px;
  background: rgba(255, 204, 74, 0.3);
}

.hero-orb-two {
  width: 250px;
  height: 250px;
  right: 18%;
  top: -120px;
  background: rgba(255, 107, 95, 0.13);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #dff7ee;
  color: #14766e;
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  font-family: "Nunito", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 900;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.72;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions.centered {
  justify-content: center;
}

.button {
  min-height: 54px;
  padding: 14px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 17px;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--coral), #ff875f);
  color: white;
  box-shadow: 0 16px 30px rgba(232, 79, 69, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(232, 79, 69, 0.3);
}

.button-secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(36, 73, 94, 0.07);
}

.button-light {
  border: 1px solid rgba(255,255,255,0.4);
  background: white;
  color: var(--ink);
}

.hero-proof {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-proof > div {
  padding: 15px 14px;
  border: 1px solid rgba(23, 50, 74, 0.08);
  border-radius: 17px;
  background: rgba(255,255,255,0.76);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 4px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.hero-proof span {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.hero-visual {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
}

.visual-caption {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 26px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 800;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #31b57a;
  box-shadow: 0 0 0 5px rgba(49,181,122,0.13);
}

.hero-image-shell {
  width: min(90%, 390px);
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 38px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 38px 80px rgba(25, 58, 79, 0.22);
  transform: rotate(1.5deg);
}

.hero-image-shell img {
  width: 100%;
  aspect-ratio: 320 / 560;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 31px;
  background: #edf4f7;
}

.floating-word {
  position: absolute;
  z-index: 4;
  min-width: 104px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 38px rgba(36, 73, 94, 0.14);
  backdrop-filter: blur(14px);
}

.floating-word span,
.floating-word small {
  display: block;
}

.floating-word span {
  font-family: "Nunito", sans-serif;
  font-size: 19px;
  font-weight: 900;
}

.floating-word small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 11px;
}

.word-hola {
  left: 0;
  top: 20%;
  transform: rotate(-5deg);
}

.word-perro {
  right: -8px;
  top: 44%;
  transform: rotate(5deg);
}

.word-libro {
  left: 6%;
  bottom: 14%;
  transform: rotate(3deg);
}

.answer-strip {
  width: min(calc(100% - 32px), 980px);
  margin: -18px auto 0;
  padding: 25px 30px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  border: 1px solid rgba(23, 50, 74, 0.08);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.answer-label {
  padding: 8px 11px;
  border-radius: 999px;
  background: #e2f7f4;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.answer-strip h2 {
  margin: 0;
  font-size: clamp(23px, 2.3vw, 31px);
}

.answer-strip p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 100px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.narrow {
  max-width: 700px;
}

.section-heading h2,
.photo-copy h2,
.how-copy h2,
.related-panel h2,
.final-card h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.play-section {
  padding-bottom: 70px;
}

.starter-words {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.starter-words span {
  padding: 9px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(36, 73, 94, 0.06);
}

.starter-words b {
  margin-left: 6px;
  color: var(--ink);
  font-weight: 900;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.game-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23, 50, 74, 0.08);
  border-radius: 26px;
  overflow: hidden;
  background: white;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(35, 72, 91, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.game-card:hover,
.game-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(35, 72, 91, 0.15);
}

.game-image-wrap {
  min-height: 210px;
  padding: 24px;
  display: grid;
  place-items: center;
}

.game-card-yellow .game-image-wrap {
  background: linear-gradient(150deg, #fff3bd, #ffe890);
}

.game-card-coral .game-image-wrap {
  background: linear-gradient(150deg, #ffe0d9, #ffc7ba);
}

.game-card-blue .game-image-wrap {
  background: linear-gradient(150deg, #dff3ff, #bfdfff);
}

.game-card-violet .game-image-wrap {
  background: linear-gradient(150deg, #ece8ff, #d9d0ff);
}

.more-games-card {
  border-color: rgba(23, 50, 74, 0.16);
  background: linear-gradient(180deg, #193851, #10283b);
  color: white;
}

.more-games-card .game-card-copy {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
}

.more-games-card .game-type {
  color: #9de3db;
}

.more-games-card p {
  color: rgba(255,255,255,0.7);
}

.more-games-card .game-play {
  color: #ffd362;
}

.more-games-image-wrap {
  min-height: 210px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #ece7ff, #cfd9ff);
}

.more-games-image-wrap img {
  width: 100%;
  max-width: none;
  height: 210px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 22%;
  filter: none;
}

.game-image-wrap img {
  width: min(160px, 78%);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 25px rgba(45, 69, 89, 0.16));
  transition: transform 0.22s ease;
}

.game-card:hover .game-image-wrap img,
.game-card:focus-visible .game-image-wrap img {
  transform: scale(1.045) rotate(-2deg);
}

.game-card-copy {
  flex: 1;
  padding: 22px 21px 20px;
  display: flex;
  flex-direction: column;
}

.game-type {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-card h3 {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 900;
}

.game-card p {
  margin: 10px 0 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.game-play {
  margin-top: auto;
  color: var(--coral-dark);
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 14px;
}

.micro-note {
  margin: 20px 0 0;
  color: #6c7f8e;
  font-size: 12px;
}

.photo-section {
  padding-top: 70px;
}

.photo-card {
  padding: clamp(28px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,0.2), transparent 28rem),
    linear-gradient(135deg, #1f756d, #1b9488);
  color: white;
  box-shadow: 0 28px 70px rgba(23, 126, 119, 0.2);
}

.photo-card .section-kicker {
  color: #ccfff2;
}

.photo-copy > p:not(.section-kicker):not(.camera-note) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
}

.photo-examples {
  margin: 24px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.photo-examples span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.button-camera {
  background: #ffd362;
  color: #263d4d;
  box-shadow: 0 14px 30px rgba(26, 67, 63, 0.24);
}

.camera-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(23, 50, 74, 0.1);
}

.camera-note {
  max-width: 560px;
  margin: 11px 0 0;
  color: rgba(255,255,255,0.64);
  font-size: 11px;
}

.photo-demo {
  display: grid;
  justify-items: center;
}

.photo-frame {
  width: min(100%, 540px);
  padding: 9px;
  border-radius: 27px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 22px 55px rgba(12, 66, 62, 0.22);
  transform: rotate(1deg);
}

.photo-source-image {
  width: 100%;
  aspect-ratio: 11 / 6;
  object-fit: cover;
  border-radius: 20px;
}

.photo-arrow {
  margin: 8px 0;
  color: rgba(255,255,255,0.76);
  font-size: 28px;
  line-height: 1;
}

.mini-game-preview {
  width: min(100%, 360px);
  padding: 17px 18px;
  border-radius: 19px;
  background: white;
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(12, 66, 62, 0.18);
  transform: rotate(-1deg);
}

.mini-game-preview > span {
  display: block;
  color: var(--ink-soft);
  font-size: 11px;
}

.mini-game-preview strong {
  display: block;
  margin: 5px 0 10px;
  font-family: "Nunito", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.mini-game-preview div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mini-game-preview button {
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: #e7f5f2;
  color: var(--ink);
  font-weight: 800;
}

.fit-section {
  padding-bottom: 80px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fit-grid article {
  min-height: 280px;
  padding: 26px 23px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 30px rgba(36, 73, 94, 0.06);
}

.fit-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff0d6;
  color: #9a6321;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}

.fit-grid h3 {
  margin: 24px 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.fit-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.how-section {
  padding-top: 70px;
}

.how-layout {
  padding: clamp(30px, 5vw, 64px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
  border-radius: 36px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.answer-first {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.steps li {
  padding: 18px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
  border-radius: 20px;
  background: #fbfaf6;
  border: 1px solid rgba(23,50,74,0.07);
}

.steps li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--ink);
  color: white;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}

.steps h3 {
  margin: 2px 0 6px;
  font-size: 18px;
  font-weight: 900;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.real-world {
  padding-top: 80px;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.world-grid article {
  padding: 28px 23px;
  border-radius: 24px;
  background: linear-gradient(180deg, white, #fffdf8);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(36, 73, 94, 0.06);
}

.world-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #e1f5f2;
  color: var(--teal-dark);
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}

.world-grid article:nth-child(2) .world-icon {
  background: #fff0d7;
  color: #9d6423;
}

.world-grid article:nth-child(3) .world-icon {
  background: #e6efff;
  color: #3567b7;
}

.world-grid article:nth-child(4) .world-icon {
  background: #f0eaff;
  color: #6454b8;
}

.world-grid h3 {
  margin: 18px 0 8px;
  font-size: 21px;
  font-weight: 900;
}

.world-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.related-section {
  padding-top: 70px;
}

.related-panel {
  padding: clamp(30px, 5vw, 58px);
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 50px;
  border-radius: 34px;
  background: #17324a;
  color: white;
}

.related-panel .section-kicker {
  color: #9de3db;
}

.related-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.related-links a {
  padding: 19px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.related-links a:hover,
.related-links a:focus-visible {
  background: rgba(255,255,255,0.11);
  transform: translateY(-2px);
}

.related-links strong,
.related-links span {
  display: block;
}

.related-links strong {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.related-links span {
  margin-top: 5px;
  color: rgba(255,255,255,0.64);
  font-size: 12px;
}

.faq-section {
  padding-top: 90px;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: white;
  box-shadow: 0 9px 22px rgba(36, 73, 94, 0.05);
}

.faq-list summary {
  padding: 20px 32px 20px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  font-weight: 900;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 15px;
  color: var(--coral);
  font-size: 25px;
  font-weight: 800;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -4px 0 20px;
  color: var(--ink-soft);
}

.final-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 10px 0 100px;
}

.final-card {
  padding: clamp(42px, 7vw, 82px);
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  text-align: center;
  background:
    radial-gradient(circle at 0 0, rgba(255,204,74,0.24), transparent 28rem),
    linear-gradient(135deg, #ff715f, #ed5a4e);
  color: white;
  box-shadow: 0 28px 70px rgba(232, 79, 69, 0.22);
}

.final-card::before,
.final-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
}

.final-card::before {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: -140px;
}

.final-card::after {
  width: 180px;
  height: 180px;
  right: -60px;
  top: -80px;
}

.final-card .section-kicker {
  color: #fff0c2;
}

.final-card h2 {
  position: relative;
  z-index: 1;
}

.final-card > p:not(.section-kicker) {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255,255,255,0.84);
  font-size: 17px;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 26px 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.footer-brand .brand-logo {
  height: 82px;
  max-width: 280px;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: right;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1040px) {
  .header-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

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

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

  .hero-visual {
    min-height: 530px;
  }

  .hero-image-shell {
    width: min(72vw, 430px);
  }

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

  .photo-card,
  .how-layout,
  .related-panel {
    grid-template-columns: 1fr;
  }

  .photo-demo {
    margin-top: 8px;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    width: calc(100% - 20px);
    min-height: 88px;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 18px;
  }

  .brand-logo {
    height: 76px;
    max-width: 240px;
  }

  .header-cta {
    padding: 10px 13px;
    border-radius: 12px;
    font-size: 12px;
  }

  .hero {
    width: calc(100% - 20px);
    margin-top: 12px;
    padding: 36px 21px 30px;
    gap: 28px;
    border-radius: 28px;
  }

  .eyebrow {
    font-size: 10px;
    line-height: 1.7;
  }

  .eyebrow span {
    margin-right: 4px;
    padding: 5px 8px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 23px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-proof {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-proof > div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: center;
  }

  .hero-proof strong {
    margin: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-image-shell {
    width: min(84vw, 350px);
    padding: 6px;
    border-radius: 30px;
  }

  .hero-image-shell img {
    border-radius: 24px;
  }

  .floating-word {
    min-width: 88px;
    padding: 9px 11px;
    border-radius: 14px;
  }

  .floating-word span {
    font-size: 16px;
  }

  .word-hola {
    left: -2px;
    top: 21%;
  }

  .word-perro {
    right: -3px;
    top: 46%;
  }

  .word-libro {
    left: 6px;
    bottom: 10%;
  }

  .visual-caption {
    top: 4px;
    right: 3px;
    padding: 8px 11px;
    font-size: 10px;
  }

  .answer-strip {
    width: calc(100% - 34px);
    margin-top: -10px;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 20px;
  }

  .answer-label {
    justify-self: start;
  }

  .answer-strip h2 {
    font-size: 25px;
  }

  .answer-strip p {
    font-size: 14px;
  }

  .section-shell {
    width: calc(100% - 28px);
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .photo-copy h2,
  .how-copy h2,
  .related-panel h2,
  .final-card h2 {
    font-size: 36px;
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .starter-words {
    gap: 7px;
  }

  .starter-words span {
    padding: 7px 10px;
    font-size: 11px;
  }

  .game-grid,
  .fit-grid,
  .world-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

  .game-grid {
    gap: 13px;
  }

  .game-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    border-radius: 21px;
  }

  .game-image-wrap {
    min-height: 100%;
    padding: 15px;
  }

  .game-image-wrap img {
    width: 100%;
  }

  .more-games-image-wrap {
    padding: 0;
  }

  .more-games-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    max-width: none;
    object-fit: cover;
    object-position: center 18%;
    filter: none;
  }

  .game-card-copy {
    padding: 17px 15px;
  }

  .game-type {
    font-size: 9px;
  }

  .game-card h3 {
    margin-top: 5px;
    font-size: 20px;
  }

  .game-card p {
    margin: 7px 0 12px;
    font-size: 11px;
    line-height: 1.5;
  }

  .game-play {
    font-size: 12px;
  }

  .photo-card {
    padding: 30px 20px;
    gap: 35px;
    border-radius: 28px;
  }

  .photo-copy > p:not(.section-kicker):not(.camera-note) {
    font-size: 15px;
  }

  .photo-frame {
    width: 100%;
  }

  .fit-grid article {
    min-height: 0;
    padding: 22px 20px;
  }

  .fit-grid h3 {
    margin-top: 18px;
  }

  .how-layout {
    padding: 28px 20px;
    gap: 30px;
    border-radius: 28px;
  }

  .answer-first {
    font-size: 15px;
  }

  .steps li {
    grid-template-columns: 40px 1fr;
    padding: 15px;
  }

  .steps li > span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .world-grid article {
    padding: 22px 20px;
  }

  .related-panel {
    padding: 30px 20px;
    gap: 28px;
    border-radius: 28px;
  }

  .faq-list details {
    padding: 0 17px;
  }

  .faq-list summary {
    padding: 18px 28px 18px 0;
    font-size: 15px;
  }

  .faq-list p {
    font-size: 13px;
  }

  .final-section {
    width: calc(100% - 20px);
    padding-bottom: 75px;
  }

  .final-card {
    padding: 42px 20px;
    border-radius: 28px;
  }

  .final-card > p:not(.section-kicker) {
    font-size: 15px;
  }

  .site-footer {
    width: calc(100% - 28px);
    padding-bottom: 30px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    z-index: 60;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .mobile-cta a {
    min-height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--ink);
    color: white;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(23,50,74,0.28);
  }
}

@media (max-width: 390px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-inline: 18px;
  }

  h1 {
    font-size: 37px;
  }

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

  .game-card p {
    display: none;
  }

  .hero-proof > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

}

@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;
  }
}
