/* Paideia Parent landing — aligned with coach/athlete landings (green parent accent) */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');
:root {
  --navy: #0D1024;
  --navy2: #11142D;
  --navy3: #181D3D;
  --line: #2A3360;
  --gold: #E6B54A;
  --gold2: #F0C96A;
  --text-body: #C5CBE8;
  --muted: #9AA3CF;
  --athlete-accent: #16A34A;
  --athlete-soft: #4ADE80;
  --parent: #006233;
  --wm: 'Space Grotesk', sans-serif;
  --ui: 'Inter', sans-serif;
  --card-bg: #181D3D;
  --card-bg2: #11142D;
  /* Legacy aliases used in athlete section inline styles */
  --bg: var(--navy);
  --bg2: var(--navy2);
  --card: var(--card-bg);
  --card2: var(--card-bg2);
  --txt: #fff;
  --txt2: var(--text-body);
  --txt3: var(--muted);
  --athlete: #16A34A;
  --athlete2: #22C55E;
  --gold1: #E6B54A;
  --gold3: #C9972E;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text-body);
  font-family: var(--ui);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
section { padding: 28px 20px; position: relative; }
.wrap { max-width: 980px; margin: 0 auto; }
.eyebrow {
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}
.eyebrow-gold { color: var(--gold); }
h2 {
  font-family: var(--ui);
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #fff;
}
.lead {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 6px;
}
.gold {
  background: linear-gradient(120deg, #E6B54A, #F0C96A, #C9972E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

.dots {
  position: fixed; right: 14px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 40;
}
.dots a {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.22); transition: .25s; display: block;
}
.dots a.active {
  background: var(--athlete-soft);
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(74,222,128,.55);
}
@media (max-width: 720px) { .dots { display: none; } }

/* Hero */
#hero {
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    radial-gradient(900px 480px at 50% -8%, rgba(22,163,74,.22), transparent 62%),
    radial-gradient(700px 400px at 50% 108%, rgba(230,181,74,.08), transparent 60%),
    var(--navy);
}
.hero-cluster { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-logo-wrap {
  position: relative;
  width: min(49.4vw, 192px);
  margin-bottom: 4px;
}
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%; bottom: -8px;
  height: 48px;
  background: radial-gradient(ellipse at center, rgba(22,163,74,.55) 0%, transparent 72%);
  filter: blur(12px);
  z-index: 0;
}
.hero-logo-wrap img, .hero-logo-wrap svg {
  width: 100%; height: auto; display: block;
  position: relative; z-index: 1;
  filter: drop-shadow(0 8px 28px rgba(22,163,74,.35));
}
.brand-wordmark {
  font-family: var(--wm);
  font-weight: 700;
  font-size: clamp(14.5px, 3vw, 26px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.08;
  margin-top: 8px;
  white-space: nowrap;
  background: linear-gradient(90deg, #065F46 0%, #16A34A 50%, #22C55E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.green {
  background: linear-gradient(120deg, #16A34A, #22C55E, #4ADE80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-inline {
  font-family: var(--wm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #065F46 0%, #16A34A 50%, #22C55E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-cluster h2.hero-title {
  text-align: center;
  max-width: 720px;
  margin-top: 4px;
}
.hero-lead {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--text-body);
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.55;
}

/* Pain — catalog panel style (13-week program) */
#pain { background: var(--navy); }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
@media (max-width: 760px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-col {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 18px 16px;
  background: var(--card-bg);
}
.pain-col.before { border-left: 4px solid #F87171; }
.pain-col.after { border-left: 4px solid #3FB86B; }
.pain-col .k {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pain-col.before .k { color: #FCA5A5; }
.pain-col.after .k { color: #9AF0C0; }
.pain-col .k .badge-x {
  width: 24px; height: 24px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex: 0 0 auto;
}
.pain-col.before .k .badge-x { background: rgba(248,113,113,.18); color: #F87171; }
.pain-col.after .k .badge-x { background: rgba(63,184,107,.2); color: #3FB86B; }
.pain-row {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--text-body); line-height: 1.45;
  padding: 8px 0;
  border-top: 1px solid rgba(42, 51, 96, 0.65);
}
.pain-row:first-of-type { border-top: 0; padding-top: 0; }
.pain-row .m { flex: 0 0 auto; font-weight: 700; margin-top: 1px; }
.pain-col.before .pain-row .m { color: #F87171; }
.pain-col.after .pain-row .m { color: #3FB86B; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.feat {
  --c: var(--athlete-accent);
  background: linear-gradient(165deg, color-mix(in srgb, var(--c) 8%, var(--card-bg)), var(--card-bg2));
  border: 1px solid color-mix(in srgb, var(--c) 28%, var(--line));
  border-radius: 12px;
  padding: 18px 18px 16px;
  transition: border-color .25s, transform .25s;
}
.feat:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--c) 50%, transparent);
}
.feat .ico {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--c) 22%, transparent);
  color: color-mix(in srgb, var(--c) 90%, #fff);
}
.feat .ico svg { width: 22px; height: 22px; fill: currentColor; }
.feat h3 {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 16px;
  margin: 12px 0 6px;
  color: #fff;
}
.feat p { color: var(--muted); font-size: 13px; }
.feat ul { list-style: none; margin: 10px 0 0; }
.feat li {
  font-size: 12px;
  color: var(--text-body);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.45;
}
.feat li::before {
  content: '✓';
  position: absolute;
  left: 0;
  /* --coach and default navy tints are too dark on card bg — blend toward gold/white */
  color: color-mix(in srgb, var(--c) 22%, var(--gold2));
  font-weight: 700;
  font-size: 12px;
}
.feat-wide { grid-column: 1 / -1; }
.feat-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
@media (max-width: 680px) { .feat-cols { grid-template-columns: 1fr; } }
.feat-sub {
  font-family: var(--wm);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c);
  margin-bottom: 6px;
  margin-top: 6px;
}
.feat-roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin: 14px 0;
}
.frole {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.frole .fr-ico {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  color: #fff;
}
.frole .fr-ico svg { width: 18px; height: 18px; fill: currentColor; }
.frole b { font-family: var(--wm); font-weight: 600; font-size: 13px; display: block; color: #fff; }
.frole span { font-size: 11px; color: var(--muted); display: block; margin-top: 2px; line-height: 1.35; }

/* Program strips — 13-week program card style */
#program { background: var(--navy); }
.prog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
@media (max-width: 760px) { .prog-cards { grid-template-columns: 1fr; } }
.prog-strip {
  display: flex;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card-bg2);
  overflow: hidden;
  min-height: 120px;
}
.prog-strip .strip-side { width: 4px; flex: none; }
.prog-strip.physical .strip-side { background: linear-gradient(180deg, #3b82f6, #7dd3fc); }
.prog-strip.posture .strip-side { background: linear-gradient(180deg, #22c55e, #86efac); }
.prog-strip.weight .strip-side { background: linear-gradient(180deg, #e6b54a, #fde047); }
.prog-strip .strip-body { padding: 16px 16px 14px; flex: 1; }
.prog-strip .ico {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.prog-strip.physical .ico { background: rgba(59,130,246,.2); color: #93c5fd; }
.prog-strip.posture .ico { background: rgba(34,197,94,.2); color: #86efac; }
.prog-strip.weight .ico { background: rgba(230,181,74,.2); color: #fde047; }
.prog-strip .ico svg { width: 20px; height: 20px; fill: currentColor; }
.prog-strip h3 {
  font-family: var(--wm);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  color: #fff;
}
.prog-strip p { font-size: 12.5px; color: var(--muted); line-height: 1.45; }

#features { background: var(--navy2); }
.prog-adapt {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: start;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
}
@media (max-width: 860px) { .prog-adapt { grid-template-columns: 1fr; } }
.adapt-title {
  font-family: var(--ui); font-weight: 800;
  font-size: clamp(18px, 2.4vw, 22px); margin-bottom: 10px; color: #fff;
}
.adapt-inputs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ainput {
  font-size: 12px; padding: 6px 12px; border-radius: 20px;
  background: rgba(107, 92, 240, 0.12); border: 1px solid rgba(107, 92, 240, 0.28);
  color: #C7BDFF;
}
.prog-found {
  margin-top: 0; padding: 12px 14px; border-radius: 8px;
  background: rgba(107, 92, 240, 0.12); border: 1px solid rgba(107, 92, 240, 0.28);
  font-size: 13px; color: var(--text-body); line-height: 1.45;
}
.prog-found b { color: #C7BDFF; }

#ai {
  background: radial-gradient(800px 420px at 15% -10%, rgba(22,163,74,.1), transparent 60%), var(--navy2);
}
.ai-flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 12px;
  align-items: stretch; margin-top: 22px;
}
@media (max-width: 860px) { .ai-flow { grid-template-columns: 1fr; gap: 10px; } }
.ai-col {
  background: var(--card-bg); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px;
}
.ai-col .k {
  font-family: var(--ui); font-weight: 700; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.ai-col.inp { border-color: rgba(22,163,74,.35); }
.ai-col.syn { border-color: rgba(230,181,74,.35); }
.ai-col.act { border-color: rgba(63,184,107,.35); }
.ai-line { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-body); padding: 5px 0; }
.ai-line .v { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; background: var(--athlete-accent); }
.ai-syn-title { font-weight: 700; font-size: 15px; color: var(--gold2); margin-bottom: 4px; }
.ai-syn p { font-size: 13px; color: var(--muted); line-height: 1.4; }
.ai-out { font-size: 13px; color: #fff; padding: 7px 0; border-bottom: 1px solid var(--line); }
.ai-out:last-child { border-bottom: 0; }
.ai-out b { color: #9AF0C0; }
.ai-arrow { display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 20px; }
@media (max-width: 860px) { .ai-arrow { transform: rotate(90deg); } }
.ai-note {
  margin-top: 16px; color: var(--muted); font-size: 13px;
  border-left: 3px solid var(--gold); padding-left: 12px; max-width: 760px; line-height: 1.45;
}

#plans { background: var(--navy); }
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 760px; margin: 22px auto 0; }
@media (max-width: 620px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 20px; background: var(--card-bg);
}
.tier-card.pro { border-color: rgba(230,181,74,.4); background: linear-gradient(165deg, rgba(230,181,74,.08), var(--card-bg)); }
.tier-card .name { font-family: var(--ui); font-weight: 800; font-size: 18px; color: #fff; }
.tier-card .sub { font-size: 12px; color: var(--muted); margin: 4px 0 12px; }
.tier-card ul { list-style: none; }
.tier-card li {
  font-size: 13px; color: var(--text-body); padding: 5px 0 5px 18px;
  position: relative; line-height: 1.4;
}
.tier-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.safe { margin-top: 14px; font-size: 13px; color: var(--muted); max-width: 640px; margin-left: auto; margin-right: auto; }
.safe b { color: var(--text-body); }
.cta { margin-top: 24px; font-family: var(--ui); font-weight: 800; font-size: clamp(20px, 3vw, 26px); }
.foot { margin-top: 14px; color: var(--muted); font-size: 12px; }
.btn-ghost {
  border: 1px solid var(--line); color: var(--text-body);
  background: rgba(255,255,255,.03);
}
.btn-ghost:hover { border-color: rgba(230,181,74,.45); transform: translateY(-2px); }

/* Triangle */
#triangle {
  background: radial-gradient(800px 420px at 88% -10%, rgba(34,197,94,.08), transparent 60%), var(--navy2);
}
.tri-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 860px) { .tri-grid { grid-template-columns: 1fr; } }
.tri-stage {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 400 / 360;
}
.tri-stage svg.tri-edges { width: 100%; height: 100%; display: block; position: relative; z-index: 1; }
.tri-edge { stroke-dasharray: 6 8; animation: tri-flow 3s linear infinite; opacity: 0.95; }
@keyframes tri-flow { to { stroke-dashoffset: -28; } }
.tri-logo-center {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 20%;
  text-align: center;
  pointer-events: none;
  z-index: 2;
}
.tri-logo-center img { width: 100%; height: auto; filter: drop-shadow(0 0 10px rgba(255,215,0,.3)); }
.tri-logo-center .tri-wm {
  font-family: var(--wm);
  font-size: 7px;
  letter-spacing: .12em;
  color: var(--gold2);
  margin-top: 3px;
  text-transform: uppercase;
}
.tri-particle {
  position: absolute;
  width: 11px; height: 11px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px currentColor, 0 0 18px currentColor;
  z-index: 3;
  opacity: 0.9;
}
.vtx { display: flex; gap: 12px; margin: 10px 0; align-items: flex-start; }
.vtx .dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 4px; flex: 0 0 auto; }
.vtx b { font-family: var(--wm); font-weight: 600; color: #fff; font-size: 14px; }
.vtx p { color: var(--muted); font-size: 13px; line-height: 1.45; }
.tri-pull {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(22,163,74,.1);
  border: 1px solid rgba(22,163,74,.28);
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}
.tri-pull b { color: #fff; }
.tri-formula {
  border: 1px solid rgba(34,197,94,.35);
  background: rgba(34,197,94,.06);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
}
.tri-formula b { color: #4ADE80; }
.tri-copy h3 {
  font-family: var(--wm);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold2);
  margin: 0 0 10px;
}
.tri-intro {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.5;
}
.cmp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 860px) { .cmp { grid-template-columns: 1fr; } }
.cmp-box {
  padding: 14px;
  border-radius: 12px;
  background: #181D3D;
  border: 1px solid #2A3360;
}
.cmp-box.pos h4 { color: #10B981; }
.cmp-box.neg h4 { color: #E63946; }
.cmp-box h4 {
  font-family: var(--wm);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px;
}
.cmp-box li {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0;
  line-height: 1.45;
}
.cmp-box ul { margin: 0; padding-left: 16px; }
.tri-foot {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  margin-top: 20px;
}

/* Closing CTA — gold primary like catalog */
#closing {
  background: radial-gradient(900px 500px at 50% 120%, rgba(22,163,74,.1), transparent 60%), var(--navy2);
  text-align: center;
  padding-bottom: 64px;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.coach-skip-next {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}
.coach-skip-next input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.btn {
  font-family: var(--wm);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: .25s;
  cursor: pointer;
  display: inline-block;
}
.feat .ico .material-symbols-outlined {
  font-size: 26px;
  color: var(--c, var(--athlete));
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Triangle of Excellence — same visual as coach landing */
#triangle {
  background: radial-gradient(800px 420px at 88% -10%, rgba(34,197,94,.08), transparent 60%), var(--navy2);
}
.tri-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 860px) { .tri-grid { grid-template-columns: 1fr; } }
.tri-stage {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 400 / 360;
}
.tri-stage svg.tri-edges { width: 100%; height: 100%; display: block; position: relative; z-index: 1; }
.tri-edge { stroke-dasharray: 6 8; animation: tri-flow 3s linear infinite; opacity: 0.95; }
@keyframes tri-flow { to { stroke-dashoffset: -28; } }
.tri-logo-center {
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 20%;
  text-align: center;
  pointer-events: none;
  z-index: 2;
}
.tri-logo-center img { width: 100%; height: auto; filter: drop-shadow(0 0 10px rgba(255,215,0,.3)); }
.tri-logo-center .tri-wm {
  font-family: var(--wm);
  font-size: 7px;
  letter-spacing: .12em;
  color: var(--gold2);
  margin-top: 3px;
  text-transform: uppercase;
}
.tri-particle {
  position: absolute;
  width: 11px; height: 11px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px currentColor, 0 0 18px currentColor;
  z-index: 3;
  opacity: 0.9;
}
.vtx { display: flex; gap: 12px; margin: 10px 0; align-items: flex-start; }
.vtx .dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 4px; flex: 0 0 auto; }
.vtx b { font-family: var(--wm); font-weight: 600; color: #fff; font-size: 14px; }
.vtx p { color: var(--muted); font-size: 13px; line-height: 1.45; }
.tri-pull {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.28);
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}
.tri-pull b { color: #fff; }

.tagline {
  font-family: var(--wm);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: clamp(10px, 1.4vw, 13px);
  color: var(--gold2);
  margin-top: 2px;
}
.chev {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2em;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
.parent-skip-next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}
.parent-skip-next input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.btn-primary {
  background: linear-gradient(120deg, #16A34A, #22C55E);
  color: #fff;
  border: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(22,163,74,.35); }
