/* Talk2Kids — modern redesign overrides */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg, #0c172f);
  color: var(--fg, #fff);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:root {
  --bg: #0c172f;
  --bg-deep: #07112a;
  --bg-soft: #142142;
  --fg: #ffffff;
  --fg-mute: #b8bccd;
  --fg-faint: #7e8398;
  --gold: #dbc379;
  --gold-hi: #E3D084;
  --gold-lo: #B3864B;
  --mustard: #c8a955;
  --line: rgba(219,195,121,.18);
  --line-soft: rgba(255,255,255,.08);
  --container: 1180px;
  --pad: clamp(20px, 4vw, 56px);
}

/* compact density variant */
.density-compact {
  --pad: clamp(16px, 3vw, 36px);
}

/* cream variant */
.theme-cream {
  --bg: #f6f1e6;
  --bg-deep: #efe8d8;
  --bg-soft: #ffffff;
  --fg: #0c172f;
  --fg-mute: #44485a;
  --fg-faint: #6f7280;
  --line: rgba(12,23,47,.10);
  --line-soft: rgba(12,23,47,.06);
}
/* Section-scoped cream: apply theme-cream to a single <section> to make only
   that block cream while the rest of the page stays navy. */
section.theme-cream {
  background: var(--bg);
  color: var(--fg);
}
section.theme-cream .h-section,
section.theme-cream .h-card,
section.theme-cream .h-display { color: var(--fg); }
section.theme-cream .lead { color: var(--fg-mute); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

/* Modern editorial type tweaks */
.h-display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  margin: 0;
  text-wrap: balance;
}
.h-card {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.kicker::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.script {
  font-family: 'League Script', cursive;
  font-size: clamp(36px, 4.4vw, 56px);
  color: var(--gold);
  line-height: 1;
  display: inline-block;
  transform: rotate(-3deg);
}
.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--fg-mute);
  max-width: 58ch;
  text-wrap: pretty;
}

/* Gold gradient text */
.gold-text {
  background: linear-gradient(180deg, #F0DC93 0%, #C29E55 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn--primary {
  background: linear-gradient(180deg, #F0DC93 0%, #C29E55 100%);
  color: #0c172f;
  box-shadow: 0 0 0 1px rgba(243,226,160,.7) inset, 0 12px 30px -10px rgba(219,195,121,.6), 0 0 0 0 rgba(238,232,170,0);
}
.btn--primary:hover {
  box-shadow: 0 0 0 1px rgba(243,226,160,.9) inset, 0 16px 36px -10px rgba(219,195,121,.85), 0 0 22px 4px rgba(238,232,170,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--line);
}
.theme-cream .btn--ghost { color: var(--fg); border-color: rgba(12,23,47,.18); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--dark {
  background: var(--bg-deep);
  color: var(--fg);
  border: 1.5px solid var(--line);
}
.btn--dark:hover { border-color: var(--gold); }

.btn-arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Small variant — used in the Nav so the header bar stays tight */
.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
  letter-spacing: 0.005em;
  text-transform: none;
  font-weight: 600;
}

/* ── Hero (split: content left, video right) ────────────── */
.hero-section {
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(56px, 7vw, 100px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-video-wrap { order: 2; }
}
.hero-h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
  text-wrap: balance;
}
.hero-video-wrap { display: flex; justify-content: flex-end; }
@media (max-width: 880px) { .hero-video-wrap { justify-content: center; } }
.hero-video {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #1a1a2e 0%, #2d1f0f 100%);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.6);
}
.hero-video > video,
.hero-video > div {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-video-play {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: #0c172f;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: background .25s, box-shadow .25s, transform .25s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 2;
}
.hero-video-play:hover {
  background: linear-gradient(180deg, #EAD78C, #C29E55);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 16px 40px rgba(219, 195, 121, .4), inset 0 1px 0 rgba(255, 255, 255, .9);
}
/* Toucan badge on hero-video border (subtle brand decoration) */
.hero-toucan-badge {
  position: absolute;
  top: -26px; right: -18px;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--mustard);
  border: 4px solid var(--bg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .4), 0 0 0 1px rgba(219, 195, 121, .25);
  overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 3;
}
.hero-toucan-badge img {
  width: 130%; height: 130%;
  object-fit: cover; object-position: center;
}
@media (max-width: 880px) {
  .hero-toucan-badge { width: 64px; height: 64px; top: -20px; right: -12px; }
}

/* ── Hamburger button + mobile drawer ───────────────────── */
.hamburger {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  padding: 0;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.hamburger:hover { border-color: var(--line); background: rgba(255,255,255,.04); }
.hamburger-lines {
  position: relative;
  width: 18px; height: 14px;
  display: inline-block;
}
.hamburger-lines span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.6,.05,.3,1.15), top .35s cubic-bezier(.6,.05,.3,1), opacity .2s ease;
  color: var(--fg);
}
.hamburger-lines span:nth-child(1) { top: 0; }
.hamburger-lines span:nth-child(2) { top: 6px; }
.hamburger-lines span:nth-child(3) { top: 12px; }
.hamburger[aria-expanded="true"] .hamburger-lines span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-lines span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.hamburger[aria-expanded="true"] .hamburger-lines span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Full-screen blurry overlay menu */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(7, 17, 42, .82);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
          backdrop-filter: blur(24px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  display: flex; flex-direction: column;
  padding: clamp(20px, 5vw, 36px);
  overflow-y: auto;
}
.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer-scrim { display: none; }

.mobile-drawer nav {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 6px;
  text-align: center;
}
.mobile-drawer nav a {
  display: block;
  padding: 14px 28px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.4, 0, .2, 1), background .2s, border-color .2s, color .2s;
}
.mobile-drawer.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-drawer.is-open nav a:nth-child(1) { transition-delay: .08s; }
.mobile-drawer.is-open nav a:nth-child(2) { transition-delay: .14s; }
.mobile-drawer.is-open nav a:nth-child(3) { transition-delay: .20s; }
.mobile-drawer.is-open nav a:nth-child(4) { transition-delay: .26s; }
.mobile-drawer.is-open nav a:nth-child(5) { transition-delay: .32s; }
.mobile-drawer.is-open nav a:nth-child(6) { transition-delay: .38s; }
.mobile-drawer nav a:hover,
.mobile-drawer nav a:focus-visible { color: var(--gold); }

.mobile-drawer-cta {
  padding-top: 18px;
  display: flex; justify-content: center;
  opacity: 0;
  transition: opacity .5s ease .45s;
}
.mobile-drawer.is-open .mobile-drawer-cta { opacity: 1; }
.mobile-drawer-cta .btn {
  padding: 14px 28px;
  font-size: 14px;
}

@media (max-width: 880px) {
  .hamburger { display: inline-flex; }
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Section base */
section { position: relative; }
.section {
  padding: clamp(72px, 9vw, 140px) 0;
  position: relative;
}
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

/* Aurora spotlight */
.aurora {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.aurora::before {
  content: "";
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(219,195,121,.18), rgba(219,195,121,0) 70%);
  top: -180px; right: -120px;
  filter: blur(20px);
}
.aurora--bl::before { left: -200px; right: auto; top: auto; bottom: -260px; }
.theme-cream .aurora::before { background: radial-gradient(closest-side, rgba(195,159,76,.22), rgba(195,159,76,0) 70%); }

/* Cards */
.card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  transition: border-color .25s, transform .25s, background .25s, box-shadow .25s;
}
.theme-cream .card, section.theme-cream .card { background: rgba(255,255,255,.6); border-color: rgba(12,23,47,.08); }
.card:hover {
  border-color: var(--line);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.4);
}
.theme-cream .card:hover, section.theme-cream .card:hover {
  border-color: rgba(12,23,47,.18);
  box-shadow: 0 24px 50px -22px rgba(0,0,0,.18);
}
.card--gold {
  background: linear-gradient(180deg, rgba(219,195,121,.10), rgba(219,195,121,.02));
  border: 1px solid var(--line);
}
.card--solid-gold {
  background: linear-gradient(180deg, #EAD78C 0%, #C9A65B 100%);
  color: #0c172f;
  border: none;
}

/* Numbered chip */
.numchip {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0;
}

/* Photo placeholder utility */
.photo {
  background: linear-gradient(135deg, var(--mustard) 0%, #a98839 100%);
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}
.photo--circle { border-radius: 50%; }
.photo .photo-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(12,23,47,.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}

/* Star rating row */
.stars { letter-spacing: 2px; color: #f5d27a; }

/* Hairline divider */
.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Marquee logo strip */
.marquee {
  display: flex;
  gap: 64px;
  align-items: center;
  opacity: .8;
  flex-wrap: wrap;
  justify-content: center;
}
.marquee > span {
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 500;
}

/* Stat */
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(180deg, #F0DC93 0%, #C29E55 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-mute);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* Toucan badge sticker */
.toucan-badge {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--mustard);
  display: inline-flex; align-items: center; justify-content: center;
  border: 3px solid var(--bg);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  overflow: hidden;
}
.toucan-badge img { width: 130%; height: 130%; object-fit: cover; object-position: center; }

/* Pill */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--fg-mute);
  background: rgba(255,255,255,.02);
}
.theme-cream .pill { background: rgba(12,23,47,.04); color: var(--fg-mute); }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.pill .dot--live { background: #45ad58; box-shadow: 0 0 0 0 rgba(69,173,88,.6); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(69,173,88,.55); }
  70% { box-shadow: 0 0 0 8px rgba(69,173,88,0); }
  100% { box-shadow: 0 0 0 0 rgba(69,173,88,0); }
}

/* Floating CTA bar — Liquid Glass (Apple iOS 26 / Tahoe) */
.cta-bar {
  position: relative;
  z-index: 40;
  margin: 0 auto;
  max-width: 920px;
  background: rgba(20, 20, 22, 0.45);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
          backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 8px 8px 8px 14px;
  display: flex; align-items: center; gap: 12px; justify-content: space-between;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
  isolation: isolate;
}
/* Specular highlight following the cursor */
.cta-bar::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(
    140px circle at var(--cta-mx, 50%) var(--cta-my, 50%),
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 0;
}
.cta-bar:hover::before { opacity: 1; }
.cta-bar > * { position: relative; z-index: 1; }
.cta-bar:active { transform: scale(0.97); }

/* Inner contrast layer (text shouldn't sit directly on the glass) */
.cta-inner {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.theme-cream .cta-inner {
  background: rgba(12, 23, 47, 0.06);
  border-color: rgba(12, 23, 47, 0.08);
  color: rgba(12, 23, 47, 0.88);
}

/* Cream-theme glass variant */
.theme-cream .cta-bar {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 32px rgba(0, 0, 0, 0.1);
}
.theme-cream .cta-bar::before {
  background: radial-gradient(
    140px circle at var(--cta-mx, 50%) var(--cta-my, 50%),
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0) 60%
  );
}

@media (prefers-reduced-transparency: reduce) {
  .cta-bar {
    background: rgba(12, 17, 30, 0.96);
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .theme-cream .cta-bar { background: rgba(248, 245, 238, 0.98); }
  .cta-bar::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-bar { transition: none; }
  .cta-bar:active { transform: none; }
  .cta-bar::before { transition: none; }
}

/* Reveal-on-scroll (progressive enhancement; default visible) */
.reveal { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }
.js-reveal .reveal:not(.in) { opacity: 0; transform: translateY(16px); }

/* Modal */
.modal-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal {
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 22px;
  max-width: 540px; width: 100%;
  padding: 36px;
  position: relative;
}
.theme-cream .modal { background: var(--bg-soft); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  color: var(--fg-mute); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--fg); border-color: var(--gold); }

input.t-input, textarea.t-input {
  width: 100%;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--fg);
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.theme-cream input.t-input, .theme-cream textarea.t-input {
  background: rgba(12,23,47,.04);
  color: var(--fg);
}
input.t-input:focus, textarea.t-input:focus { border-color: var(--gold); }

/* Accordion */
details.faq {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
details.faq:last-of-type { border-bottom: 1px solid var(--line); }
details.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: -0.01em;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .faq-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .25s, border-color .25s;
  color: var(--gold);
}
details.faq[open] summary .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
details.faq .faq-body {
  margin-top: 14px; color: var(--fg-mute);
  font-size: 16px; line-height: 1.6;
  max-width: 70ch;
}

/* Marker rail (for "how it works") */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  --steps-progress: 0;
}
.steps::before {
  content: "";
  position: absolute;
  left: 22px; right: 22px; top: 22px;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
}
.steps::after {
  content: "";
  position: absolute;
  left: 22px; top: 22px;
  height: 2px;
  width: calc((100% - 44px) * var(--steps-progress));
  background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(219,195,121,.5);
  transition: width .15s linear;
}
.step .numchip {
  background: var(--bg); position: relative; z-index: 1;
  transition: color .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.theme-cream .step .numchip { background: var(--bg); }
.step.is-active .numchip {
  color: #0c172f;
  border-color: var(--gold);
  background: linear-gradient(180deg,#EAD78C,#C29E55);
  box-shadow: 0 0 0 4px rgba(219,195,121,.18), 0 6px 16px -4px rgba(219,195,121,.45);
}
.step.is-active h3 { color: var(--gold); }
.steps[data-anim="off"]::after { width: calc(100% - 44px); }
.steps[data-anim="off"] .step .numchip { color: var(--gold); border-color: var(--gold); }

/* Floating quote */
blockquote.editor-quote {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--fg);
  text-wrap: balance;
}
blockquote.editor-quote::before {
  content: "„";
  font-family: 'Poppins', serif;
  color: var(--gold);
  font-size: 1.4em;
  line-height: 0;
  margin-right: 4px;
  vertical-align: -0.05em;
}

/* Vs split */
.vs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
}
.theme-cream .vs-split { background: rgba(255,255,255,.4); }
.vs-side { padding: 36px; }
.vs-side + .vs-side { border-left: 1px solid var(--line); }
.vs-side h4 {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.vs-side h4 .vs-pin {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.vs-side--problem h4 .vs-pin { background: rgba(233,61,61,.12); color: #ff6b6b; border: 1px solid rgba(233,61,61,.3); }
.vs-side--solution h4 .vs-pin { background: rgba(219,195,121,.12); color: var(--gold); border: 1px solid var(--line); }
.theme-cream .vs-side--problem h4 .vs-pin { color: #c33; }

.vs-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.vs-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; line-height: 1.5;
  color: var(--fg-mute);
}
.vs-list li svg { flex-shrink: 0; margin-top: 4px; }

/* responsive */
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 30px; }
  .steps::before { display: none; }
  .vs-split { grid-template-columns: 1fr; }
  .vs-side + .vs-side { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .cta-bar { flex-direction: column; border-radius: 22px; padding: 14px; }
}

/* Logo composite */
.logo-mark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.logo-mark .logo-tile {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--mustard); overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
}
.logo-mark .logo-tile img { width: 130%; height: 130%; object-fit: cover; }
.logo-mark .logo-name {
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--fg);
}
.logo-mark .logo-name b { font-weight: 800; }

/* Tooltip-style chip cluster */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* No-select utility for chrome */
.no-select { user-select: none; }

/* Anim: subtle floating */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float { animation: float 6s ease-in-out infinite; }

/* Card grid utility */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.bento .b-1 { grid-column: span 4; }
.bento .b-2 { grid-column: span 2; }
.bento .b-3 { grid-column: span 2; }
.bento .b-4 { grid-column: span 2; }
.bento .b-5 { grid-column: span 2; }
@media (max-width: 880px) {
  .bento { grid-template-columns: 1fr; }
  .bento .b-1, .bento .b-2, .bento .b-3, .bento .b-4, .bento .b-5 { grid-column: span 1; }
}

/* SVG chevrons sized */
.icn { width: 18px; height: 18px; flex-shrink: 0; }

/* ── ElternHebel: cascade Kind → Eltern → Antwort ─────────── */
.cascade {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  gap: 14px;
  align-items: stretch;
}
.cascade-col {
  padding: 28px 28px 32px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s, background .25s;
}
.cascade-col:hover {
  border-color: var(--line);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.4);
}
section.theme-cream .cascade-col:hover {
  border-color: rgba(12,23,47,.18);
  box-shadow: 0 24px 50px -22px rgba(0,0,0,.18);
}
.theme-cream .cascade-col { background: rgba(255,255,255,.55); border-color: rgba(12,23,47,.08); }
.cascade-col--answer {
  background: linear-gradient(180deg, rgba(219,195,121,.12), rgba(219,195,121,.02));
  border-color: var(--line);
  box-shadow: 0 24px 60px -30px rgba(219,195,121,.45);
}
.theme-cream .cascade-col--answer { background: linear-gradient(180deg, rgba(195,159,76,.18), rgba(195,159,76,.04)); }

.cascade-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.cascade-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  color: var(--fg-mute);
  flex-shrink: 0;
  background: var(--bg);
}
.theme-cream .cascade-num { background: var(--bg-soft); }
.cascade-num--gold {
  border-color: var(--gold);
  color: #0c172f;
  background: linear-gradient(180deg, #EAD78C 0%, #C29E55 100%);
  box-shadow: 0 0 0 4px rgba(219,195,121,.15), 0 6px 16px -4px rgba(219,195,121,.45);
}
.cascade-eyebrow {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--fg-faint); margin-bottom: 6px;
}
.cascade-eyebrow--gold { color: var(--gold); }

.cascade-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.cascade-list li {
  font-size: 14.5px; line-height: 1.5; color: var(--fg-mute);
  display: flex; gap: 12px; align-items: flex-start;
}
.cascade-dot {
  width: 9px; height: 9px; border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}
.cascade-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(219,195,121,.18);
  animation: cascPulseGold 2.8s ease-in-out infinite;
}
@keyframes cascPulseGold {
  0%, 100% { box-shadow: 0 0 0 3px rgba(219,195,121,.18); }
  50% { box-shadow: 0 0 0 7px rgba(219,195,121,.04); }
}
.cascade-dot--red {
  background: #ff6a6a;
  box-shadow: 0 0 0 3px rgba(255,106,106,.14);
  animation: cascPulseRed 2.6s ease-in-out infinite;
}
@keyframes cascPulseRed {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,106,106,.14); }
  50% { box-shadow: 0 0 0 7px rgba(255,106,106,.04); }
}

.cascade-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  position: relative;
}
.cascade-arrow svg { animation: cascArrowSlide 2.4s ease-in-out infinite; }
@keyframes cascArrowSlide {
  0%, 100% { transform: translateX(0); opacity: .7; }
  50% { transform: translateX(4px); opacity: 1; }
}

.cascade-strength { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 12px; }
.cascade-strength li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.5; color: var(--fg);
  font-weight: 500;
}
.cascade-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(219,195,121,.16);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
  border: 1px solid rgba(219,195,121,.3);
}

@media (max-width: 1080px) {
  .cascade { grid-template-columns: 1fr; gap: 18px; }
  .cascade-arrow { height: 36px; }
  .cascade-arrow svg { transform: rotate(90deg); }
}

/* ── Footer disclaimer ───────────────────────────────────── */
.footer-disclaimer {
  margin-top: 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-soft);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--fg-faint);
}
.footer-disclaimer p { margin: 0; }
.footer-disclaimer b { color: var(--fg-mute); }

/* ── FinalCTA (split: emotional headline + show-card) ──────── */
.final-cta {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f1a36 0%, #0a132c 60%, #142142 100%);
  border: 1px solid var(--line);
  padding: clamp(40px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.final-cta-aurora {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(closest-side at 80% 0%, rgba(219,195,121,.32), transparent 60%),
    radial-gradient(closest-side at 0% 100%, rgba(219,195,121,.18), transparent 60%);
  filter: blur(20px);
}
.final-cta > *:not(.final-cta-aurora) { position: relative; z-index: 1; }
.final-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .final-cta-grid { grid-template-columns: 1fr; }
}
.final-cta-side {
  background: rgba(7,17,42,.55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.final-cta-side-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(219,195,121,.35);
  background: rgba(219,195,121,.08);
}
.final-cta-side-pill .dot--live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #45ad58; box-shadow: 0 0 0 0 rgba(69,173,88,.6);
  animation: pulse 1.6s infinite;
}
.final-cta-date {
  font-family: 'Montserrat'; font-weight: 600;
  font-size: 28px; letter-spacing: -0.02em;
  margin-top: 16px;
  color: #fff;
}
.final-cta-time {
  font-family: 'Montserrat'; font-weight: 500;
  font-size: 18px; color: var(--gold);
  margin-top: 2px;
}

/* ── VsBlock path-grid (cream): 3 muted + 1 gold winning path ── */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1080px) { .path-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .path-grid { grid-template-columns: 1fr; } }

.path-card {
  padding: 26px 26px 28px;
  border-radius: 20px;
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color .25s, box-shadow .25s;
}
.path-card--muted {
  background: rgba(255, 255, 255, .35);
  border: 1px solid rgba(12, 23, 47, .08);
  color: rgba(12, 23, 47, .68);
}
.path-card--muted:hover { border-color: rgba(12, 23, 47, .16); box-shadow: 0 24px 50px -22px rgba(0,0,0,.16); }
.path-card--gold {
  background: linear-gradient(180deg, #EAD78C 0%, #C9A65B 100%);
  border: 1px solid rgba(255, 255, 255, .45);
  color: #0c172f;
  box-shadow: 0 24px 60px -20px rgba(219,195,121,.55);
}
.path-card--gold::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 80% 0%, rgba(255,255,255,.4), transparent 50%);
  pointer-events: none;
}
.path-card--gold > * { position: relative; z-index: 1; }

.path-num {
  position: absolute; top: 18px; right: 22px;
  font-family: 'Montserrat'; font-weight: 600; font-size: 12px;
  color: rgba(12, 23, 47, .35);
}
.path-card--gold .path-num { color: rgba(12, 23, 47, .55); }

.path-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(12, 23, 47, .06);
  color: rgba(12, 23, 47, .5);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.path-ico--gold {
  background: rgba(12, 23, 47, .14);
  color: #0c172f;
}

.path-card h3 {
  font-family: 'Montserrat'; font-weight: 600; font-size: 19px;
  line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 8px;
  color: rgba(12, 23, 47, .85);
}
.path-card--gold h3 { color: #0c172f; font-size: 21px; }

.path-quote {
  font-style: italic; font-size: 14px;
  color: rgba(12, 23, 47, .55);
  margin: 0 0 14px;
}
.path-card--gold .path-quote { color: rgba(12, 23, 47, .78); font-weight: 500; }

.path-result {
  font-size: 13.5px; line-height: 1.5;
  color: rgba(12, 23, 47, .68);
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(12, 23, 47, .08);
}
.path-result b { color: rgba(12, 23, 47, .85); font-weight: 600; }

.path-list {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 9px;
}
.path-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; line-height: 1.45;
  color: #0c172f; font-weight: 500;
}
.path-list li svg { flex-shrink: 0; margin-top: 3px; color: #0c172f; }

/* ── Team grid (cream section) ───────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.team-card { text-align: center; transition: opacity .25s; }
.team-card:hover .team-photo { box-shadow: 0 18px 36px -12px rgba(0,0,0,.3), 0 0 0 1px rgba(0,0,0,.05); }
.team-photo {
  width: 136px; height: 136px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg-soft);
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.04);
  background: linear-gradient(135deg, #d6b96a, #6b4d1c);
}
.team-photo svg { display: block; width: 100%; height: 100%; }
.team-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--fg);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.team-role {
  font-size: 13px;
  color: var(--fg-mute);
  margin: 0;
  line-height: 1.4;
}

/* ── Video testimonials grid ─────────────────────────────── */
.video-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .video-testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .video-testi-grid { grid-template-columns: 1fr; } }

.video-testi {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  text-align: left;
  color: inherit;
  font: inherit;
  position: relative;
}
.video-testi:hover {
  border-color: var(--line);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .5);
}
.video-thumb {
  aspect-ratio: 9 / 11;
  position: relative;
  overflow: hidden;
}
.video-thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 35%, rgba(255, 235, 180, .12), transparent 70%),
    linear-gradient(180deg, transparent 35%, rgba(7, 17, 42, .65) 100%);
  pointer-events: none;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #0c172f;
  border: none;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), background .25s;
  pointer-events: none;
}
.video-testi:hover .play-btn {
  background: linear-gradient(180deg, #EAD78C, #C29E55);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-duration {
  position: absolute;
  bottom: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: #fff;
  letter-spacing: .04em;
  border: 1px solid rgba(255, 255, 255, .1);
}
.video-meta { padding: 16px 20px 20px; }
.video-quote {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.video-name {
  font-size: 12.5px;
  color: var(--fg-mute);
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
