/* ============================================================
   beAdults — Landing
   Brand-aligned with the app prototype (styles.css):
   teal / mint / cyan gradient, gold + coral accents,
   Plus Jakarta Sans (body) + Space Grotesk (display).
   ============================================================ */

:root {
  --bg: #eef5f1;
  --bg-2: #edf0e9;
  --ink: #0f1720;
  --muted: #5b6b72;
  --card: #ffffff;
  --line: rgba(15, 23, 32, 0.08);

  --teal: #0d9488;
  --cyan: #07beb3;
  --mint: #5dd4b5;
  --gold: #f2c85a;
  --coral: #ff8e63;

  --grad: linear-gradient(120deg, #0d9488 0%, #07beb3 45%, #5dd4b5 100%);

  --radius: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 8px 24px rgba(16, 46, 57, 0.08);
  --shadow: 0 24px 60px rgba(16, 46, 57, 0.16);
  --shadow-phone: 0 40px 90px -30px rgba(13, 75, 70, 0.55);

  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Space Grotesk", "Plus Jakarta Sans", sans-serif;

  --maxw: 1200px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(93, 212, 181, 0.4), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(242, 200, 90, 0.26), transparent 26%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.04;
}

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

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

code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.85em;
  background: rgba(13, 148, 136, 0.1);
  color: var(--teal);
  padding: 0.1em 0.4em;
  border-radius: 6px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── atmosphere ─────────────────────────────────────────── */
.atmo {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -2;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite;
}
.atmo-a {
  width: 460px;
  height: 460px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, var(--mint), transparent 70%);
}
.atmo-b {
  width: 520px;
  height: 520px;
  bottom: -160px;
  right: -140px;
  background: radial-gradient(circle, rgba(242, 200, 90, 0.7), transparent 70%);
  animation-delay: -9s;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -24px) scale(1.08); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ── nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(var(--maxw), calc(100vw - 40px));
  margin: 0 auto;
  padding: 16px 0;
  transition: padding 0.3s ease, top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  top: 12px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(249, 252, 248, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 30px -12px rgba(16, 46, 57, 0.18);
  width: min(var(--maxw), calc(100vw - 28px));
}
.nav-logo {
  height: 30px;
  width: auto;
  /* logo_full.png has the dot/accent on top, so its letters sit in the
     lower ~73% of the image; nudge up to optically center the wordmark
     with the nav CTA text */
  transform: translateY(-5px);
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-links a {
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  margin-left: 0;
}
/* logo sits flush to the nav's left edge; drop the pill's right padding so
   "Scarica" lines up flush to the right edge for symmetric gaps.
   Needs .nav-cta.btn-pill to beat the .btn-pill padding shorthand. */
.nav-cta.btn-pill {
  padding-right: 0;
}

/* ── buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px 22px;
  border-radius: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s;
  white-space: nowrap;
}
.btn-pill {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 26px -8px rgba(7, 190, 179, 0.7);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -8px rgba(7, 190, 179, 0.8);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: #fff;
}

/* ── hero ───────────────────────────────────────────────── */
.hero {
  width: min(var(--maxw), calc(100vw - 40px));
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  min-height: 72vh;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(13, 148, 136, 0.1);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(7, 190, 179, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(7, 190, 179, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(7, 190, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(7, 190, 179, 0); }
}
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  font-weight: 700;
}
.lead {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--muted);
  max-width: 30ch;
}
.lead strong {
  color: var(--ink);
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}
.hero-stats span {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 4px;
}

/* hero entrance */
.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.23s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.32s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.41s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ── phone mockup ───────────────────────────────────────── */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  /* shrink to the phone so the floating chips anchor to the phone edges
     (not the wide grid column) and never reach the viewport edge */
  width: fit-content;
  margin-inline: auto;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone {
  position: relative;
  width: 270px;
  background: #0f1720;
  border-radius: 42px;
  padding: 11px;
  box-shadow: var(--shadow-phone);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: #0f1720;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.phone-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: var(--teal);
  background:
    radial-gradient(circle at 30% 20%, rgba(93, 212, 181, 0.45), transparent 60%),
    linear-gradient(160deg, #e9fbf7 0%, #f4fbf4 100%);
}
.phone-placeholder.alt {
  color: var(--coral);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 142, 99, 0.35), transparent 60%),
    linear-gradient(160deg, #fff4ee 0%, #fffaf2 100%);
}
.phone-placeholder p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.phone-placeholder span {
  font-size: 0.74rem;
  font-family: ui-monospace, monospace;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: 6px;
}
.phone-tilt {
  transform: rotate(4deg);
}

/* floating gamified chips */
.float-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 0.84rem;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  animation: floaty 5s ease-in-out infinite;
}
.chip-streak {
  top: 8%;
  left: -6%;
  color: var(--coral);
  animation-delay: -1s;
}
.chip-lives {
  top: 42%;
  right: -10%;
  color: #ef5b6b;
  letter-spacing: 2px;
  animation-delay: -2.5s;
}
.chip-xp {
  bottom: 9%;
  left: 2%;
  color: var(--teal);
  animation-delay: -3.5s;
}

/* ── marquee ────────────────────────────────────────────── */
.marquee {
  margin: 60px 0;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: scroll-x 26s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
}
.marquee-track .dot {
  color: var(--cyan);
  font-size: 0.6rem;
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ── generic section ────────────────────────────────────── */
.section {
  width: min(var(--maxw), calc(100vw - 40px));
  margin: 0 auto;
  padding: 70px 0;
}
.eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 700;
}
.section-lead {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 60ch;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-head-aside {
  color: var(--muted);
  max-width: 36ch;
  font-size: 0.98rem;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── problem ────────────────────────────────────────────── */
.problem h2 {
  margin-top: 4px;
}
.problem-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.pcard-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}
.pcard h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.pcard p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* ── topics ─────────────────────────────────────────────── */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.topic {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.topic::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent);
}
.topic::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -50px;
  top: -50px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
  transition: transform 0.4s ease;
}
.topic:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.topic:hover::after {
  transform: scale(1.6);
}
.topic-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  margin-bottom: 18px;
  box-shadow: 0 10px 22px -8px var(--accent);
}
.topic h3 {
  font-size: 1.3rem;
}
.topic > p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.98rem;
}
.topic ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.topic li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  font-weight: 600;
}
.topic li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
}
.topic li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── game ───────────────────────────────────────────────── */
.game {
  padding-top: 0;
}
.game-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(242, 200, 90, 0.22), transparent 45%),
    linear-gradient(135deg, #0f3b38 0%, #0d5a52 100%);
  border-radius: var(--radius-lg);
  padding: 56px 50px;
  overflow: hidden;
}
.game-inner .eyebrow {
  color: var(--mint);
}
.game-copy h2,
.game-copy .section-lead {
  color: #eafdf8;
}
.game-copy .section-lead {
  color: rgba(234, 253, 248, 0.78);
}
.game-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}
.game-feats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feat {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
}
.feat-ic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
}
.feat-ic.streak { background: linear-gradient(135deg, #ff8e63, #ff6a3d); }
.feat-ic.lives { background: linear-gradient(135deg, #ff7b8a, #ef5b6b); }
.feat-ic.level { background: linear-gradient(135deg, #5dd4b5, #07beb3); }
.feat-ic.badge { background: linear-gradient(135deg, #f2c85a, #e0a93a); }
.feat strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
}
.feat span {
  font-size: 0.82rem;
  color: rgba(234, 253, 248, 0.7);
}
.game-phone {
  display: flex;
  justify-content: center;
}

/* ── steps ──────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.step {
  flex: 1 1 220px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: var(--grad);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--muted);
  font-size: 0.96rem;
}
.step-arrow {
  display: grid;
  place-items: center;
  color: var(--cyan);
  align-self: center;
}

/* ── screenshots gallery ────────────────────────────────── */
.shot-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.shot {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease;
}
.shot:hover {
  transform: translateY(-8px);
}
.shot .phone {
  width: 100%;
  max-width: 215px;
}
.shot .phone-placeholder {
  gap: 10px;
}
.shot figcaption {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
}

/* ── CTA ────────────────────────────────────────────────── */
.cta {
  width: min(var(--maxw), calc(100vw - 40px));
  margin: 40px auto 80px;
}
.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 70px 30px;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.35), transparent 55%),
    var(--grad);
  box-shadow: var(--shadow);
}
.cta-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  padding: 11px;
  object-fit: contain;
}
.cta-card h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.cta-card h2 .grad {
  background: linear-gradient(120deg, #fff, #d6ef6a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  font-size: 1.1rem;
}
.store-badges {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0f1720;
  color: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 12px 26px -10px rgba(0, 0, 0, 0.5);
}
.store:hover {
  transform: translateY(-3px);
}
.store-soon {
  background: rgba(15, 23, 32, 0.4);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}
.store-soon:hover {
  transform: none;
}
.store span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  font-weight: 700;
  font-size: 1.05rem;
}
.store small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.75;
}

/* ── footer ─────────────────────────────────────────────── */
.footer {
  width: min(var(--maxw), calc(100vw - 40px));
  margin: 0 auto;
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 30px;
}
.footer-logo {
  height: 28px;
  width: auto;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 0.92rem;
}
.footer-links a {
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--teal);
}
.footer-bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-bottom a {
  color: var(--teal);
  font-weight: 600;
}

/* ── responsive ─────────────────────────────────────────── */
@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    margin-top: 16px;
    gap: 30px;
  }
  .hero .lead,
  .lead { max-width: 34ch; margin-inline: auto; }
  .kicker,
  .hero-actions,
  .hero-stats { justify-content: center; }
  /* copy sits right under the header; phone (with floating chips) below */
  .hero-copy { order: 0; }
  .hero-phone { order: 1; margin-top: 4px; }
  .game-inner { grid-template-columns: 1fr; padding: 40px 26px; }
  .game-feats { grid-template-columns: 1fr 1fr; }
  .topic-grid { grid-template-columns: 1fr; }
  .shot-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  /* minimal hero copy: lighter kicker, calmer headline, tighter rhythm */
  .kicker {
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
    font-size: 0.74rem;
  }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 2.9rem); }
  .hero .lead { font-size: 1.03rem; margin-top: 14px; }
  .hero-actions { margin-top: 24px; }
  .hero-stats { gap: 26px; margin-top: 28px; }
}

@media (max-width: 480px) {
  .shot-row { grid-template-columns: 1fr; }
  .game-feats { grid-template-columns: 1fr; }
  .float-chip { font-size: 0.76rem; }
  .chip-streak { left: 2%; }
  .chip-lives { right: 2%; }
  .chip-xp { left: 6%; }
}
