/* ============================================================
   KidThings — Landing Page
   ============================================================ */

:root {
  --ink:        #1c1740;
  --ink-soft:   #4b4570;
  --muted:      #8b86ad;

  --purple:     #9b4dff;
  --blue:       #3b82f6;
  --pink:       #ff5d9e;
  --yellow:     #ffc83d;
  --mint:       #34d6c8;
  --indigo:     #6c5ce7;

  --grad-primary: linear-gradient(120deg, #a855f7 0%, #6366f1 45%, #3b82f6 100%);
  --grad-pink:    linear-gradient(120deg, #ff6fae 0%, #ff4d8d 100%);
  --grad-hero:    radial-gradient(120% 120% at 15% 10%, #8b7bff 0%, #6c5ce7 45%, #5b4fd6 100%);

  --paper:   #fcfbf8;
  --cream:   #fff6ec;
  --lilac:   #f3f0ff;
  --card:    #ffffff;

  --radius-lg: 34px;
  --radius:    24px;
  --radius-sm: 16px;

  --shadow-sm: 0 6px 18px rgba(40, 28, 90, 0.08);
  --shadow:    0 18px 50px rgba(56, 40, 120, 0.16);
  --shadow-lg: 0 40px 90px rgba(48, 32, 110, 0.28);

  --maxw: 1160px;
  --font-display: "Baloo 2", "SF Pro Rounded", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

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

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--lilac);
  padding: 8px 16px;
  border-radius: 999px;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  max-width: 18ch;
}
.section-lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
  margin-top: 18px;
}
.center { text-align: center; }
.center .section-title,
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background: var(--grad-primary);
  box-shadow: 0 12px 28px rgba(124, 76, 240, 0.38);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(124, 76, 240, 0.5); }
.btn-ghost {
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); }
.btn-light {
  color: var(--indigo);
  background: #fff;
}
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20,10,60,.3); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 248, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(108, 92, 231, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
}
.brand .logo {
  width: 40px; height: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffc83d;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(124,76,240,.4);
  flex: none;
}
.brand .logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.98rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--indigo); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

/* ---------- Language switch ---------- */
.lang-switch {
  display: inline-flex;
  gap: 2px;
  background: #fff;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 999px;
  padding: 3px;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.lang-switch button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding: 7px 13px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.lang-switch button:hover { color: var(--indigo); }
.lang-switch button.active {
  background: var(--grad-primary);
  color: #fff;
}
.footer-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.footer-lang-label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink-soft);
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; border-radius: 2px;
  background: var(--ink); margin: 5px 0; transition: .25s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.4);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px; border-radius: 999px;
  font-weight: 700; font-size: 0.86rem;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  margin: 22px 0 0;
}
.hero h1 .hl {
  position: relative;
  background: linear-gradient(100deg, #ffe27a, #ffc83d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.24rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 30ch;
  margin-top: 22px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px;
}
.hero-meta {
  display: flex; align-items: center; gap: 18px;
  margin-top: 28px; font-weight: 700; font-size: .95rem;
  color: rgba(255,255,255,.9);
}
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); }

/* Hero collage */
.hero-art {
  position: relative;
}
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

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

/* ============================================================
   LOGO / TRUST STRIP
   ============================================================ */
.trust {
  background: var(--paper);
  padding: 40px 0 10px;
}
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px;
  align-items: center;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--ink-soft);
  background: #fff; padding: 12px 22px; border-radius: 999px;
  box-shadow: var(--shadow-sm); font-size: .96rem;
}
.trust-pill .emoji { font-size: 1.2rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  color: var(--indigo);
  background: var(--lilac);
  width: 40px; height: 40px;
  border-radius: 14px;
  display: grid; place-items: center;
}
.step-ico { font-size: 2.6rem; margin: 18px 0 10px; }
.step h3 { font-size: 1.45rem; }
.step p { margin-top: 10px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   FEATURE ROWS
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature + .feature { margin-top: 120px; }
.feature.reverse .feature-media { order: 2; }
.feature-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.feature-text .section-lead { font-size: 1.12rem; }
.feature-list { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-weight: 600; color: var(--ink-soft); line-height: 1.5;
}
.feature-list .check {
  flex: none; width: 26px; height: 26px; border-radius: 9px;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; font-size: .85rem; margin-top: 1px;
}

.feature-media { position: relative; }
.media-stack { position: relative; display: flex; justify-content: center; }
.phone {
  width: 280px;
  border-radius: 44px;
  padding: 11px;
  background: #15102e;
  box-shadow: var(--shadow-lg);
}
.phone img { width: 100%; border-radius: 34px; }
.phone.back {
  position: absolute;
  width: 248px;
  left: 8%;
  top: 30px;
  transform: rotate(-7deg);
  opacity: .96;
  z-index: 1;
}
.phone.front { position: relative; z-index: 2; transform: rotate(3deg); }
.media-blob {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 46% 54% 60% 40% / 50% 44% 56% 50%;
  z-index: 0;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  filter: blur(6px);
  opacity: .6;
}
.phone video {
  width: 100%;
  border-radius: 34px;
  display: block;
  background: #15102e;
}
.video-phone {
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
}
.video-badge {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--grad-pink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 3;
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  background: linear-gradient(180deg, #fff6ec 0%, #fdeee0 100%);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.story-text p {
  margin-top: 20px; font-size: 1.14rem; line-height: 1.7; color: var(--ink-soft);
}
.story-text .signature {
  margin-top: 26px; font-family: var(--font-display); font-weight: 700;
  color: var(--ink); font-size: 1.05rem;
}
.story-photos {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.story-photos .pic {
  background: #fff;
  border-radius: 20px;
  padding: 10px 10px 12px;
  box-shadow: var(--shadow);
  transform: rotate(var(--r, 0deg));
}
.story-photos .pic img { border-radius: 12px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.story-photos .pic.tall { grid-row: span 2; }
.story-photos .pic span {
  display: block; text-align: center; font-family: var(--font-display);
  font-weight: 600; font-size: .8rem; color: var(--muted); margin-top: 8px;
}

/* ============================================================
   BEFORE / AFTER GALLERY
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.ba-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ba-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ba-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}
.ba-pane { text-align: center; }
.ba-pane img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #f5f3fb;
  border-radius: 18px;
  padding: 8px;
}
.ba-pane .tag {
  display: inline-block; margin-top: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  color: var(--ink-soft);
  background: var(--lilac); padding: 5px 14px; border-radius: 999px;
}
.ba-pane.after .tag { background: var(--grad-pink); color: #fff; }
.ba-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: 0 10px 22px rgba(124,76,240,.4);
  flex: none;
}
.ba-card h3 { margin-top: 20px; font-size: 1.3rem; text-align: center; }

/* Wall of drawings */
.wall {
  margin-top: 64px;
}
.wall-head { text-align: center; margin-bottom: 32px; }
.wall-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 24px;
  scroll-snap-type: x mandatory;
}
.wall-strip::-webkit-scrollbar { height: 8px; }
.wall-strip::-webkit-scrollbar-thumb { background: #e3def5; border-radius: 99px; }
.wall-pic {
  scroll-snap-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 10px 10px 14px;
  box-shadow: var(--shadow-sm);
  transform: rotate(var(--r, 0deg));
  transition: transform .25s ease;
}
.wall-pic:hover { transform: rotate(0) scale(1.03); }
.wall-pic img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.wall-pic span {
  display: block; text-align: center; font-family: var(--font-display);
  font-weight: 600; font-size: .82rem; color: var(--muted); margin-top: 8px;
}

/* ============================================================
   SAFETY / PARENTS
   ============================================================ */
.safety { background: var(--lilac); }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.safe-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.safe-ico {
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center; font-size: 1.7rem;
  background: var(--lilac); margin-bottom: 18px;
}
.safe-card h3 { font-size: 1.3rem; }
.safe-card p { margin-top: 10px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 48px auto 0; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; width: 100%;
  padding: 22px 26px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--ink); text-align: left;
}
.faq-q .plus { flex: none; font-size: 1.4rem; color: var(--indigo); transition: transform .25s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 26px;
  color: var(--ink-soft); line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 24px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  border-radius: 44px;
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.cta-band p { margin: 18px auto 0; font-size: 1.2rem; max-width: 46ch; color: rgba(255,255,255,.92); }
.cta-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-toy {
  position: absolute; width: 150px; bottom: -10px; opacity: .9;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.25));
}
.cta-toy.l { left: -10px; transform: rotate(-12deg); }
.cta-toy.r { right: 10px; bottom: auto; top: 20px; width: 110px; transform: rotate(10deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 70px 0 40px;
  background: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(108,92,231,.12);
}
.footer .brand { font-size: 1.3rem; margin-bottom: 16px; }
.footer-about { color: var(--ink-soft); line-height: 1.6; max-width: 34ch; }
.footer-col h4 { font-size: 1rem; margin-bottom: 16px; color: var(--ink); }
.footer-col a { display: block; color: var(--ink-soft); font-weight: 600; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--indigo); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 28px; color: var(--muted); font-size: .9rem; font-weight: 600;
}

/* ============================================================
   APP STORE BADGE
   ============================================================ */
.appstore-badge { display: inline-block; line-height: 0; transition: transform .18s ease; }
.appstore-badge img { height: 52px; width: auto; display: block; }
.appstore-badge:hover { transform: translateY(-3px); }
.nav-badge img { height: 42px; }
.appstore-badge-lg img { height: 58px; }

/* ============================================================
   HERO TRANSFORM CARD (before → after)
   ============================================================ */
.transform-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  max-width: 440px;
  margin: 20px auto;
}
.tc-pane { position: relative; }
.tc-pane img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  background: #f5f3fb;
}
.tc-before img { object-position: center 30%; }
.tc-tag {
  position: absolute;
  left: 50%; bottom: -12px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700; font-size: .82rem;
  color: #fff; background: #1c1740;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.tc-tag-after { background: var(--grad-pink); }
.tc-arrow {
  flex: none;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: grid; place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 22px rgba(124,76,240,.45);
  animation: floaty 3s ease-in-out infinite;
}

/* ============================================================
   AI VIDEO SHOWCASE
   ============================================================ */
.showcase { background: linear-gradient(180deg, #faf7ff 0%, #f1ecff 100%); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.showcase-media { position: relative; display: flex; justify-content: center; }
.showcase-blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 46% 54% 60% 40% / 50% 44% 56% 50%;
  background: radial-gradient(circle, #ffd36e, #ff9ecb);
  filter: blur(8px); opacity: .5; z-index: 0;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.showcase .video-phone { z-index: 2; width: 300px; }
.showcase-text h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }

/* ============================================================
   SCREENSHOTS STRIP
   ============================================================ */
.shots-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 44px 24px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.shots-strip::-webkit-scrollbar { height: 8px; }
.shots-strip::-webkit-scrollbar-thumb { background: #e3def5; border-radius: 99px; }
.shot {
  flex: none;
  width: 268px;
  scroll-snap-align: center;
  border-radius: 26px;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.shot:hover { transform: translateY(-6px); }

/* ============================================================
   LEGAL PAGES (privacy / terms)
   ============================================================ */
.legal-hero {
  background: var(--grad-hero);
  color: #fff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.legal-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 70px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.4);
}
.legal-hero .wrap { position: relative; z-index: 2; }
.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-top: 18px; }
.legal-hero .legal-date { margin-top: 14px; font-weight: 700; color: rgba(255,255,255,.85); }
.back-home {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  color: #fff; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px; border-radius: 999px; font-size: .9rem;
}
.back-home:hover { background: rgba(255,255,255,.26); }
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}
.legal h2 {
  font-size: 1.5rem;
  margin: 46px 0 0;
  color: var(--ink);
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.12rem; margin: 26px 0 0; color: var(--ink); }
.legal p, .legal li {
  color: var(--ink-soft);
  line-height: 1.72;
  font-size: 1.04rem;
}
.legal p { margin-top: 14px; }
.legal ul { margin: 14px 0 0; padding-left: 22px; }
.legal li { margin-top: 8px; }
.legal a { color: var(--indigo); font-weight: 700; text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal .lede {
  font-size: 1.15rem;
  background: var(--lilac);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-top: 0;
}
.legal hr { border: none; border-top: 1px solid rgba(108,92,231,.14); margin: 40px 0; }
[data-lang-content] { display: none; }
[data-lang-content].show { display: block; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; padding: 20px 24px; gap: 18px;
    box-shadow: var(--shadow);
  }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-sub { max-width: none; }
  .hero-art { max-width: 460px; margin: 0 auto; }
  .showcase-grid { grid-template-columns: 1fr; gap: 44px; }
  .showcase-media { order: -1; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .feature-media { order: 0; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .hero { padding: 50px 0 90px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 56px 24px; }
  .cta-toy { display: none; }
  .ba-pair { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); margin: 4px auto; }
  .transform-card { gap: 10px; padding: 12px; }
  .tc-arrow { width: 38px; height: 38px; font-size: 1.1rem; }
  .appstore-badge img { height: 48px; }
  .appstore-badge-lg img { height: 52px; }
  .shot { width: 230px; }
}
