/* ============================================================
   WONDERWORLD — COMPLETE STYLESHEET
   ============================================================ */

:root {
  --ink:         #0d0821;
  --ink-soft:    #1a1038;
  --purple:      #7c3aed;
  --purple-dark: #5b21b6;
  --purple-pale: #ede9fe;
  --rose:        #f43f5e;
  --amber:       #f59e0b;
  --amber-pale:  #fef3c7;
  --teal:        #14b8a6;
  --sky:         #0369a1;
  --green:       #15803d;
  --red:         #be123c;
  --white:       #ffffff;
  --off:         #f9f5ff;
  --muted:       #8b7db5;
  --text-soft:   #4c3d7a;

  --hero-bg:   linear-gradient(135deg, #0d0821 0%, #1a0c3a 50%, #0d0821 100%);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --fd: 'Baloo 2', cursive;
  --fb: 'Nunito', system-ui, sans-serif;
  --shadow: 0 8px 32px rgba(124,58,237,.14);
  --shadow-lg: 0 20px 60px rgba(124,58,237,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); background: var(--off); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: all .22s ease; }
img { display: block; max-width: 100%; }

.container { width: 92%; max-width: 1160px; margin: 0 auto; }
.section { padding: 6rem 0; }

/* ── Typography helpers ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--fd);
  font-size: .75rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--purple);
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.18);
  padding: .35rem 1rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--fd);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900; line-height: 1.12;
  color: var(--ink); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-soft);
  max-width: 600px; margin: 0 auto 3rem;
  text-align: center;
}
.grad-text {
  background: linear-gradient(90deg, var(--amber) 0%, var(--rose) 50%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,8,33,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(124,58,237,.15);
  padding: .9rem 0;
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-family: var(--fd); font-size: 1.6rem; font-weight: 900;
  color: var(--white); letter-spacing: -.02em;
}
.logo span { color: var(--amber); }
.nav-links { list-style: none; display: flex; gap: .1rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.7); font-weight: 600; font-size: .88rem;
  padding: .45rem .85rem; border-radius: var(--r-sm);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(124,58,237,.15); }
.btn-nav-cta {
  background: var(--purple); color: #fff !important;
  padding: .5rem 1.1rem !important; border-radius: 50px !important;
  font-size: .82rem !important; font-weight: 800 !important;
  box-shadow: 0 0 20px rgba(124,58,237,.4);
  margin-left: .4rem;
}
.btn-nav-cta:hover { background: var(--purple-dark) !important; transform: translateY(-1px); box-shadow: 0 0 30px rgba(124,58,237,.6) !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: .3rem;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--hero-bg);
  padding: 5rem 0 4rem;
}
.blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px); opacity: .55;
}
.b1 { width: 600px; height: 600px; background: radial-gradient(circle, #7c3aed, transparent); top: -180px; left: -150px; animation: drift 9s ease-in-out infinite alternate; }
.b2 { width: 400px; height: 400px; background: radial-gradient(circle, #f43f5e, transparent); bottom: -100px; right: -80px; animation: drift 11s ease-in-out infinite alternate-reverse; }
.b3 { width: 300px; height: 300px; background: radial-gradient(circle, #38bdf8, transparent); top: 40%; left: 55%; animation: drift 13s ease-in-out infinite alternate; }
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(25px,18px) scale(1.08); } }

.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-copy { max-width: 520px; }
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,.14); border: 1px solid rgba(245,158,11,.3);
  color: #fde68a; font-weight: 700; font-size: .75rem; letter-spacing: .08em;
  padding: .4rem 1.1rem; border-radius: 50px; margin-bottom: 1.6rem;
}
.hero-copy h1 {
  font-family: var(--fd); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 1.2rem;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--amber), var(--rose) 55%, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-copy p { font-size: 1.05rem; color: rgba(255,255,255,.68); margin-bottom: 2rem; }

/* Download buttons */
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-dl {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .85rem 1.5rem; border-radius: var(--r-sm);
  font-weight: 700; font-family: var(--fd); transition: transform .2s, box-shadow .2s;
  border: 1.5px solid transparent;
}
.btn-dl span { display: flex; flex-direction: column; line-height: 1.2; }
.btn-dl small { font-size: .65rem; font-weight: 600; opacity: .75; }
.btn-dl-apple {
  background: rgba(255,255,255,.1); color: #fff;
  border-color: rgba(255,255,255,.22); backdrop-filter: blur(8px);
}
.btn-dl-apple:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.btn-dl-google { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.btn-dl-google:hover { background: #fde68a; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(245,158,11,.38); }

/* Trust bar */
.hero-trust { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-item strong { display: block; font-family: var(--fd); font-size: 1.3rem; font-weight: 900; color: #fff; }
.trust-item span { font-size: .7rem; color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .07em; }
.trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,.14); }

/* Hero phones */
.hero-phones { position: relative; display: flex; justify-content: center; align-items: flex-end; gap: -20px; height: 480px; }
.phone { position: absolute; }
.phone-back { right: 10px; bottom: 0; transform: rotate(6deg) translateY(20px); z-index: 1; }
.phone-front { right: 140px; bottom: 0; transform: rotate(-4deg); z-index: 2; }
.phone-frame {
  width: 190px; border-radius: 28px;
  background: #0f0820; border: 2.5px solid rgba(124,58,237,.4);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(124,58,237,.1), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden; position: relative;
}
.phone-notch {
  width: 60px; height: 10px; background: #0f0820;
  border-radius: 0 0 10px 10px; margin: 0 auto 0;
  position: relative; z-index: 10;
  box-shadow: 0 0 0 2px rgba(124,58,237,.25);
}
.phone-screen { display: flex; flex-direction: column; }

/* Back phone — audiobooks */
.pb-screen { background: linear-gradient(160deg,#1a0c4a,#0d0821); color: white; padding: .8rem; min-height: 340px; }
.pb-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; font-size: .65rem; opacity: .7; }
.pb-shelf { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; margin-bottom: .8rem; }
.pb-book { background: color-mix(in srgb, var(--bc) 30%, #1a0c4a); border: 1px solid color-mix(in srgb, var(--bc) 50%, transparent); border-radius: 8px; padding: .5rem .4rem; font-size: .6rem; display: flex; flex-direction: column; align-items: center; gap: .25rem; text-align: center; }
.pb-book span { color: rgba(255,255,255,.7); line-height: 1.2; }
.pb-player { background: rgba(255,255,255,.07); border-radius: 10px; padding: .7rem; border: 1px solid rgba(255,255,255,.1); }
.pb-art { font-size: 1.6rem; text-align: center; margin-bottom: .4rem; }
.pb-info { text-align: center; margin-bottom: .5rem; }
.pb-info b { font-size: .65rem; display: block; }
.pb-info span { font-size: .5rem; opacity: .6; }
.pb-ctrl { display: flex; justify-content: space-around; align-items: center; margin-bottom: .5rem; font-size: .8rem; }
.pb-play { width: 28px; height: 28px; background: linear-gradient(135deg,var(--purple),var(--rose)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .75rem; }
.pb-bar { background: rgba(255,255,255,.15); border-radius: 4px; height: 3px; }
.pb-fill { width: 35%; background: var(--purple); height: 100%; border-radius: 4px; }

/* Front phone — home screen */
.pf-screen { background: linear-gradient(160deg,#1e0c4a,#0d0821); color: white; padding: .8rem; min-height: 380px; display: flex; flex-direction: column; gap: .6rem; }
.pf-top { display: flex; justify-content: space-between; align-items: center; }
.pf-av { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,var(--purple),var(--rose)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .75rem; }
.pf-continue { background: rgba(255,255,255,.08); border-radius: 10px; padding: .6rem; border: 1px solid rgba(255,255,255,.1); }
.pf-cc { display: flex; align-items: center; gap: .5rem; }
.pf-prog { background: rgba(255,255,255,.2); border-radius: 3px; height: 3px; margin: .2rem 0; }
.pf-prog-fill { width: 68%; background: var(--amber); height: 100%; border-radius: 3px; }
.pf-cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .3rem; }
.pf-cat { background: color-mix(in srgb, var(--ci) 30%, #1a0c4a); border: 1px solid color-mix(in srgb, var(--ci) 40%, transparent); border-radius: 8px; padding: .38rem .15rem; display: flex; flex-direction: column; align-items: center; gap: .16rem; font-size: .5rem; }
.pf-new-card { background: rgba(255,255,255,.08); border-radius: 8px; padding: .5rem .6rem; display: flex; align-items: center; gap: .5rem; border: 1px solid rgba(255,255,255,.1); font-size: .65rem; }
.pf-new-tag { background: var(--purple); color: white; font-size: .45rem; font-weight: 700; padding: .15rem .35rem; border-radius: 4px; margin-left: auto; }

/* Floating decor */
.fdeco { position: absolute; font-size: 1.9rem; pointer-events: none; z-index: 3; animation: bob 6s ease-in-out infinite; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.fd1 { top: 12%; left: 6%; animation-delay: 0s; }
.fd2 { top: 18%; right: 8%; animation-delay: 1.2s; font-size: 1.5rem; }
.fd3 { bottom: 22%; left: 10%; animation-delay: .7s; font-size: 1.7rem; }
.fd4 { bottom: 28%; right: 12%; animation-delay: 1.8s; font-size: 1.6rem; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(4deg); } }

/* ── WORLDS GRID ── */
.worlds-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; text-align: left; }
.world-card {
  position: relative; overflow: hidden;
  padding: 2.2rem 2rem 1.8rem; border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: .6rem;
  transition: transform .28s ease, box-shadow .28s ease;
}
.world-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); }
.wc-purple { background: linear-gradient(135deg,#2d1057,#5b21b6); }
.wc-blue   { background: linear-gradient(135deg,#0c2a4a,#0369a1); }
.wc-green  { background: linear-gradient(135deg,#0c3a1a,#15803d); }
.wc-red    { background: linear-gradient(135deg,#3a0c1a,#be123c); }
.wc-amber  { background: linear-gradient(135deg,#3a2408,#d97706); }
.wc-teal   { background: linear-gradient(135deg,#063733,#0f766e); }
.wc-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 20%, rgba(255,255,255,.09), transparent 60%);
  pointer-events: none;
}
.wc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: .4rem; }
.wc-icon { font-size: 2.5rem; transition: transform .28s; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.world-card:hover .wc-icon { transform: scale(1.15) rotate(-6deg); }
.wc-badge { background: rgba(255,255,255,.14); color: rgba(255,255,255,.85); font-size: .68rem; font-weight: 700; padding: .25rem .75rem; border-radius: 50px; border: 1px solid rgba(255,255,255,.18); font-family: var(--fd); }
.world-card h3 { font-family: var(--fd); font-size: 1.45rem; font-weight: 900; color: #fff; }
.world-card > p { color: rgba(255,255,255,.68); font-size: .92rem; }
.wc-feats { list-style: none; display: flex; flex-direction: column; gap: .35rem; margin-top: .2rem; }
.wc-feats li { font-size: .8rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .45rem; }
.wc-feats li::before { content: '✓'; color: rgba(255,255,255,.4); font-weight: 800; flex-shrink: 0; }
.wc-cta { margin-top: auto; padding-top: 1rem; font-weight: 800; font-size: .82rem; color: rgba(255,255,255,.55); display: inline-flex; align-items: center; gap: .3rem; transition: color .2s, gap .2s; font-family: var(--fd); }
.world-card:hover .wc-cta { color: rgba(255,255,255,.95); gap: .6rem; }

/* ── SCREENSHOTS ── */
.screenshots-section { background: var(--ink); overflow: hidden; }
.screenshots-section .section-eyebrow { color: var(--amber); background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.2); }
.screenshots-section .section-title { color: #fff; }
.screenshots-section .section-sub { color: rgba(255,255,255,.55); }
.screenshots-section .container { text-align: center; }

.screens-outer { overflow-x: auto; padding: 1rem 0 3rem; scrollbar-width: thin; scrollbar-color: rgba(124,58,237,.4) transparent; }
.screens-outer::-webkit-scrollbar { height: 4px; }
.screens-outer::-webkit-scrollbar-track { background: transparent; }
.screens-outer::-webkit-scrollbar-thumb { background: rgba(124,58,237,.4); border-radius: 4px; }
.screens-row { display: flex; gap: 2.5rem; padding: 0 calc(50vw - 580px); width: max-content; }

.scr-item { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; width: 250px; flex-shrink: 0; }
.scr-phone { width: 210px; }
.scr-frame {
  width: 210px; border-radius: 32px;
  background: #0a0515;
  border: 2.5px solid rgba(124,58,237,.35);
  box-shadow: 0 28px 70px rgba(0,0,0,.65), 0 0 0 1px rgba(124,58,237,.08), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}
.scr-notch { width: 65px; height: 12px; background: #0a0515; border-radius: 0 0 12px 12px; margin: 0 auto; border: 2px solid rgba(124,58,237,.2); border-top: none; }
.scr-inner { display: flex; flex-direction: column; min-height: 400px; overflow: hidden; }

/* Home screen */
.home-screen { background: #0d0821; color: white; }
.hs-top { display: flex; justify-content: space-between; align-items: center; padding: .9rem .9rem .6rem; background: linear-gradient(160deg,#1e0c4a,#0d0821); }
.hs-greet { font-size: .55rem; opacity: .55; }
.hs-name { font-family: var(--fd); font-size: .85rem; font-weight: 800; }
.hs-av { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg,var(--purple),var(--rose)); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .8rem; }
.hs-continue { padding: .6rem .9rem; background: linear-gradient(160deg,#1e0c4a,#0d0821); }
.hs-label { font-size: .5rem; text-transform: uppercase; letter-spacing: .1em; opacity: .5; margin-bottom: .4rem; }
.hs-book { display: flex; align-items: center; gap: .55rem; background: rgba(255,255,255,.08); border-radius: 10px; padding: .55rem .65rem; border: 1px solid rgba(255,255,255,.1); }
.hs-emoji { font-size: 1.6rem; }
.hs-book-info b { font-size: .68rem; display: block; margin-bottom: .25rem; }
.hs-book-info small { font-size: .5rem; opacity: .55; }
.hs-bar { background: rgba(255,255,255,.2); border-radius: 3px; height: 3px; margin: .2rem 0; }
.hs-bar-fill { background: var(--amber); height: 100%; border-radius: 3px; }
.hs-play { margin-left: auto; font-size: .9rem; opacity: .7; }
.hs-cats { padding: .6rem .9rem; background: #f9f5ff; }
.hs-cats .hs-label { color: var(--ink); opacity: .5; }
.hs-cat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .35rem; }
.hs-cat { background: rgba(0,0,0,.04); border-radius: 9px; padding: .38rem .16rem; display: flex; flex-direction: column; align-items: center; gap: .16rem; font-size: .5rem; color: var(--ink); border: 1.5px solid color-mix(in srgb, var(--c) 20%, transparent); }
.hs-new { padding: .6rem .9rem 1rem; background: #f9f5ff; flex: 1; }
.hs-new .hs-label { color: var(--ink); opacity: .5; }
.hs-new-item { display: flex; align-items: center; gap: .5rem; background: white; border-radius: 9px; padding: .38rem .55rem; margin-bottom: .3rem; border: 1px solid rgba(124,58,237,.09); box-shadow: 0 1px 6px rgba(124,58,237,.06); font-size: .62rem; color: var(--ink); }
.hs-new-item b { font-size: .65rem; display: block; color: var(--ink); }
.hs-new-item small { font-size: .52rem; color: var(--muted); }
.hs-new-badge { background: var(--purple); color: white; font-size: .45rem; font-weight: 800; padding: .15rem .35rem; border-radius: 4px; margin-left: auto; }
.hs-hot-badge { background: var(--amber); color: var(--ink); font-size: .45rem; font-weight: 800; padding: .15rem .35rem; border-radius: 4px; margin-left: auto; }

/* Audio screen */
.audio-screen { background: linear-gradient(160deg,#0c2a4a,#051525); color: white; padding: .9rem; display: flex; flex-direction: column; gap: .7rem; min-height: 400px; }
.au-header { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }
.au-header span:nth-child(2) { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .65; }
.au-art { background: linear-gradient(135deg,#1e3a5f,#0c2a4a); border-radius: 16px; padding: 1.5rem; text-align: center; border: 1px solid rgba(56,189,248,.18); }
.au-art-inner { font-size: 3.5rem; }
.au-meta { text-align: center; }
.au-meta b { display: block; font-family: var(--fd); font-size: .88rem; font-weight: 800; }
.au-meta span { font-size: .58rem; opacity: .55; }
.au-progress { }
.au-bar { background: rgba(255,255,255,.14); border-radius: 4px; height: 4px; margin-bottom: .35rem; }
.au-bar-fill { width: 35%; background: linear-gradient(90deg,#38bdf8,var(--purple)); height: 100%; border-radius: 4px; }
.au-times { display: flex; justify-content: space-between; font-size: .52rem; opacity: .5; }
.au-controls { display: flex; justify-content: space-around; align-items: center; }
.au-btn { font-size: .8rem; opacity: .55; }
.au-play { width: 46px; height: 46px; background: linear-gradient(135deg,#38bdf8,var(--purple)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 6px 20px rgba(124,58,237,.4); }
.au-extras { display: flex; justify-content: space-around; }
.au-extra { display: flex; flex-direction: column; align-items: center; gap: .2rem; font-size: .7rem; }
.au-extra small { font-size: .45rem; opacity: .45; }

/* Comic screen */
.comic-screen { background: #0d0821; color: white; display: flex; flex-direction: column; min-height: 400px; }
.cm-header { background: #1a0533; padding: .7rem .9rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; border-bottom: 1px solid rgba(124,58,237,.2); }
.cm-header span:nth-child(2) { font-family: var(--fd); font-size: .65rem; font-weight: 700; }
.cm-panels { flex: 1; padding: .6rem; display: grid; grid-template-rows: 1fr 1fr; grid-template-columns: 1fr 1fr; gap: .4rem; }
.cm-panel { border-radius: 9px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.cm-big { grid-column: 1 / -1; background: linear-gradient(135deg,#1e3a5f,#0c1a2e); border: 1.5px solid rgba(56,189,248,.18); font-size: 2.8rem; }
.cm-speech { position: absolute; bottom: .4rem; left: .4rem; right: .4rem; background: rgba(0,0,0,.72); border-radius: 5px; padding: .3rem .4rem; font-size: .5rem; font-style: italic; }
.cm-action { background: linear-gradient(135deg,#3a1a0c,#1a0c06); border: 1.5px solid rgba(239,68,68,.2); flex-direction: column; gap: .2rem; }
.cm-pow { font-size: .85rem; font-weight: 900; color: #ef4444; font-family: var(--fd); text-shadow: 0 0 12px rgba(239,68,68,.5); }
.cm-city { background: linear-gradient(135deg,#1a2a0c,#0c1a06); border: 1.5px solid rgba(34,197,94,.15); }
.cm-footer { background: #1a0533; padding: .55rem .9rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(124,58,237,.15); font-size: .55rem; }
.cm-footer span:nth-child(2) { color: rgba(255,255,255,.4); }

/* Parent screen */
.parent-screen { background: #f9f5ff; display: flex; flex-direction: column; min-height: 400px; }
.pa-header { background: linear-gradient(135deg,#1e0c4a,#0d0821); padding: 1rem .9rem .9rem; color: white; }
.pa-title { font-family: var(--fd); font-size: .85rem; font-weight: 800; margin-bottom: .15rem; }
.pa-sub { font-size: .55rem; opacity: .55; }
.pa-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .4rem; padding: .6rem .9rem; background: linear-gradient(135deg,#1e0c4a,#0d0821); border-bottom: 2px solid rgba(124,58,237,.2); }
.pa-stat { background: rgba(255,255,255,.1); border-radius: 9px; padding: .5rem; text-align: center; border: 1px solid rgba(255,255,255,.12); color: white; }
.pa-stat b { display: block; font-family: var(--fd); font-size: .9rem; font-weight: 800; }
.pa-stat small { font-size: .45rem; opacity: .55; }
.pa-body { padding: .7rem .9rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.pa-label { font-size: .5rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink); opacity: .45; margin-bottom: .1rem; }
.pa-bar-row { display: flex; align-items: center; gap: .45rem; font-size: .85rem; }
.pa-bar-wrap { flex: 1; }
.pa-bar-inner { background: #e0e7ff; border-radius: 3px; height: 5px; }
.pa-bar-fill { height: 100%; border-radius: 3px; }
.pa-pct { font-size: .6rem; font-weight: 800; width: 28px; text-align: right; }
.pa-limit { background: linear-gradient(135deg,#1e0c4a,#0d0821); border-radius: 10px; padding: .65rem .8rem; display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.pa-limit-title { font-size: .65rem; font-weight: 700; color: white; }
.pa-limit-sub { font-size: .52rem; color: rgba(255,255,255,.5); }
.pa-limit-val { background: var(--purple); color: white; font-size: .6rem; font-weight: 800; padding: .25rem .55rem; border-radius: 6px; font-family: var(--fd); }

.scr-label { text-align: center; }
.scr-label h4 { font-family: var(--fd); font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: .4rem; }
.scr-label p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ── LANGUAGE STRIP ── */
.lang-strip { background: var(--ink-soft); padding: 1.1rem 0; overflow: hidden; border-top: 1px solid rgba(124,58,237,.18); border-bottom: 1px solid rgba(124,58,237,.18); }
.lang-track { display: flex; gap: 1.8rem; white-space: nowrap; animation: marquee 20s linear infinite; width: max-content; }
.lang-item { font-family: var(--fd); font-size: 1rem; font-weight: 700; color: #c4b5fd; }
.lang-dot { color: rgba(124,58,237,.5); font-size: .7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SAFETY ── */
.safety-section { background: var(--white); }
.safety-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.safety-copy .section-title { text-align: left; }
.safety-copy > p { color: var(--text-soft); margin-bottom: 2rem; text-align: left; }
.sf-list { display: flex; flex-direction: column; gap: 1.3rem; }
.sf-item { display: flex; gap: 1rem; align-items: flex-start; }
.sf-icon { width: 40px; height: 40px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.sf-purple { background: rgba(124,58,237,.12); }
.sf-blue   { background: rgba(3,105,161,.12); }
.sf-green  { background: rgba(21,128,61,.12); }
.sf-amber  { background: rgba(245,158,11,.12); }
.sf-red    { background: rgba(190,18,60,.12); }
.sf-teal   { background: rgba(20,184,166,.12); }
.sf-item strong { display: block; font-size: .95rem; font-weight: 800; color: var(--ink); margin-bottom: .2rem; }
.sf-item p { color: var(--text-soft); font-size: .85rem; margin: 0; }

.safety-visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.sv-badge {
  width: 220px; height: 220px; border-radius: 50%;
  background: linear-gradient(135deg,#1e0c4a,#0d0821);
  border: 2px solid rgba(124,58,237,.3);
  box-shadow: 0 0 60px rgba(124,58,237,.25), var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.sv-inner { text-align: center; padding: 1rem; }
.sv-title { font-family: var(--fd); font-size: 1.2rem; font-weight: 900; color: white; margin-bottom: .35rem; }
.sv-desc { font-size: .72rem; color: rgba(255,255,255,.55); line-height: 1.4; }
.sv-pills { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
.sv-pill { background: var(--purple-pale); color: var(--purple-dark); font-size: .78rem; font-weight: 700; padding: .35rem .9rem; border-radius: 50px; border: 1px solid rgba(124,58,237,.2); }
.sv-rating { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.sv-stars { color: var(--amber); font-size: 1.1rem; letter-spacing: .05em; }
.sv-rating span { font-size: .8rem; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--off); }
.testi-section .section-title, .testi-section .section-eyebrow { text-align: center; display: block; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card {
  background: var(--white); border-radius: var(--r-lg); padding: 2rem;
  border: 1.5px solid rgba(124,58,237,.1);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s, box-shadow .25s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi-featured { background: linear-gradient(135deg,#1e0c4a,#0d0821); border-color: rgba(124,58,237,.4); transform: scale(1.03); }
.testi-featured:hover { transform: scale(1.03) translateY(-5px); }
.testi-stars { color: var(--amber); font-size: .95rem; letter-spacing: .05em; }
.testi-card p { color: var(--text-soft); font-size: .92rem; font-style: italic; flex: 1; }
.testi-featured p { color: rgba(255,255,255,.7); }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.tav { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .95rem; color: white; flex-shrink: 0; }
.testi-author strong { display: block; font-size: .88rem; color: var(--ink); }
.testi-featured .testi-author strong { color: white; }
.testi-author small { font-size: .75rem; color: var(--muted); }
.testi-featured .testi-author small { color: rgba(255,255,255,.45); }

/* ── DOWNLOAD ── */
.dl-section { background: var(--off); }
.dl-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg,#1e0c4a 0%,#0d0821 100%);
  border-radius: var(--r-xl); padding: 4.5rem;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center;
  border: 1px solid rgba(124,58,237,.25);
  box-shadow: var(--shadow-lg);
}
.dl-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.do1 { width: 400px; height: 400px; background: rgba(124,58,237,.4); top: -150px; left: -100px; }
.do2 { width: 300px; height: 300px; background: rgba(244,63,94,.3); bottom: -100px; right: -50px; }
.dl-left { position: relative; z-index: 2; }
.dl-eyebrow { display: inline-block; background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.3); color: #fde68a; font-size: .75rem; font-weight: 700; padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1.2rem; }
.dl-left h2 { font-family: var(--fd); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 900; color: white; margin-bottom: .8rem; line-height: 1.15; }
.dl-left > p { color: rgba(255,255,255,.65); margin-bottom: 2rem; }
.dl-btns { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.dl-fine { font-size: .78rem; color: rgba(255,255,255,.35); }
.dl-right { position: relative; z-index: 2; }
.dl-count-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dc-item {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 1.5rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  text-align: center; transition: background .2s;
}
.dc-item:hover { background: rgba(255,255,255,.12); }
.dc-n { font-family: var(--fd); font-size: 1.6rem; font-weight: 900; color: white; }
.dc-e { font-size: 1.6rem; }
.dc-l { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 600; }

/* ── FOOTER ── */
.site-footer { background: #060311; padding: 4.5rem 0 0; border-top: 1px solid rgba(124,58,237,.15); }
.footer-main { display: grid; grid-template-columns: 1.2fr 2fr; gap: 4rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand-col .logo { font-size: 1.5rem; color: white; display: inline-block; margin-bottom: .8rem; }
.footer-brand-col p { font-size: .88rem; color: rgba(255,255,255,.4); max-width: 240px; margin-bottom: 1.2rem; line-height: 1.6; }
.ft-langs { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.ft-langs span { font-size: .68rem; font-weight: 700; letter-spacing: .07em; background: rgba(124,58,237,.15); color: #c4b5fd; padding: .22rem .6rem; border-radius: 50px; border: 1px solid rgba(124,58,237,.22); }
.ft-email { font-size: .82rem; color: rgba(255,255,255,.35); transition: color .2s; }
.ft-email:hover { color: #c4b5fd; }
.footer-nav-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.fnc h5 { font-family: var(--fd); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 1.2rem; }
.fnc ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.fnc a { font-size: .88rem; color: rgba(255,255,255,.38); }
.fnc a:hover { color: #c4b5fd; }
.footer-bar { display: flex; justify-content: space-between; align-items: center; padding: 1.6rem 0; font-size: .8rem; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: .5rem; }

/* ── INNER PAGES ── */
.page-hero {
  background: var(--hero-bg);
  position: relative; overflow: hidden;
  padding: 5.5rem 0 4rem; text-align: center;
}
.page-hero::before { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle,rgba(124,58,237,.4),transparent); top: -200px; left: 50%; transform: translateX(-50%); border-radius: 50%; pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero-eyebrow { display: inline-block; background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.25); color: #fde68a; font-size: .75rem; font-weight: 700; padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1.4rem; font-family: var(--fd); letter-spacing: .08em; }
.page-hero h1 { font-family: var(--fd); font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 900; color: white; margin-bottom: 1rem; line-height: 1.1; }
.page-hero p { color: rgba(255,255,255,.66); max-width: 580px; margin: 0 auto 2.2rem; font-size: 1.05rem; }
.page-hero-btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* Feature cards on inner pages */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.4rem; margin-top: 2.5rem; }
.feat-card {
  background: var(--white); border-radius: var(--r-lg); padding: 2.2rem;
  border: 1.5px solid rgba(124,58,237,.1); box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,.28); }
.fc-icon { font-size: 2.6rem; margin-bottom: .9rem; display: block; }
.feat-card h3 { font-family: var(--fd); font-size: 1.18rem; font-weight: 800; color: var(--ink); margin-bottom: .5rem; }
.feat-card p { color: var(--text-soft); font-size: .9rem; margin: 0; }

/* Language tags on inner pages */
.lang-tags-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin: 1.5rem 0 2.2rem; }
.lang-tag { background: var(--purple-pale); color: var(--purple-dark); padding: .5rem 1.1rem; border-radius: 50px; font-weight: 700; font-size: .88rem; border: 1.5px solid rgba(124,58,237,.18); font-family: var(--fd); transition: background .2s; }
.lang-tag:hover { background: rgba(124,58,237,.18); }

.btn-back { display: inline-flex; align-items: center; gap: .4rem; border: 2px solid rgba(124,58,237,.3); color: var(--purple-dark); padding: .75rem 1.6rem; border-radius: 50px; font-weight: 800; font-family: var(--fd); transition: all .22s; }
.btn-back:hover { background: var(--purple); color: white; border-color: var(--purple); transform: translateY(-2px); }

/* Inner page content sections */
.inner-features { background: var(--off); }
.inner-languages { background: var(--white); text-align: center; }
.inner-languages .section-title { text-align: center; }

/* Internal page screenshot placeholders */
.app-screenshots { background: var(--off); }
.app-shot-grid {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.6rem;
  width: max-content;
  animation: appShotScroll 42s linear infinite;
  will-change: transform;
}
.app-screenshots .container {
  overflow: hidden;
  max-width: none;
  padding-left: max(1.5rem, calc((100vw - 1160px) / 2));
  padding-right: 0;
}
.app-screenshots .section-eyebrow,
.app-screenshots .section-title,
.app-screenshots .section-sub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.app-screenshots .section-sub { margin-bottom: 0; }
.app-shot-grid:hover { animation-play-state: paused; }
@keyframes appShotScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% + 100vw - 1.5rem)); }
}
.app-shot {
  width: 270px;
  flex: 0 0 270px;
  text-align: center;
  background: var(--white);
  border: 1.5px solid rgba(124,58,237,.1);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}
.app-shot h3 {
  font-family: var(--fd);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  margin: 1rem 0 .45rem;
}
.app-shot p {
  color: var(--text-soft);
  font-size: .88rem;
  line-height: 1.55;
  margin: 0;
}
.app-phone {
  width: min(190px, 100%);
  aspect-ratio: 9 / 18.5;
  margin: 0 auto;
  border-radius: 30px;
  background: #0a0515;
  border: 2.5px solid rgba(124,58,237,.35);
  box-shadow: 0 20px 50px rgba(13,8,33,.22), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}
.app-notch {
  width: 58px;
  height: 11px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  background: #0a0515;
  border: 2px solid rgba(124,58,237,.2);
  border-top: 0;
  position: relative;
  z-index: 2;
}
.app-screen {
  min-height: calc(100% - 11px);
  padding: .8rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.app-screen-home,
.app-screen-library,
.app-screen-parent { background: linear-gradient(160deg,#1e0c4a,#0d0821); }
.app-screen-audio { background: linear-gradient(160deg,#082f49,#0d0821); }
.app-screen-bedtime { background: linear-gradient(160deg,#21123f,#020617); }
.app-screen-reader { background: linear-gradient(160deg,#f9fafb,#ede9fe); color: var(--ink); }
.app-screen-comic { background: linear-gradient(160deg,#3f1021,#0d0821); }
.app-screen-video { background: linear-gradient(160deg,#3a2408,#0d0821); }
.app-screen-joke { background: linear-gradient(160deg,#063733,#0d0821); }
.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .62rem;
  font-weight: 800;
  opacity: .85;
}
.app-hero-tile,
.app-cover-art,
.app-story-art,
.app-moon,
.app-stat-ring,
.app-comic-panel {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.1);
}
.app-hero-tile {
  min-height: 78px;
  display: flex;
  align-items: end;
  padding: .7rem;
  font-size: .72rem;
  font-weight: 800;
  background: linear-gradient(135deg,var(--purple),var(--rose));
}
.app-mini-grid,
.app-card-row,
.app-comic-row,
.app-toggle-row,
.app-controls,
.app-pill-row {
  display: grid;
  gap: .45rem;
}
.app-mini-grid { grid-template-columns: repeat(2, 1fr); }
.app-mini-grid span,
.app-card-row span,
.app-comic-row span,
.app-toggle-row span,
.app-controls span,
.app-pill-row span {
  display: block;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}
.app-mini-grid span { min-height: 42px; }
.app-card-row { grid-template-columns: repeat(2, 1fr); }
.app-card-row span { min-height: 74px; }
.app-pill-row { grid-template-columns: repeat(3, 1fr); }
.app-pill-row span { min-height: 24px; border-radius: 999px; }
.app-list-line,
.app-text-block {
  height: 12px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.app-list-line.short,
.app-text-block.short { width: 68%; }
.app-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.app-progress span { display: block; width: 55%; height: 100%; background: var(--amber); border-radius: inherit; }
.app-controls { grid-template-columns: repeat(3, 1fr); align-items: center; }
.app-controls span { min-height: 34px; border-radius: 50%; aspect-ratio: 1; justify-self: center; width: 34px; }
.app-cover-art,
.app-story-art {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
.app-cover-art { background: linear-gradient(135deg,#0284c7,#7c3aed); }
.app-story-art { background: linear-gradient(135deg,#fde68a,#f9a8d4); }
.app-video-art,
.app-joke-card {
  min-height: 132px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 2.4rem;
  font-weight: 900;
}
.app-video-art { background: linear-gradient(135deg,#f59e0b,#f43f5e); }
.app-joke-card { background: linear-gradient(135deg,#14b8a6,#7c3aed); color: white; font-size: 1.5rem; }
.app-moon,
.app-stat-ring {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 900;
}
.app-moon { background: rgba(245,158,11,.18); color: #fde68a; }
.app-stat-ring { background: conic-gradient(var(--purple) 0 82%, rgba(255,255,255,.14) 82% 100%); }
.app-timer-pill {
  margin-top: auto;
  border-radius: 999px;
  padding: .5rem .7rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .65rem;
  font-weight: 800;
}
.app-comic-panel { min-height: 72px; }
.app-comic-panel.wide { min-height: 108px; background: linear-gradient(135deg,#f97316,#be123c); }
.app-comic-row { grid-template-columns: 1fr 1fr; }
.app-comic-row span { min-height: 58px; border-radius: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 100%; }
  .hero-copy p, .hero-actions, .hero-trust { justify-content: center; }
  .hero-phones { display: none; }
  .worlds-grid { grid-template-columns: 1fr 1fr; }
  .safety-layout { grid-template-columns: 1fr; }
  .safety-copy .section-title, .safety-copy > p { text-align: center; }
  .sf-list { max-width: 600px; margin: 0 auto; }
  .safety-visual { margin-top: 2rem; }
  .dl-card { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .footer-main { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .app-screenshots .container { padding-left: 1.5rem; }
  .app-shot { width: 245px; flex-basis: 245px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,5,20,.98);
    flex-direction: column; gap: .2rem;
    padding: 1.2rem 1rem; border-bottom: 1px solid rgba(124,58,237,.2);
    transform: scaleY(0); transform-origin: top; transition: transform .3s ease;
    visibility: hidden; pointer-events: none;
  }
  .nav-links.open { transform: scaleY(1); visibility: visible; pointer-events: auto; }
  .nav-links a { width: 100%; padding: .6rem 1rem; border-radius: var(--r-sm); }
  .btn-nav-cta { margin: .4rem 0 0; text-align: center; }
  .worlds-grid { grid-template-columns: 1fr; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; }
  .screens-row { padding: 0 1.5rem; }
  .section { padding: 4rem 0; }
  .dl-card { border-radius: var(--r-lg); }
}
@media (max-width: 480px) {
  .footer-nav-cols { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; text-align: center; }
  .dl-count-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .app-shot-grid { animation: none; overflow-x: auto; width: auto; padding-bottom: .5rem; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .5s var(--delay, 0s) ease, transform .5s var(--delay, 0s) ease; }
.revealed { opacity: 1; transform: translateY(0); }

/* ── NAV TOGGLE ANIMATION ── */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── LEGAL PAGES ── */
.legal-body h2 {
  font-family: var(--fd); font-size: 1.2rem; font-weight: 800;
  color: var(--purple); margin: 2.5rem 0 .8rem;
}
.legal-body p { color: var(--text-soft); margin-bottom: .9rem; line-height: 1.75; }
.legal-body ul { padding-left: 1.4rem; margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: .45rem; }
.legal-body li { color: var(--text-soft); line-height: 1.7; }
.legal-body a { color: var(--purple); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--purple-dark); }
.legal-body strong { color: var(--ink); font-weight: 800; }
