/* ==========================================================================
   KidoRadar — kidoradar.com
   Framework yok. Tasarım token'ları :root içinde; koyu tema prefers-color-scheme ile.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --primary: #5a6fe6;
  --primary-strong: #4457d6;
  --blue: #5b8def;
  --violet: #7a5af0;
  --coral: #ff6b6b;
  --coral-strong: #e5484d;
  --sun: #ffc845;
  --mint: #2ed3a0;
  --sky: #4cc3ff;

  --bg: #f5f6fb;
  --bg-alt: #eceefa;
  --surface: #ffffff;
  --surface-2: #f9faff;
  --ink: #1e2340;
  --ink-soft: #5d6288;
  --line: rgba(30, 35, 64, 0.09);
  --line-strong: rgba(30, 35, 64, 0.16);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow-sm: 0 2px 8px rgba(30, 35, 64, 0.06);
  --shadow: 0 18px 50px -18px rgba(40, 50, 120, 0.28);
  --shadow-lg: 0 40px 90px -30px rgba(40, 50, 120, 0.42);

  --grad: linear-gradient(120deg, var(--blue) 0%, var(--primary) 50%, var(--violet) 100%);
  --grad-soft: linear-gradient(120deg, rgba(91, 141, 239, 0.14), rgba(122, 90, 240, 0.14));
  --grad-kid: linear-gradient(135deg, #ffb347 0%, #ff6b6b 45%, #b86bff 100%);

  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Poppins", "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1124;
    --bg-alt: #13172f;
    --surface: #171b36;
    --surface-2: #1c2142;
    --ink: #eef0ff;
    --ink-soft: #a9aed3;
    --line: rgba(238, 240, 255, 0.09);
    --line-strong: rgba(238, 240, 255, 0.18);
    --glass: rgba(18, 21, 44, 0.72);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
    --grad-soft: linear-gradient(120deg, rgba(91, 141, 239, 0.18), rgba(122, 90, 240, 0.2));
    --primary-strong: #8c9bff;
    --coral-strong: #ff8a8a;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@supports (overflow: clip) { body { overflow-x: clip; } }

img, svg { max-width: 100%; display: block; }
a { color: var(--primary-strong); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--violet); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 8px;
}

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 10px 16px; border-radius: 10px;
  font-weight: 700; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 12px; color: var(--bg); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.section { position: relative; padding-block: clamp(72px, 10vw, 128px); }
.section--alt { background: var(--bg-alt); }
.section--clip { overflow: hidden; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary-strong);
  background: var(--grad-soft); padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255, 107, 107, .2); }

.h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 700; }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-soft); max-width: 640px; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

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

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--grad);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 24px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px; text-decoration: none; white-space: nowrap;
  color: #fff; background: var(--btn-bg); background-size: 160% 100%; background-position: 0 0;
  box-shadow: 0 12px 28px -10px rgba(90, 111, 230, 0.7);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-position .5s var(--ease);
}
.btn:hover { color: #fff; transform: translateY(-2px); background-position: 100% 0; box-shadow: 0 18px 36px -12px rgba(122, 90, 240, 0.75); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--ghost {
  background: var(--surface); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-strong);
}
.btn--ghost:hover { color: var(--ink); background: var(--surface); box-shadow: inset 0 0 0 1.5px var(--primary), 0 10px 26px -14px rgba(90,111,230,.6); }
.btn--sm { min-height: 42px; padding: 8px 18px; font-size: 14.5px; }
.btn--white { background: #fff; color: var(--primary-strong); box-shadow: 0 14px 30px -12px rgba(0,0,0,.35); }
.btn--white:hover { color: var(--violet); background: #fff; }
@media (prefers-color-scheme: dark) { .btn--white { color: #4457d6; } }

.tag {
  display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-head);
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em; padding: 3px 9px; border-radius: 999px;
  background: rgba(122, 90, 240, .12); color: var(--violet); vertical-align: middle; white-space: nowrap;
}
@media (prefers-color-scheme: dark) { .tag { color: #b9a6ff; background: rgba(122,90,240,.22); } }
.tag--coral { background: rgba(255, 107, 107, .14); color: var(--coral-strong); }
.tag--mint { background: rgba(46, 211, 160, .15); color: #108a66; }
@media (prefers-color-scheme: dark) { .tag--mint { color: #5fe6bd; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: var(--header-h); transition: height .35s var(--ease);
}
.site-header.is-condensed {
  background: var(--glass);
  -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(30, 35, 64, .35);
}
.site-header.is-condensed .site-header__inner { height: 62px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.brand:hover { color: var(--ink); }
.brand__icon { width: 38px; height: 38px; border-radius: 11px; box-shadow: 0 6px 16px -6px rgba(58, 71, 213, .7); transition: transform .5s var(--ease); }
.brand:hover .brand__icon { transform: rotate(-8deg) scale(1.06); }
.brand__word { font-family: var(--font-head); font-weight: 700; font-size: 21px; letter-spacing: -0.03em; }
.brand__word span { color: #2e86ff; }
@media (prefers-color-scheme: dark) { .brand__word span { color: #6fb0ff; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 8px 12px; border-radius: 10px; text-decoration: none;
  color: var(--ink); font-weight: 700; font-size: 15px;
}
.nav a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 2px; border-radius: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="true"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 999px;
  text-decoration: none; font-weight: 800; font-size: 13.5px; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-strong); transition: box-shadow .25s;
}
.lang:hover { color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--primary); }
.lang svg { width: 16px; height: 16px; }

.menu-toggle {
  display: none; width: 46px; height: 46px; border-radius: 14px; border: 0; cursor: pointer;
  background: var(--surface); box-shadow: inset 0 0 0 1.5px var(--line-strong); position: relative;
}
.menu-toggle span {
  position: absolute; left: 13px; right: 13px; height: 2.5px; border-radius: 2px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .25s, top .4s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 90; overflow: hidden; visibility: hidden; pointer-events: none;
}
.drawer__backdrop {
  position: absolute; inset: 0; background: rgba(14, 17, 36, .45); opacity: 0; transition: opacity .4s var(--ease);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 380px);
  background: var(--surface); padding: calc(var(--header-h) + 16px) 24px 28px;
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
  transform: translateX(100%); transition: transform .5s var(--ease);
  box-shadow: -30px 0 60px -30px rgba(0,0,0,.4);
}
.drawer__panel::before {
  content: ""; position: absolute; top: -120px; right: -120px; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 90, 240, .25), transparent 70%); pointer-events: none;
}
.drawer a.drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 6px; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: 20px;
  opacity: 0; transform: translateX(24px); transition: opacity .4s, transform .5s var(--ease), color .2s;
}
.drawer a.drawer__link:hover { color: var(--primary); }
.drawer a.drawer__link svg { width: 18px; height: 18px; opacity: .5; }
.drawer__foot { margin-top: auto; padding-top: 24px; display: grid; gap: 12px; opacity: 0; transition: opacity .5s .3s; }
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer.is-open .drawer__backdrop { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer.is-open a.drawer__link { opacity: 1; transform: none; }
.drawer.is-open .drawer__foot { opacity: 1; }
.drawer.is-open a.drawer__link:nth-child(1) { transition-delay: .08s; }
.drawer.is-open a.drawer__link:nth-child(2) { transition-delay: .12s; }
.drawer.is-open a.drawer__link:nth-child(3) { transition-delay: .16s; }
.drawer.is-open a.drawer__link:nth-child(4) { transition-delay: .2s; }
.drawer.is-open a.drawer__link:nth-child(5) { transition-delay: .24s; }
.drawer.is-open a.drawer__link:nth-child(6) { transition-delay: .28s; }
.drawer.is-open a.drawer__link:nth-child(7) { transition-delay: .32s; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(28px, 6vw, 72px));
  padding-bottom: clamp(64px, 9vw, 120px);
  isolation: isolate;
}
.blobs { position: absolute; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
  animation: blob 22s ease-in-out infinite alternate;
  will-change: transform;
}
.blob--1 { width: 520px; height: 520px; background: #8fb2ff; top: -160px; left: -140px; }
.blob--2 { width: 460px; height: 460px; background: #b69cff; top: 10%; right: -120px; animation-duration: 26s; animation-delay: -6s; }
.blob--3 { width: 380px; height: 380px; background: #ffb3b3; bottom: -120px; left: 30%; opacity: .4; animation-duration: 30s; animation-delay: -12s; }
@media (prefers-color-scheme: dark) {
  .blob { opacity: .28; }
  .blob--3 { opacity: .18; }
}
@keyframes blob {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(60px, 40px, 0) scale(1.1); }
  66% { transform: translate3d(-40px, 70px, 0) scale(.94); }
  100% { transform: translate3d(30px, -30px, 0) scale(1.05); }
}
.grid-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 20%, transparent 75%);
  opacity: .8;
}

.hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero__title { font-size: clamp(36px, 4.6vw, 62px); font-weight: 800; line-height: 1.04; letter-spacing: -0.035em; margin-bottom: 22px; }
.hero__title .line { display: block; }
.hero__lead { font-size: clamp(17px, 1.7vw, 20.5px); color: var(--ink-soft); max-width: 560px; margin-bottom: 30px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__note { margin-top: 18px; font-size: 14.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 18px; height: 18px; color: var(--mint); flex-shrink: 0; }

.pill-status {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; border-radius: 999px;
  background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
  font-weight: 700; font-size: 14px; margin-bottom: 22px; color: var(--ink);
}
.pill-status b { background: var(--grad); color: #fff; padding: 3px 10px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: 12.5px; }

/* Store badges */
.store {
  display: inline-flex; align-items: center; gap: 11px; padding: 9px 16px 9px 13px; border-radius: 14px;
  background: #11142b; color: #fff; text-decoration: none; position: relative; min-height: 54px;
  box-shadow: 0 10px 24px -14px rgba(0,0,0,.6); cursor: not-allowed;
  transition: transform .3s var(--ease);
}
@media (prefers-color-scheme: dark) { .store { background: #fff; color: #11142b; } }
.store:hover { transform: translateY(-2px); }
.store svg { width: 24px; height: 24px; flex-shrink: 0; }
.store small { display: block; font-size: 11px; opacity: .75; line-height: 1.1; font-weight: 600; }
.store strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 16.5px; line-height: 1.2; }
.store .soon {
  position: absolute; top: -9px; right: -8px; background: var(--coral); color: #fff; font-size: 10.5px; font-weight: 800;
  padding: 2px 8px; border-radius: 999px; letter-spacing: .04em; box-shadow: 0 6px 14px -6px rgba(255,107,107,.9);
}

/* Hero stage */
.stage { position: relative; height: clamp(520px, 52vw, 640px); }
.radar {
  position: absolute; left: 50%; top: 50%; width: min(640px, 118%); aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none;
}
.radar__ring { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(90, 111, 230, .2); }
.radar__ring:nth-child(2) { inset: 16%; border-color: rgba(90, 111, 230, .24); }
.radar__ring:nth-child(3) { inset: 32%; border-color: rgba(90, 111, 230, .28); }
.radar__sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(90, 111, 230, 0) 0deg, rgba(90, 111, 230, 0) 290deg, rgba(122, 90, 240, .28) 355deg, rgba(122, 90, 240, .5) 360deg);
  -webkit-mask-image: radial-gradient(circle, #000 0 69.5%, transparent 70%);
  mask-image: radial-gradient(circle, #000 0 69.5%, transparent 70%);
  animation: sweep 6s linear infinite;
}
.radar__cross::before, .radar__cross::after {
  content: ""; position: absolute; background: rgba(90, 111, 230, .12);
}
.radar__cross::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.radar__cross::after { top: 50%; left: 0; right: 0; height: 1px; }
@keyframes sweep { to { transform: rotate(360deg); } }

.ping {
  position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,255,255,.9);
}
.ping::before, .ping::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--coral);
  animation: ping 2.6s var(--ease) infinite;
}
.ping::after { animation-delay: 1.3s; }
.ping--blue { background: var(--blue); }
.ping--blue::before, .ping--blue::after { border-color: var(--blue); }
.ping--mint { background: var(--mint); }
.ping--mint::before, .ping--mint::after { border-color: var(--mint); }
@keyframes ping { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(3.4); opacity: 0; } }

.stage__layer { position: absolute; inset: 0; transition: transform .6s var(--ease); }

/* Phones */
.phone {
  --w: 262px;
  position: absolute; width: var(--w); aspect-ratio: 9 / 19; border-radius: calc(var(--w) * .16);
  background: linear-gradient(145deg, #2a2f55, #0d1026 60%);
  padding: calc(var(--w) * .035);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255,255,255,.12), inset 0 0 0 5px #0a0c1d;
}
.phone::before { /* dynamic island */
  content: ""; position: absolute; top: calc(var(--w) * .06); left: 50%; width: 30%; height: calc(var(--w) * .07);
  transform: translateX(-50%); background: #05060f; border-radius: 999px; z-index: 3;
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: calc(var(--w) * .13); overflow: hidden;
  font-size: calc(var(--w) * .047); line-height: 1.35; color: #1e2340; background: #f5f6fb;
  font-family: var(--font-body);
}
.phone__status {
  display: flex; justify-content: space-between; align-items: center; padding: 1.1em 1.6em 0.3em;
  font-weight: 800; font-size: .88em; position: relative; z-index: 2;
}
.phone__status i { display: inline-flex; gap: 3px; align-items: flex-end; }
.phone__status i b { width: 3px; background: currentColor; border-radius: 1px; }
.phone__status i b:nth-child(1) { height: 4px; } .phone__status i b:nth-child(2) { height: 6px; }
.phone__status i b:nth-child(3) { height: 8px; } .phone__status i b:nth-child(4) { height: 10px; }

.float { animation: float 7s ease-in-out infinite; }
.float--slow { animation-duration: 9s; animation-delay: -3s; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }

.stage .phone--parent { left: 4%; top: 6%; rotate: -6deg; z-index: 1; }
.stage .phone--child { right: 3%; top: 16%; rotate: 5deg; z-index: 2; --w: 250px; }

/* Parent screen */
.ps { display: flex; flex-direction: column; height: 100%; background: #f5f6fb; }
.ps__top { padding: .2em 1.2em .6em; display: flex; align-items: center; justify-content: space-between; }
.ps__hello small { display: block; color: #6b7093; font-weight: 700; font-size: .8em; }
.ps__hello strong { font-family: var(--font-head); font-size: 1.15em; font-weight: 600; }
.avatars { display: flex; }
.av { width: 2em; height: 2em; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .85em; border: 2px solid #f5f6fb; margin-left: -.5em; }
.av--a { background: linear-gradient(135deg, #ff9a8b, #ff6b6b); }
.av--b { background: linear-gradient(135deg, #7fd3ff, #5b8def); }
.map {
  position: relative; margin: 0 .8em; height: 46%; border-radius: 1.2em; overflow: hidden;
  background: #e7ebfb;
}
.map svg.map__streets { position: absolute; inset: 0; width: 100%; height: 100%; }
.map .zone {
  position: absolute; border-radius: 50%; border: 2px dashed rgba(90,111,230,.55); background: rgba(90,111,230,.12);
  display: grid; place-items: center;
}
.map .zone span { position: absolute; bottom: -1.6em; font-size: .72em; font-weight: 800; color: #4457d6; background: #fff; padding: .1em .6em; border-radius: 999px; white-space: nowrap; }
.map .zone--home { width: 28%; aspect-ratio: 1; left: 8%; top: 12%; border-color: rgba(46,211,160,.7); background: rgba(46,211,160,.14); }
.map .zone--home span { color: #108a66; }
.map .zone--school { width: 36%; aspect-ratio: 1; right: 8%; top: 36%; }
.map__sweep {
  position: absolute; width: 60%; aspect-ratio: 1; right: 1%; top: 22%; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 300deg, rgba(122,90,240,.35) 360deg);
  animation: sweep 4s linear infinite;
}
.map .kid-pin {
  position: absolute; right: 22%; top: 50%; width: 2.3em; height: 2.3em; border-radius: 50% 50% 50% 0; rotate: -45deg;
  background: var(--coral); display: grid; place-items: center; box-shadow: 0 6px 14px -4px rgba(255,107,107,.8);
  animation: pinBob 3s ease-in-out infinite;
}
.map .kid-pin b { rotate: 45deg; color: #fff; font-weight: 800; font-size: .95em; }
@keyframes pinBob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -4px; } }
.map .kid-pin::after {
  content: ""; position: absolute; width: 90%; height: 90%; border-radius: 50%; border: 2px solid var(--coral);
  animation: ping 2.4s var(--ease) infinite; left: 5%; top: 5%;
}
.ps__card {
  margin: .8em .8em 0; padding: .8em 1em; background: #fff; border-radius: 1.1em; box-shadow: 0 6px 16px -10px rgba(30,35,64,.4);
  display: flex; gap: .8em; align-items: center;
}
.ps__card .dot { width: .7em; height: .7em; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 .3em rgba(46,211,160,.2); flex-shrink: 0; }
.ps__card strong { display: block; font-size: .95em; }
.ps__card small { color: #6b7093; font-weight: 700; font-size: .78em; }
.ps__stats { display: grid; grid-template-columns: 1fr 1fr; gap: .6em; margin: .6em .8em 0; }
.ps__stat { background: #fff; border-radius: 1em; padding: .7em .8em; box-shadow: 0 6px 16px -12px rgba(30,35,64,.4); }
.ps__stat small { color: #6b7093; font-weight: 700; font-size: .72em; display: block; }
.ps__stat strong { font-family: var(--font-head); font-weight: 600; font-size: 1.05em; }
.bar { height: .45em; background: #e7ebfb; border-radius: 999px; overflow: hidden; margin-top: .35em; }
.bar i { display: block; height: 100%; border-radius: inherit; background: var(--grad); width: var(--v, 50%); animation: grow 2.4s var(--ease) both; }
@keyframes grow { from { width: 0; } }

/* Child screen */
.cs { height: 100%; display: flex; flex-direction: column; background: #fff8ef; }
.cs__hero {
  background: var(--grad-kid); color: #fff; padding: .2em 1.2em 2.4em; border-radius: 0 0 1.6em 1.6em; position: relative; overflow: hidden;
}
.cs__hero::after {
  content: ""; position: absolute; right: -1.5em; top: -1.5em; width: 6em; height: 6em; border-radius: 50%; background: rgba(255,255,255,.18);
}
.cs__hero h4 { font-family: var(--font-head); font-size: 1.3em; margin: .2em 0 .15em; color: #fff; letter-spacing: -.01em; }
.cs__hero p { margin: 0; font-weight: 700; font-size: .82em; opacity: .92; }
.cs__points {
  display: inline-flex; align-items: center; gap: .35em; margin-top: .6em; background: rgba(255,255,255,.25);
  padding: .25em .7em; border-radius: 999px; font-weight: 800; font-size: .85em;
}
.cs__points svg { width: 1.1em; height: 1.1em; color: #ffe27a; animation: spinStar 6s linear infinite; }
@keyframes spinStar { to { transform: rotate(360deg); } }
.cs__list { padding: 0 .9em; margin-top: -1.5em; display: grid; gap: .55em; position: relative; z-index: 1; }
.task {
  display: flex; align-items: center; gap: .7em; background: #fff; border-radius: 1.1em; padding: .7em .8em;
  box-shadow: 0 8px 18px -12px rgba(120,60,20,.45); border-left: .35em solid var(--c, var(--sun));
}
.task__check {
  width: 1.7em; height: 1.7em; border-radius: .6em; border: 2px solid var(--c, var(--sun)); flex-shrink: 0; display: grid; place-items: center;
}
.task__check svg { width: 1em; height: 1em; color: #fff; stroke-dasharray: 20; stroke-dashoffset: 20; }
.task--done .task__check { animation: checkBg 8s var(--ease) infinite; }
.task--done .task__check svg { animation: checkDraw 8s var(--ease) infinite; }
@keyframes checkBg { 0%, 12% { background: transparent; } 20%, 88% { background: var(--c); } 100% { background: transparent; } }
@keyframes checkDraw { 0%, 14% { stroke-dashoffset: 20; } 24%, 88% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 20; } }
.task strong { display: block; font-size: .92em; line-height: 1.2; }
.task small { color: #8a7d73; font-weight: 700; font-size: .74em; }
.task .xp { margin-left: auto; font-weight: 800; font-size: .74em; color: var(--c); background: color-mix(in srgb, var(--c) 14%, #fff); padding: .15em .55em; border-radius: 999px; }
.cs__share {
  margin: auto .9em 1.2em; display: flex; align-items: center; gap: .6em; padding: .7em .9em; border-radius: 1.1em;
  background: #1e2340; color: #fff; font-weight: 800; font-size: .82em;
}
.cs__share svg { width: 1.3em; height: 1.3em; color: #9fb4ff; }
.cs__share em { margin-left: auto; font-style: normal; color: #9fb4ff; }

/* Floating notification chips */
.chip {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 10px; border-radius: 16px; background: var(--glass);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: var(--shadow), inset 0 0 0 1px var(--line);
  font-size: 13.5px; line-height: 1.3; color: var(--ink); max-width: 240px;
}
.chip__ic { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.chip__ic svg { width: 18px; height: 18px; }
.chip strong { display: block; font-weight: 800; font-size: 13.5px; }
.chip small { color: var(--ink-soft); font-weight: 700; font-size: 12px; }
.chip--1 { left: -4%; bottom: 14%; animation-delay: -2s; }
.chip--2 { right: -2%; top: 2%; animation-delay: -4s; }
.chip--3 { right: 6%; bottom: -1%; animation-delay: -1s; }

/* ---------- Marquee ---------- */
.marquee {
  position: relative; overflow: hidden; padding-block: 22px; border-block: 1px solid var(--line); background: var(--surface);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee__group { display: flex; gap: 48px; padding-right: 48px; margin: 0; list-style: none; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 17px; white-space: nowrap; color: var(--ink); }
.marquee__item svg { width: 22px; height: 22px; color: var(--primary); }
.marquee__item.is-no svg { color: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Transparency ---------- */
.hero__grid > *, .trust-grid > *, .dual > *, .dive > *, .cta > *, .legal > * { min-width: 0; }
.prose { overflow-wrap: break-word; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.share-panel {
  position: relative; background: var(--surface); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--line);
}
.share-panel__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.share-panel__eye { width: 52px; height: 52px; border-radius: 16px; background: var(--grad); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.share-panel__eye svg { width: 26px; height: 26px; }
.share-panel__head h3 { margin: 0; font-size: 20px; }
.share-panel__head p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
.share-row {
  display: flex; align-items: center; gap: 14px; padding: 13px 4px; border-top: 1px solid var(--line);
}
.share-row__ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); color: var(--primary-strong); flex-shrink: 0; }
.share-row__ic svg { width: 20px; height: 20px; }
.share-row strong { display: block; font-size: 15.5px; line-height: 1.3; }
.share-row small { color: var(--ink-soft); font-size: 13.5px; }
.share-row .state { margin-left: auto; flex-shrink: 0; }
.share-row.is-never .share-row__ic { background: rgba(255,107,107,.12); color: var(--coral-strong); }
.switch-vis { width: 44px; height: 26px; border-radius: 999px; background: var(--mint); position: relative; }
.switch-vis::after { content: ""; position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.2); }
.share-panel__badge {
  position: absolute; top: -16px; right: 22px; background: var(--coral); color: #fff; font-family: var(--font-head);
  font-weight: 600; font-size: 13px; padding: 7px 14px; border-radius: 999px; box-shadow: 0 10px 24px -10px rgba(255,107,107,.9);
}
.check-list { list-style: none; display: grid; gap: 14px; margin: 26px 0 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--mint); margin-top: 1px; }
.check-list li b { display: block; }
.check-list li span { color: var(--ink-soft); font-size: 15.5px; }

.never {
  margin-top: clamp(48px, 7vw, 80px); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px);
  background: #151935; color: #eef0ff; position: relative; overflow: hidden;
}
.never::before {
  content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,107,.3), transparent 65%);
}
.never h3 { font-size: clamp(22px, 2.6vw, 30px); color: #fff; position: relative; }
.never p { color: #b7bbe0; position: relative; max-width: 640px; }
.never__list { position: relative; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; margin-top: 20px; }
.never__list li {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.06);
  font-weight: 700; font-size: 15px; border: 1px solid rgba(255,255,255,.08); transition: background .3s, transform .3s var(--ease);
}
.never__list li:hover { background: rgba(255,107,107,.14); transform: translateY(-3px); }
.never__list svg { width: 22px; height: 22px; color: var(--coral); flex-shrink: 0; }

/* ---------- Dual experience ---------- */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.seg {
  display: inline-flex; padding: 6px; border-radius: 999px; background: var(--surface); position: relative;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line); margin-bottom: 28px;
}
.seg__thumb {
  position: absolute; top: 6px; bottom: 6px; left: 6px; width: calc(50% - 6px); border-radius: 999px; background: var(--grad);
  transition: transform .5s var(--ease), background .5s;
  box-shadow: 0 8px 20px -8px rgba(90,111,230,.8);
}
.seg[data-active="child"] .seg__thumb { transform: translateX(100%); background: var(--grad-kid); box-shadow: 0 8px 20px -8px rgba(255,107,107,.8); }
.seg button {
  position: relative; z-index: 1; border: 0; background: none; cursor: pointer; padding: 11px 22px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; min-width: 132px; color: var(--ink); transition: color .3s;
}
.seg button[aria-selected="true"] { color: #fff; }
.dual__panel[hidden] { display: none; }
.dual__panel h3 { font-size: clamp(24px, 2.8vw, 32px); }
.dual__panel ul { list-style: none; display: grid; gap: 12px; margin-top: 18px; }
.dual__panel li { display: flex; gap: 12px; align-items: flex-start; }
.dual__panel li::before { content: ""; width: 10px; height: 10px; border-radius: 50%; margin-top: 9px; flex-shrink: 0; background: var(--primary); box-shadow: 0 0 0 4px rgba(90,111,230,.18); }
.dual__panel--child li::before { background: var(--coral); box-shadow: 0 0 0 4px rgba(255,107,107,.18); }
.dual__panel.is-entering { animation: fadeUp .6s var(--ease) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } }
.dual__stage { position: relative; height: 600px; display: grid; place-items: center; }
.dual__stage .phone { position: relative; --w: 270px; transition: transform .8s var(--ease), opacity .6s var(--ease), filter .6s; }
.dual__stage > * { grid-area: 1 / 1; }
.dual__stage[data-active="parent"] .phone--child { transform: translateX(34%) rotate(8deg) scale(.86); opacity: .35; filter: blur(2px); }
.dual__stage[data-active="parent"] .phone--parent { transform: none; z-index: 2; }
.dual__stage[data-active="child"] .phone--parent { transform: translateX(-34%) rotate(-8deg) scale(.86); opacity: .35; filter: blur(2px); }
.dual__stage[data-active="child"] .phone--child { transform: none; z-index: 2; }
.dual__halo { width: min(440px, 100%); aspect-ratio: 1; border-radius: 50%; background: var(--grad); filter: blur(70px); opacity: .28; transition: background .6s; }
.dual__stage[data-active="child"] .dual__halo { background: var(--grad-kid); }

/* ---------- Features ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.card {
  --accent: var(--primary);
  grid-column: span 4; position: relative; background: var(--surface); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line); overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(140deg, var(--accent), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .45s;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card--wide { grid-column: span 8; }
.card--half { grid-column: span 6; }
.card__ic {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent);
  transition: transform .5s var(--ease);
}
.card:hover .card__ic { transform: rotate(-8deg) scale(1.08); }
.card__ic svg { width: 26px; height: 26px; }
.card h3 { font-size: 20px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.card > p { color: var(--ink-soft); font-size: 15.5px; }
.card ul { list-style: none; display: grid; gap: 8px; margin-top: 14px; }
.card li { position: relative; padding-left: 16px; font-size: 15px; line-height: 1.45; }
.card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.card li .tag { margin-left: 4px; }
.card--wide ul, .card--half ul { grid-template-columns: 1fr 1fr; column-gap: 22px; }
.card .letter {
  position: absolute; top: 18px; right: 22px; font-family: var(--font-head); font-weight: 800; font-size: 13px; color: var(--ink-soft); opacity: .5;
}

.features-note { margin-top: 26px; color: var(--ink-soft); font-size: 14.5px; text-align: center; }

/* Deep dives */
.dive { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; margin-top: clamp(72px, 10vw, 120px); }
.dive--rev .dive__text { order: 2; }
.dive__text h3 { font-size: clamp(26px, 3.2vw, 38px); }
.dive__vis {
  position: relative; background: var(--surface); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow), inset 0 0 0 1px var(--line); overflow: hidden;
}
.days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; align-items: end; height: 190px; margin-top: 10px; }
.day { display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.day__bar {
  width: 100%; max-width: 42px; border-radius: 12px 12px 6px 6px; background: var(--grad);
  height: 0; transition: height 1.2s var(--ease); position: relative;
}
.day__bar--we { background: var(--grad-kid); }
.is-visible .day__bar { height: var(--h); }
.day__bar span { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); font-weight: 800; font-size: 12.5px; color: var(--ink); white-space: nowrap; }
.day small { font-weight: 800; color: var(--ink-soft); font-size: 13px; }
.vis-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.vis-title strong { font-family: var(--font-head); font-weight: 600; font-size: 17px; }

.timeline { display: grid; gap: 10px; margin-top: 22px; position: relative; }
.tl {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 16px; background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--line); opacity: 0; transform: translateX(-16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.is-visible .tl { opacity: 1; transform: none; }
.is-visible .tl:nth-child(2) { transition-delay: .15s; }
.is-visible .tl:nth-child(3) { transition-delay: .3s; }
.is-visible .tl:nth-child(4) { transition-delay: .45s; }
.is-visible .tl:nth-child(5) { transition-delay: .6s; }
.tl__time { min-width: 64px; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 14px; padding: 6px 8px; border-radius: 10px; color: #fff; background: var(--c, var(--primary)); }
.tl strong { font-size: 15px; display: block; line-height: 1.3; }
.tl small { color: var(--ink-soft); font-size: 13.5px; }

.geo { position: relative; aspect-ratio: 4 / 3; border-radius: 22px; overflow: hidden; background: #e7ebfb; }
@media (prefers-color-scheme: dark) { .geo { background: #1f2550; } }
.geo svg.geo__map { position: absolute; inset: 0; width: 100%; height: 100%; }
.geo__zone {
  position: absolute; border-radius: 50%; display: grid; place-items: center; transform: translate(-50%, -50%);
  border: 2px dashed var(--zc); background: color-mix(in srgb, var(--zc) 16%, transparent);
}
.geo__zone::after {
  content: ""; position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--zc); opacity: 0;
  animation: zonePulse 4s var(--ease) infinite; animation-delay: var(--d, 0s);
}
@keyframes zonePulse { 0% { transform: scale(.9); opacity: .8; } 70%, 100% { transform: scale(1.35); opacity: 0; } }
.geo__zone span {
  position: absolute; top: 100%; margin-top: 6px; background: var(--surface); color: var(--ink); font-weight: 800; font-size: 12.5px;
  padding: 3px 10px; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap;
}
.geo__route { position: absolute; inset: 0; width: 100%; height: 100%; }
.geo__route path { stroke-dasharray: 8 10; animation: dash 1.6s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -36; } }
.geo__toast {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px;
  background: var(--surface); padding: 10px 14px; border-radius: 14px; box-shadow: var(--shadow); font-size: 13.5px; white-space: nowrap;
  animation: toast 6s var(--ease) infinite;
}
.geo__toast i { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }
@keyframes toast { 0%, 8% { opacity: 0; translate: 0 12px; } 16%, 80% { opacity: 1; translate: 0 0; } 92%, 100% { opacity: 0; translate: 0 12px; } }

.kid-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kc {
  border-radius: 20px; padding: 18px; color: #fff; position: relative; overflow: hidden; min-height: 132px;
  display: flex; flex-direction: column; justify-content: space-between; transition: transform .4s var(--ease);
}
.kc:hover { transform: rotate(-2deg) scale(1.03); }
.kc::after { content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%; right: -26px; top: -26px; background: rgba(255,255,255,.2); }
.kc svg { width: 28px; height: 28px; }
.kc strong { font-family: var(--font-head); font-weight: 700; font-size: 17px; line-height: 1.25; }
.kc small { font-weight: 700; opacity: .92; font-size: 13px; }
.kc--1 { background: linear-gradient(135deg, #ffb347, #ff7b54); }
.kc--2 { background: linear-gradient(135deg, #4cc3ff, #5b8def); }
.kc--3 { background: linear-gradient(135deg, #2ed3a0, #16a37d); }
.kc--4 { background: linear-gradient(135deg, #b86bff, #7a5af0); }
.kc-text-dark { color: #3b2a00; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; counter-reset: step; }
.steps__line {
  position: absolute; top: 44px; left: 12%; right: 12%; height: 3px; border-radius: 3px; background: var(--line-strong); overflow: hidden;
}
.steps__line i { position: absolute; inset: 0; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 1.8s var(--ease) .2s; }
.is-visible .steps__line i { transform: scaleX(1); }
.step { position: relative; text-align: center; padding: 0 6px; }
.step__num {
  position: relative; z-index: 1; width: 88px; height: 88px; margin: 0 auto 22px; border-radius: 28px; display: grid; place-items: center;
  background: var(--surface); box-shadow: var(--shadow), inset 0 0 0 1px var(--line); color: var(--primary);
  transition: transform .5s var(--ease);
}
.step:hover .step__num { transform: translateY(-6px) rotate(-4deg); }
.step__num svg { width: 38px; height: 38px; }
.step__num::after {
  counter-increment: step; content: counter(step);
  position: absolute; top: -8px; right: -8px; width: 30px; height: 30px; border-radius: 50%; background: var(--coral); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 14px; box-shadow: 0 6px 14px -6px rgba(255,107,107,.9);
}
.step h3 { font-size: 19px; }
.step p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Facts ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fact {
  background: var(--surface); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
  text-align: center;
}
.fact__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(40px, 5vw, 58px); line-height: 1; letter-spacing: -0.04em; }
.fact__num em { font-style: normal; font-size: .5em; letter-spacing: 0; margin-left: 4px; }
.fact p { margin: 10px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.45; }

/* ---------- Pricing ---------- */
.billing { display: flex; justify-content: center; align-items: center; gap: 14px; margin-bottom: 44px; flex-wrap: wrap; }
.billing__label { font-weight: 800; font-size: 15.5px; color: var(--ink-soft); cursor: pointer; transition: color .3s; }
.billing__label.is-active { color: var(--ink); }
.toggle {
  position: relative; width: 64px; height: 36px; border-radius: 999px; border: 0; cursor: pointer; background: var(--line-strong); padding: 0;
  transition: background .4s var(--ease);
}
.toggle::after {
  content: ""; position: absolute; top: 4px; left: 4px; width: 28px; height: 28px; border-radius: 50%; background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,.2); transition: transform .45s var(--ease);
}
.toggle[aria-checked="true"] { background: var(--primary); }
.toggle[aria-checked="true"]::after { transform: translateX(28px); }
.save-badge { background: rgba(46,211,160,.16); color: #0e7a5a; font-weight: 800; font-size: 13px; padding: 5px 11px; border-radius: 999px; }
@media (prefers-color-scheme: dark) { .save-badge { color: #5fe6bd; } }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column; background: var(--surface); border-radius: var(--radius-lg);
  padding: 30px 24px 26px; box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured {
  background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--grad) border-box;
  border: 2px solid transparent; box-shadow: var(--shadow-lg);
}
@media (min-width: 1025px) { .plan--featured { transform: translateY(-12px); } .plan--featured:hover { transform: translateY(-18px); } }
.plan__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; white-space: nowrap;
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px; padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 10px 22px -10px rgba(90,111,230,.9);
}
.plan h3 { font-size: 21px; margin-bottom: 4px; }
.plan__for { color: var(--ink-soft); font-size: 14.5px; min-height: 44px; margin-bottom: 14px; line-height: 1.45; }
.plan__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; min-height: 58px; }
.plan__amount { font-family: var(--font-head); font-weight: 800; font-size: 40px; letter-spacing: -0.04em; line-height: 1; }
.plan__period { color: var(--ink-soft); font-weight: 700; font-size: 15px; }
.plan__sub { color: var(--ink-soft); font-size: 13.5px; min-height: 22px; margin: 6px 0 16px; font-weight: 600; }
.plan__sub b { color: #0e7a5a; }
@media (prefers-color-scheme: dark) { .plan__sub b { color: #5fe6bd; } }
.plan__amount.is-flip { animation: flip .5s var(--ease); }
@keyframes flip { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: none; } }
.plan__seats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.seat { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 10px; background: var(--grad-soft); font-weight: 800; font-size: 13px; }
.seat svg { width: 16px; height: 16px; color: var(--primary-strong); }
.plan ul { list-style: none; display: grid; gap: 9px; margin-bottom: 22px; }
.plan li { display: flex; gap: 9px; font-size: 14.5px; line-height: 1.45; }
.plan li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--mint); margin-top: 2px; }
.plan .btn { margin-top: auto; width: 100%; }
.addons {
  margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 26px;
  padding: 18px 22px; border-radius: var(--radius); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); font-size: 15px;
}
.addons strong { font-family: var(--font-head); font-weight: 600; }
.addons span { color: var(--ink-soft); }
.price-note { margin: 18px auto 0; max-width: 820px; text-align: center; font-size: 13.5px; color: var(--ink-soft); }

.compare-wrap {
  margin-top: 64px; border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.compare { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 15px; }
.compare caption { text-align: left; padding: 24px 24px 8px; font-family: var(--font-head); font-weight: 600; font-size: 20px; }
.compare th, .compare td { padding: 13px 16px; text-align: center; border-top: 1px solid var(--line); }
.compare thead th { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; position: sticky; top: 0; background: var(--surface); }
.compare th[scope="row"] { text-align: left; font-weight: 700; position: sticky; left: 0; background: var(--surface); z-index: 1; }
.compare td { color: var(--ink-soft); font-weight: 700; }
.compare .col-feat { background: rgba(90,111,230,.06); }
.compare .yes { color: var(--mint); display: inline-block; }
.compare .yes svg, .compare .no svg { width: 20px; height: 20px; margin-inline: auto; }
.compare .no { color: var(--ink-soft); opacity: .45; display: inline-block; }
.compare tbody tr { transition: background .2s; }
.compare tbody tr:hover { background: var(--surface-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: var(--surface); border-radius: 20px; box-shadow: inset 0 0 0 1px var(--line); transition: box-shadow .3s; }
.faq__item.is-open { box-shadow: var(--shadow), inset 0 0 0 1.5px rgba(90,111,230,.4); }
.faq__q { margin: 0; font-size: inherit; }
.faq__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left;
  padding: 20px 22px; border: 0; background: none; cursor: pointer; border-radius: 20px;
  font-family: var(--font-head); font-weight: 600; font-size: 17px; line-height: 1.4; color: var(--ink);
}
.faq__icon {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; background: var(--grad-soft);
  position: relative; transition: transform .45s var(--ease), background .3s;
}
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; width: 13px; height: 2.5px; border-radius: 2px; background: var(--primary-strong); transition: transform .45s var(--ease); }
.faq__icon::after { transform: rotate(90deg); }
.faq__item.is-open .faq__icon { transform: rotate(180deg); background: var(--grad); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: #fff; }
.faq__item.is-open .faq__icon::after { transform: rotate(0deg); }
.faq__a { overflow: hidden; transition: height .45s var(--ease); }
.faq__a-inner { padding: 0 22px 22px; color: var(--ink-soft); font-size: 16px; }
.faq__a-inner p:last-child { margin-bottom: 0; }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: clamp(28px, 4vw, 44px); padding: clamp(36px, 6vw, 80px) clamp(22px, 5vw, 72px);
  background: var(--grad); color: #fff; isolation: isolate;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.cta::before, .cta::after {
  content: ""; position: absolute; border-radius: 50%; z-index: -1; pointer-events: none;
}
.cta::before { width: 620px; height: 620px; right: -200px; top: -240px; border: 1.5px solid rgba(255,255,255,.2); box-shadow: 0 0 0 90px rgba(255,255,255,.04), 0 0 0 180px rgba(255,255,255,.03); }
.cta::after { width: 300px; height: 300px; left: -80px; bottom: -160px; background: radial-gradient(circle, rgba(255,107,107,.55), transparent 70%); }
.cta .radar__sweep { width: 620px; height: 620px; right: -200px; top: -240px; left: auto; inset: auto; position: absolute; z-index: -1; opacity: .7;
  background: conic-gradient(from 0deg, transparent 0 290deg, rgba(255,255,255,.28) 360deg); }
.cta h2 { color: #fff; font-size: clamp(30px, 4.2vw, 50px); }
.cta p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 560px; }
.cta .store { background: #fff; color: #11142b; }
.cta__badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.signup {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); border-radius: 26px; padding: 26px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.signup h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
.signup p { font-size: 14.5px; margin-bottom: 16px; }
.signup label { display: block; font-weight: 800; font-size: 14px; margin-bottom: 6px; }
.signup__row { display: flex; gap: 10px; flex-wrap: wrap; }
.signup input {
  flex: 1 1 200px; min-width: 0; min-height: 50px; border-radius: 999px; border: 0; padding: 0 20px; font: inherit; font-size: 16px;
  background: #fff; color: #1e2340;
}
.signup input:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.signup small { display: block; margin-top: 10px; font-size: 12.5px; color: rgba(255,255,255,.85); }
.signup__msg { margin-top: 10px; font-weight: 700; font-size: 14px; min-height: 1em; }

/* ---------- Footer ---------- */
.site-footer { padding: 72px 0 36px; background: var(--surface); border-top: 1px solid var(--line); margin-top: clamp(72px, 10vw, 120px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; }
.footer-grid h4 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.footer-grid ul { list-style: none; display: grid; gap: 9px; }
.footer-grid a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px; }
.footer-grid a:hover { color: var(--primary); }
.footer-about p { color: var(--ink-soft); font-size: 15px; margin-top: 14px; max-width: 340px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--ink-soft); font-size: 14px;
}
.footer-bottom p { margin: 0; }

/* ---------- Legal / sub pages ---------- */
.page-hero { position: relative; overflow: hidden; padding: calc(var(--header-h) + 56px) 0 48px; isolation: isolate; }
.page-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; }
.page-hero p { color: var(--ink-soft); max-width: 720px; font-size: 18px; }
.draft-banner {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; border-radius: 16px; margin-bottom: 22px;
  background: #fff4d6; color: #5a4100; border: 1.5px solid #ffd76a; font-weight: 700; font-size: 15px;
}
.draft-banner svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
@media (prefers-color-scheme: dark) { .draft-banner { background: #3a2f0c; color: #ffe29a; border-color: #7a6116; } }
.legal { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; padding-bottom: 40px; }
.toc {
  position: sticky; top: calc(var(--header-h) + 10px); background: var(--surface); border-radius: 20px; padding: 20px;
  box-shadow: inset 0 0 0 1px var(--line); font-size: 14.5px;
}
.toc strong { display: block; font-family: var(--font-head); font-weight: 600; margin-bottom: 10px; }
.toc ol { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 6px; }
.toc a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.toc a:hover { color: var(--primary); }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(22px, 2.4vw, 27px); margin-top: 1.8em; padding-top: .2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1em; display: grid; gap: 6px; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.2em; font-size: 15px; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--line-strong); padding: 10px 12px; text-align: left; vertical-align: top; }
.prose th { background: var(--surface); font-family: var(--font-head); font-weight: 600; }
.prose .placeholder { background: rgba(255, 200, 69, .3); padding: 0 4px; border-radius: 4px; font-weight: 700; }
.prose .meta { color: var(--ink-soft); font-size: 14.5px; }
.callout {
  padding: 18px 20px; border-radius: 18px; background: var(--grad-soft); margin: 0 0 1.2em; box-shadow: inset 0 0 0 1px var(--line);
}
.callout p:last-child { margin-bottom: 0; }
.en-note { font-size: 14.5px; color: var(--ink-soft); font-style: italic; }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 48px; }
.support-grid .card { grid-column: auto; }

.notfound { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 120px var(--gutter) 60px; position: relative; overflow: hidden; isolation: isolate; }
.notfound .radar { width: min(560px, 120vw); z-index: -1; opacity: .8; }
.notfound h1 { font-size: clamp(80px, 16vw, 160px); line-height: 1; margin-bottom: 10px; }
.notfound p { color: var(--ink-soft); font-size: 18px; max-width: 520px; margin-inline: auto; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--delay, 0s); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal--scale { transform: scale(.94); }
.js .reveal--left { transform: translateX(-32px); }
.js .reveal--right { transform: translateX(32px); }

.parallax { will-change: transform; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav a { padding: 8px 9px; font-size: 14.5px; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { transform: none; }
}
@media (max-width: 1024px) {
  .nav, .header-actions .btn { display: none; }
  .menu-toggle { display: inline-block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__text { text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__ctas, .hero__badges, .hero__note { justify-content: center; }
  .stage { max-width: 620px; margin-inline: auto; width: 100%; }
  .trust-grid, .dual, .dive { grid-template-columns: 1fr; }
  .dive--rev .dive__text { order: 0; }
  .dive__vis { width: 100%; max-width: 580px; margin-inline: auto; }
  .stage { height: 640px; }
  .dual__stage { max-width: 580px; width: 100%; margin-inline: auto; }
  .bento .card, .bento .card--wide, .bento .card--half { grid-column: span 6; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps__line { display: none; }
  .cta { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal { grid-template-columns: 1fr; }
  .toc { position: static; }
  .support-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .bento .card, .bento .card--wide, .bento .card--half { grid-column: span 12; }
  .card--wide ul, .card--half ul { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .stage { height: 500px; }
  .stage .phone--parent { --w: 196px; left: 7%; top: 6%; }
  .stage .phone--child { --w: 192px; right: 3%; top: 14%; }
  .chip { max-width: 200px; font-size: 12.5px; padding: 8px 12px 8px 8px; }
  .chip--1 { left: 0; bottom: 4%; }
  .chip--2 { right: 0; top: 0; }
  .chip--3 { display: none; }
  .dual__stage { height: 480px; }
  .dual__stage .phone { --w: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .facts { gap: 12px; }
  .fact { padding: 20px 14px; }
}
@media (max-width: 400px) {
  .stage { height: 440px; }
  .stage .phone--parent { --w: 168px; left: 6%; }
  .stage .phone--child { --w: 166px; right: 2%; }
  .chip { max-width: 180px; }
  .seg button { min-width: 0; padding: 10px 16px; }
  .days { gap: 6px; }
  .kid-cards { grid-template-columns: 1fr; }
  .brand__word { font-size: 19px; }
  .lang { padding: 6px 9px; }
  .dual__stage { height: 440px; }
  .dual__stage .phone { --w: 200px; }
  .facts { grid-template-columns: 1fr 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; transition-delay: 0s !important;
  }
  .blob, .radar__sweep, .map__sweep, .marquee__track, .float, .ping::before, .ping::after { animation: none !important; }
  .marquee__track { flex-wrap: wrap; width: auto; justify-content: center; row-gap: 14px; }
  .marquee__group[aria-hidden="true"] { display: none; }
  .marquee__group { flex-wrap: wrap; justify-content: center; row-gap: 14px; padding-right: 0; }
  .js .reveal { opacity: 1; transform: none; }
  .task--done .task__check { background: var(--c); animation: none !important; }
  .task--done .task__check svg { stroke-dashoffset: 0; animation: none !important; }
  .geo__toast { animation: none !important; opacity: 1; }
}

@media print {
  .site-header, .drawer, .blobs, .grid-bg, .site-footer, .toc { display: none !important; }
  body { background: #fff; color: #000; }
  .page-hero { padding-top: 20px; }
}
