/* =============================================================
   KidsList — Marketing Site
   ============================================================= */

:root {
  --blue:        #1F7BFF;
  --blue-deep:   #0D5BD0;
  --blue-soft:   #E8F1FF;
  --pink:        #FF4F97;
  --pink-soft:   #FF7AB1;
  --pink-tint:   #FFE8F1;
  --yellow:      #FFD86B;
  --ink:         #0E1B33;
  --ink-2:       #1E2C49;
  --muted:       #5A6B85;
  --muted-2:     #8593AB;
  --line:        #E6ECF5;
  --bg:          #FAFBFF;
  --card:        #FFFFFF;

  --grad-blue:   linear-gradient(135deg, var(--blue), var(--blue-deep));
  --grad-pink:   linear-gradient(135deg, var(--pink-soft), var(--pink));
  --grad-mix:    linear-gradient(135deg, #1F7BFF 0%, #6E62E8 50%, #FF4F97 100%);

  --shadow-sm:   0 4px 14px -8px rgba(31, 123, 255, .25);
  --shadow:      0 10px 30px -12px rgba(31, 123, 255, .25);
  --shadow-lg:   0 30px 60px -25px rgba(31, 123, 255, .35);
  --shadow-pink: 0 18px 40px -18px rgba(255, 79, 151, .55);

  --r-sm: 12px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --maxw: 1180px;
}

[data-theme="dark"] {
  --ink:        #F4F7FF;
  --ink-2:      #DCE4F4;
  --muted:      #A6B3CC;
  --muted-2:    #7E8CA8;
  --line:       #1B2745;
  --bg:         #0A1228;
  --card:       #111B36;
  --blue-soft:  #14254A;
  --pink-tint:  #2A1730;
  --shadow:     0 12px 32px -14px rgba(0, 0, 0, .6);
  --shadow-lg:  0 30px 60px -25px rgba(0, 0, 0, .7);
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
  }
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-deep); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--muted); }
.fraunces { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-weight: 700; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: clamp(64px, 9vw, 120px) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.pink { color: var(--pink); background: var(--pink-tint); }

.section-head { max-width: 740px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 46px -18px rgba(255, 79, 151, .65); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 18px 28px; font-size: 1.05rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.site-header.scrolled { border-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad-pink);
  border-radius: 2px;
  transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: border-color .2s, transform .2s;
}
.theme-toggle:hover { border-color: var(--blue); transform: rotate(20deg); }
.theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  place-items: center;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: 70px 16px auto 16px;
    flex-direction: column;
    gap: 4px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 12px 14px; border-radius: 12px; }
  .nav-links a:hover { background: var(--blue-soft); }
  .menu-btn { display: grid; }
  .nav-cta-text { display: none; }
  .nav .btn-primary { padding: 12px 16px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 90px) 0 clamp(60px, 9vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 .kids { color: var(--blue); }
.hero h1 .list { color: var(--pink); }
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .9rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: #2EAE63; flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}
.hero-blob {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 70% 30%, rgba(255, 79, 151, .18), transparent 60%),
    radial-gradient(60% 60% at 30% 70%, rgba(31, 123, 255, .22), transparent 60%);
  filter: blur(10px);
  z-index: 0;
}

/* phone frame */
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  border-radius: 44px;
  background: #0E1B33;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .06) inset;
  z-index: 2;
}
.phone::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #0E1B33;
  border-radius: 0 0 18px 18px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #F4F6FA;
  position: relative;
}
.phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.phone.tilt-left { transform: rotate(-4deg); }
.phone.tilt-right { transform: rotate(4deg); }

.hero-phones {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.hero-phones .phone-back {
  position: absolute;
  width: 240px;
  height: 500px;
  transform: rotate(-8deg) translate(-110px, 20px);
  opacity: .55;
  filter: blur(.5px);
  z-index: 1;
}
.hero-phones .phone-back-2 {
  position: absolute;
  width: 220px;
  height: 460px;
  transform: rotate(7deg) translate(120px, 40px);
  opacity: .45;
  filter: blur(1px);
  z-index: 1;
}

/* sparkles */
.sparkle {
  position: absolute;
  pointer-events: none;
  color: var(--yellow);
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.1); }
}
.sparkle.s1 { top: 8%; left: 8%; animation-delay: 0s; }
.sparkle.s2 { top: 18%; right: 6%; animation-delay: .8s; }
.sparkle.s3 { bottom: 12%; left: 12%; animation-delay: 1.6s; }
.sparkle.s4 { bottom: 22%; right: 14%; animation-delay: .4s; }
.sparkle.s5 { top: 45%; right: 2%; animation-delay: 2.2s; }

/* page-wide subtle sparkles */
.bg-sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}

/* ---------- problem section ---------- */
.problem {
  background: linear-gradient(180deg, transparent, var(--blue-soft) 60%, transparent);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 820px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.pain-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
}
.pain-card .qmark {
  position: absolute;
  top: 18px; right: 22px;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 3rem;
  color: var(--pink);
  opacity: .25;
  line-height: 1;
}
.pain-card p {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}
.pain-card .who {
  display: block;
  margin-top: 12px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- social proof strip ---------- */
.proof {
  padding: 32px 0;
  border-block: 1px solid var(--line);
  background: var(--card);
}
.proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
}
.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink-2);
  font-size: .95rem;
}
.proof-item svg { color: var(--blue); flex-shrink: 0; }

/* ---------- how it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }
.step {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--grad-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}
.step h3 { margin: 0; }
.step p { margin: 0; font-size: .98rem; }
.step-shot {
  margin-top: auto;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(135deg, #F4F6FA 0%, #E8EEFA 100%);
  padding: 24px 24px 0;
  display: flex;
  justify-content: center;
}
.step-shot img {
  width: 100%;
  max-width: 200px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -10px 28px -10px rgba(14, 27, 51, .15);
}
[data-theme="dark"] .step-shot { background: linear-gradient(135deg, #1A2746 0%, #0F1A38 100%); }

/* ---------- features grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--blue) 30%, var(--line));
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--blue-soft);
  color: var(--blue);
}
.feature:nth-child(2n) .feature-icon { background: var(--pink-tint); color: var(--pink); }
.feature h3 { margin-bottom: 8px; font-size: 1.15rem; }
.feature p { margin: 0; font-size: .96rem; }

/* ---------- for whom ---------- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .persona-grid { grid-template-columns: 1fr; } }
.persona {
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.persona-avatar {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  background: var(--grad-blue);
  color: #fff;
}
.persona:nth-child(2) .persona-avatar { background: var(--grad-pink); }
.persona:nth-child(3) .persona-avatar { background: linear-gradient(135deg, #6E62E8, var(--blue)); }
.persona h3 { font-size: 1.3rem; }
.persona-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  color: var(--ink-2);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
}

/* ---------- vs / before-after ---------- */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 820px) {
  .vs-grid { grid-template-columns: 1fr; }
  .vs-divider { display: none; }
}
.vs-card {
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line);
}
.vs-before { background: var(--card); }
.vs-after  {
  background: var(--grad-blue);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.vs-after::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 80% 20%, rgba(255, 79, 151, .35), transparent 60%);
  pointer-events: none;
}
.vs-card h3 { color: inherit; margin-bottom: 18px; }
.vs-after h3 { color: #fff; }
.vs-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.vs-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
}
.vs-before li { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(255, 79, 151, .5); }
.vs-after  li { color: rgba(255, 255, 255, .92); position: relative; z-index: 1; }
.vs-icon { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.vs-before .vs-icon { color: #C2CCE0; }
.vs-after  .vs-icon { color: var(--yellow); }
.vs-divider {
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--muted);
  font-size: 1.1rem;
}
.vs-divider span {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

/* ---------- privacy section ---------- */
.privacy {
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--blue-soft) 60%, transparent));
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .privacy-grid { grid-template-columns: 1fr; } }
.privacy-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.privacy-shield {
  width: 70%;
  filter: drop-shadow(0 30px 60px rgba(31, 123, 255, .3));
}
.privacy-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.privacy-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--ink-2);
}
.privacy-list svg { color: #2EAE63; flex-shrink: 0; margin-top: 3px; }

/* ---------- demo widget ---------- */
.demo-widget {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.demo-widget h4 { margin: 0 0 4px; font-size: 1rem; color: var(--muted); font-weight: 700; }
.demo-widget .demo-title { font-size: 1.4rem; font-weight: 800; color: var(--ink); margin: 0 0 16px; }
.demo-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  margin-bottom: 10px;
  background: var(--bg);
  transition: opacity .3s, transform .3s;
}
.demo-item.bought { opacity: .5; }
.demo-item.bought .demo-name { text-decoration: line-through; color: var(--muted); }
.demo-thumb {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--grad-blue);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
}
.demo-item:nth-child(2) .demo-thumb { background: var(--grad-pink); }
.demo-item:nth-child(3) .demo-thumb { background: linear-gradient(135deg, #FFB861, #FF8A3D); }
.demo-name { font-weight: 600; color: var(--ink); flex: 1; font-size: .95rem; }
.demo-btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  transition: all .2s;
}
.demo-btn:hover { border-color: var(--pink); color: var(--pink); }
.demo-item.bought .demo-btn { background: #E7F7EF; color: #2EAE63; border-color: transparent; }
[data-theme="dark"] .demo-item.bought .demo-btn { background: #143028; color: #6EDCA5; }

/* confetti */
.confetti {
  position: absolute;
  pointer-events: none;
  z-index: 100;
  font-size: 1rem;
  animation: confetti-fall 1.4s ease-out forwards;
}
@keyframes confetti-fall {
  0% { transform: translateY(0) rotate(0); opacity: 1; }
  100% { transform: translateY(120px) rotate(540deg); opacity: 0; }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: color-mix(in srgb, var(--blue) 30%, var(--line)); }
.faq-item.open { box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--blue) 40%, var(--line)); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--ink);
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
}
.faq-q .chev {
  flex-shrink: 0;
  transition: transform .25s;
  color: var(--blue);
}
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 1rem;
}
.faq-a-inner p { margin: 0; }

/* ---------- final CTA banner ---------- */
.final-cta {
  padding-bottom: clamp(80px, 9vw, 120px);
}
.cta-banner {
  background: var(--grad-mix);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 64px);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); position: relative; }
.cta-banner p { color: rgba(255, 255, 255, .9); font-size: 1.1rem; max-width: 540px; margin: 0 auto 28px; position: relative; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .5);
  position: relative;
}
.cta-banner .btn-primary:hover { color: var(--blue); background: #fff; }
.cta-banner .footnote { font-size: .9rem; margin-top: 16px; position: relative; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .75);
  padding: 60px 0 30px;
}
[data-theme="dark"] .site-footer { background: #060B1C; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 56px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255, 255, 255, .7); font-size: .95rem; max-width: 320px; }
.footer-col h4 {
  color: #fff;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255, 255, 255, .75); font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--pink-soft); }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
}
.amazon-notice {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 24px;
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- placeholder pages ---------- */
.placeholder-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.placeholder-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  margin-bottom: 28px;
  font-size: .95rem;
}
.placeholder-banner {
  background: var(--pink-tint);
  color: var(--pink);
  border: 1px solid color-mix(in srgb, var(--pink) 30%, transparent);
  border-radius: var(--r);
  padding: 16px 20px;
  font-weight: 600;
  font-size: .95rem;
  margin: 24px 0 36px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.placeholder-banner svg { color: var(--pink); flex-shrink: 0; }
[data-theme="dark"] .placeholder-banner { color: var(--pink-soft); }
.placeholder-page h1 { font-size: clamp(2rem, 3.5vw, 2.6rem); margin-bottom: 8px; }
.placeholder-page .lead { font-size: 1.1rem; margin-bottom: 36px; }
.placeholder-page section { padding: 0; margin-bottom: 36px; }
.placeholder-page h2 { font-size: 1.4rem; margin-bottom: 10px; }
.placeholder-page h2::before {
  content: '§';
  display: inline-block;
  margin-right: 10px;
  color: var(--blue);
  font-family: Georgia, 'Times New Roman', serif;
}
.placeholder-page .skeleton-line {
  height: 14px;
  background: var(--line);
  border-radius: 6px;
  margin-bottom: 10px;
  animation: skel 2s ease-in-out infinite;
}
.placeholder-page .skeleton-line.short { width: 60%; }
.placeholder-page .skeleton-line.med { width: 85%; }
@keyframes skel {
  0%, 100% { opacity: .6; }
  50% { opacity: .35; }
}
.placeholder-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.placeholder-form label { font-weight: 700; font-size: .9rem; color: var(--ink-2); }
.placeholder-form input,
.placeholder-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}
.placeholder-form textarea { min-height: 140px; resize: vertical; }
.placeholder-form input:focus,
.placeholder-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 12px;
}
.cookie-toggle-row strong { display: block; color: var(--ink); }
.cookie-toggle-row small { color: var(--muted); font-size: .9rem; }
.switch {
  width: 48px; height: 28px;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  border: none;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
}
.switch.on { background: var(--blue); }
.switch.on::after { transform: translateX(20px); }
.switch.locked { background: var(--blue); opacity: .6; cursor: not-allowed; }
.switch.locked::after { transform: translateX(20px); }
