:root {
  color-scheme: light;

  /* Authentic Zivaro palette, sampled from the approved illustration series. */
  --zv-night-950: #0d162b;
  --zv-night-900: #112143;
  --zv-blue-800: #0f3a74;
  --zv-blue-600: #267596;
  --zv-cyan-500: #36b7c7;
  --zv-cream-50: #fff9ea;
  --zv-cream-100: #f9e6c2;
  --zv-cream-300: #d6c495;
  --zv-gold-300: #fce579;
  --zv-gold-500: #f3b333;
  --zv-gold-700: #c58839;
  --zv-wood-500: #72441d;
  --zv-wood-800: #3d2214;
  --zv-green-500: #279447;
  --zv-green-600: #65a935;
  --zv-violet-500: #6f45ad;
  --zv-coral-500: #d9563f;

  --color-ink: var(--zv-night-900);
  --color-paper: var(--zv-cream-50);
  --color-muted: #5f6f79;
  --color-line: var(--zv-cream-300);
  --color-accent: var(--zv-gold-500);
  --color-focus: var(--zv-cyan-500);

  --font-display: "Rubik", "Noto Sans Hebrew", Arial, sans-serif;
  --font-body: "Noto Sans Hebrew", "Rubik", Arial, sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;

  --shadow-soft: 0 1.125rem 3.125rem rgb(13 22 43 / 18%);
  --shadow-game: 0 0.5rem 0 rgb(61 34 20 / 22%);
  --shadow-gold: 0 0 1.75rem rgb(243 179 51 / 28%);

  --page-width: 77.5rem;
  --gutter: clamp(1rem, 4vw, 2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 0.2rem solid var(--color-focus);
  outline-offset: 0.2rem;
}

.shell {
  width: min(100% - (2 * var(--gutter)), var(--page-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-inline-start: var(--gutter);
  inset-block-start: 0.5rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--zv-night-950);
  color: var(--zv-cream-50);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: min(100% - (2 * var(--gutter)), var(--page-width));
  margin-inline: auto;
}

.site-header {
  min-height: 5rem;
  border-bottom: 1px solid rgb(114 68 29 / 22%);
  background: rgb(255 249 234 / 96%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--zv-night-950);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.brand::before {
  content: "★";
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 0.18rem solid var(--zv-wood-800);
  border-radius: 0.85rem;
  background: radial-gradient(circle at 36% 32%, #fff8b0 0 15%, var(--zv-gold-500) 42%, var(--zv-gold-700) 100%);
  box-shadow: 0.18rem 0.25rem 0 var(--zv-wood-500), var(--shadow-gold);
  color: var(--zv-night-950);
  letter-spacing: normal;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  border-bottom: 0.18rem solid transparent;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--zv-gold-500);
  color: var(--zv-blue-800);
}

main {
  min-height: calc(100vh - 10rem);
}

.site-footer {
  min-height: 5rem;
  border-top: 1px solid rgb(114 68 29 / 22%);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.btn {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.35rem;
  border: 0.14rem solid var(--zv-wood-800);
  border-radius: var(--radius-pill);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, var(--zv-gold-300), var(--zv-gold-500));
  box-shadow: 0 0.38rem 0 var(--zv-wood-500), var(--shadow-gold);
  color: var(--zv-night-950);
}

.btn-secondary {
  border-color: rgb(249 230 194 / 58%);
  background: rgb(255 249 234 / 8%);
  box-shadow: 0 0.3rem 0 rgb(13 9 11 / 35%);
  color: var(--zv-cream-50);
}

.zv-announcement {
  padding: 0.5rem var(--gutter);
  border-bottom: 1px solid rgb(243 179 51 / 48%);
  background: linear-gradient(90deg, var(--zv-night-950), var(--zv-blue-800), var(--zv-night-950));
  color: var(--zv-cream-100);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 800;
}

.zv-announcement strong {
  color: var(--zv-gold-300);
}

.zv-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 8% 23%, rgb(252 229 121 / 92%) 0 0.25rem, rgb(243 179 51 / 18%) 0.3rem 1.75rem, transparent 1.9rem),
    radial-gradient(circle at 88% 22%, rgb(54 183 199 / 24%) 0 5.3rem, transparent 5.45rem),
    radial-gradient(circle at 73% 80%, rgb(111 69 173 / 22%) 0 6.5rem, transparent 6.7rem),
    linear-gradient(135deg, var(--zv-night-950), var(--zv-night-900) 48%, var(--zv-blue-800));
  color: var(--zv-cream-50);
}

.zv-hero::before,
.zv-hero::after {
  content: "✦";
  position: absolute;
  color: var(--zv-gold-300);
  text-shadow: 0 0 0.75rem var(--zv-gold-500), 0 0 1.75rem var(--zv-gold-500);
}

.zv-hero::before {
  inset-block-start: 24%;
  inset-inline-end: 4%;
  font-size: 1.8rem;
}

.zv-hero::after {
  inset-inline-start: 47%;
  inset-block-end: 12%;
  font-size: 1.2rem;
}

.zv-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.zv-eyebrow {
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border: 0.12rem solid var(--zv-gold-500);
  border-radius: var(--radius-pill);
  background: rgb(15 58 116 / 72%);
  box-shadow: inset 0 0 0 0.12rem rgb(252 229 121 / 16%);
  color: var(--zv-cream-100);
  font-size: 0.875rem;
  font-weight: 900;
}

.zv-title {
  max-width: 42rem;
  margin: 1.1rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.zv-title-cyan {
  color: #86bfbf;
}

.zv-title-gold {
  color: var(--zv-gold-300);
  text-shadow: 0 0 1.1rem rgb(243 179 51 / 28%);
}

.zv-lead {
  max-width: 38rem;
  margin: 0;
  color: var(--zv-cream-100);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
}

.zv-actions,
.zv-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.zv-actions {
  margin-block-start: var(--space-6);
}

.zv-trust {
  margin-block-start: var(--space-5);
  color: #d8e5e2;
  font-size: 0.875rem;
  font-weight: 750;
}

.zv-trust span::before {
  content: "✓";
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  margin-inline-end: 0.35rem;
  place-items: center;
  border-radius: 50%;
  background: var(--zv-gold-500);
  color: var(--zv-night-950);
}

.zv-game-board {
  position: relative;
  min-height: 29rem;
  padding: var(--space-5);
  border: 0.45rem solid var(--zv-wood-500);
  outline: 0.18rem solid var(--zv-gold-500);
  border-radius: 2.4rem;
  background: linear-gradient(180deg, var(--zv-cream-50), var(--zv-cream-100));
  box-shadow: inset 0 0 0 0.18rem var(--zv-wood-800), 0.9rem 1rem 0 rgb(13 22 43 / 46%), var(--shadow-gold);
  color: var(--zv-night-900);
}

.zv-image-placeholder {
  min-height: 13rem;
  display: grid;
  place-items: center;
  padding: var(--space-5);
  border: 0.14rem dashed #8f5b27;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 45%, rgb(252 229 121 / 28%), transparent 44%),
    linear-gradient(135deg, rgb(38 117 150 / 10%) 25%, transparent 25%) 0 0 / 1.6rem 1.6rem,
    var(--zv-cream-50);
  color: #635943;
  text-align: center;
  font-weight: 700;
}

.zv-image-placeholder strong {
  display: block;
  color: var(--zv-night-950);
  font-size: 1.05rem;
}

.zv-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-block-start: var(--space-5);
}

.zv-level {
  min-height: 4.5rem;
  display: grid;
  place-items: center;
  border: 0.18rem solid var(--zv-cream-100);
  border-radius: var(--radius-md);
  box-shadow: 0 0.38rem 0 rgb(61 34 20 / 32%), inset 0 0 0.7rem rgb(255 255 255 / 24%);
  color: #fff;
  font-weight: 950;
  text-align: center;
}

.zv-level:nth-child(1) { background: var(--zv-blue-600); }
.zv-level:nth-child(2) { background: var(--zv-gold-500); color: var(--zv-wood-800); }
.zv-level:nth-child(3) { background: var(--zv-green-500); }
.zv-level:nth-child(4) { background: var(--zv-violet-500); }
.zv-level:nth-child(5) { background: var(--zv-blue-800); }

.zv-section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: linear-gradient(180deg, var(--zv-cream-50), var(--zv-cream-100));
}

.zv-section-heading {
  margin: 0 0 var(--space-6);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.zv-skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.zv-skill-card {
  min-height: 13rem;
  padding: var(--space-5);
  border: 0.25rem solid var(--zv-wood-500);
  outline: 0.12rem solid var(--zv-gold-500);
  border-radius: 1.65rem;
  box-shadow: var(--shadow-game);
}

.zv-skill-card:nth-child(1) { background: linear-gradient(180deg, #d9f2ef, #86bfbf); }
.zv-skill-card:nth-child(2) { background: linear-gradient(180deg, var(--zv-cream-50), var(--zv-gold-300)); }
.zv-skill-card:nth-child(3) { background: linear-gradient(180deg, #eee6f8, #cdb7ea); }

.zv-skill-card h3 {
  margin: 0 0 var(--space-2);
  font-size: 1.35rem;
}

.zv-skill-card p {
  margin: 0;
  color: #3f4f59;
  font-weight: 600;
}

.zv-age-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-block-end: var(--space-5);
}

.zv-age-chip {
  padding: 0.5rem 1rem;
  border: 0.12rem solid #d1a151;
  border-radius: var(--radius-pill);
  background: var(--zv-cream-50);
  color: var(--zv-night-950);
  font-weight: 900;
}

.zv-age-chip.is-active {
  border-color: var(--zv-gold-500);
  background: var(--zv-blue-800);
  box-shadow: 0 0.25rem 0 var(--zv-wood-500);
  color: #fff;
}

@media (max-width: 56.25rem) {
  .zv-hero-grid {
    grid-template-columns: 1fr;
  }

  .zv-hero-copy {
    text-align: center;
  }

  .zv-eyebrow,
  .zv-lead {
    margin-inline: auto;
  }

  .zv-actions,
  .zv-trust {
    justify-content: center;
  }

  .zv-game-board {
    width: min(100%, 38rem);
    margin-inline: auto;
  }

  .zv-skill-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 42rem) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1rem;
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 35rem) {
  .zv-actions {
    display: grid;
  }

  .zv-actions .btn {
    width: 100%;
  }

  .zv-title {
    font-size: 2.85rem;
  }

  .zv-game-board {
    min-height: 25rem;
    padding: var(--space-4);
    border-radius: 1.75rem;
  }

  .zv-levels {
    gap: 0.35rem;
  }

  .zv-level {
    min-height: 3.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Homepage */
.home-header {
  position: relative;
  z-index: 50;
  min-height: 5.5rem;
}

.primary-navigation {
  margin-inline-start: auto;
}

.header-cta {
  min-height: 2.75rem;
  padding-inline: 1rem;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  gap: var(--space-2);
  min-height: 2.75rem;
  padding-inline: 0.9rem;
  border: 0.12rem solid var(--zv-wood-500);
  border-radius: var(--radius-pill);
  background: var(--zv-cream-50);
  color: var(--zv-night-950);
  font-weight: 850;
}

.game-board-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-block-end: var(--space-4);
}

.game-star,
.game-score {
  display: grid;
  min-width: 2.8rem;
  min-height: 2.8rem;
  place-items: center;
  border: 0.12rem solid var(--zv-wood-500);
  border-radius: var(--radius-sm);
  background: var(--zv-gold-300);
  color: var(--zv-night-950);
  font-weight: 950;
}

.game-progress {
  flex: 1;
  height: 0.75rem;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: var(--zv-cream-300);
}

.game-progress i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--zv-blue-600), var(--zv-cyan-500), var(--zv-green-600));
}

.home-image-placeholder {
  margin: 0;
}

.home-image-placeholder small,
.large-image-placeholder small {
  display: block;
  margin-block-start: var(--space-2);
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.zv-level small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.88;
}

.home-intro {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  border-bottom: 1px solid rgb(114 68 29 / 16%);
  background:
    radial-gradient(circle at 8% 25%, rgb(252 229 121 / 24%) 0 0.45rem, transparent 0.52rem),
    radial-gradient(circle at 92% 70%, rgb(54 183 199 / 16%) 0 0.7rem, transparent 0.78rem),
    var(--zv-cream-50);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.section-kicker {
  margin: 0 0 var(--space-2);
  color: var(--zv-blue-800);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.intro-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.intro-answer {
  margin: 0;
  color: #34475b;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-weight: 600;
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
  margin-block-end: var(--space-6);
}

.section-heading-row .zv-section-heading {
  margin-block-end: 0;
}

.section-heading-row > p,
.section-lead {
  margin: 0;
  color: var(--color-muted);
  font-weight: 600;
}

/* Tablet and desktop section introductions: keep explanatory copy below its heading. */
@media (min-width: 40.01rem) {
  .intro-grid,
  .section-heading-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    justify-items: center;
    gap: clamp(0.9rem, 2vw, 1.4rem);
    text-align: center;
  }

  .intro-answer,
  .section-heading-row > p {
    width: min(100%, 70ch);
    margin-inline: auto;
  }

  main > section > .shell > .section-kicker,
  main > section > .shell > .zv-section-heading,
  main > section > .shell > .section-lead {
    margin-inline: auto;
    text-align: center;
  }
}

.section-lead {
  max-width: 48rem;
  margin-block: calc(-1 * var(--space-4)) var(--space-6);
}

.home-skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.home-skill-card {
  min-height: 17rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: var(--space-5);
  border: 0.22rem solid var(--zv-wood-500);
  outline: 0.1rem solid var(--zv-gold-500);
  border-radius: 1.65rem;
  box-shadow: var(--shadow-game);
}

.home-skill-card h3 {
  margin: var(--space-4) 0 var(--space-2);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.home-skill-card p {
  margin: 0 0 var(--space-4);
  color: #3f4f59;
  font-weight: 600;
}

.home-skill-card a {
  margin-block-start: auto;
  color: var(--zv-blue-800);
  font-size: 0.9rem;
  font-weight: 850;
}

.skill-symbol {
  min-width: 3.5rem;
  min-height: 3.5rem;
  display: inline-grid;
  place-items: center;
  border: 0.15rem solid var(--zv-wood-800);
  border-radius: 1.05rem;
  background: var(--zv-cream-50);
  box-shadow: 0 0.25rem 0 rgb(61 34 20 / 18%);
  font-size: 1.35rem;
  font-weight: 950;
}

.skill-hebrew { background: linear-gradient(180deg, #d9f2ef, #86bfbf); }
.skill-math { background: linear-gradient(180deg, var(--zv-cream-50), var(--zv-gold-300)); }
.skill-logic { background: linear-gradient(180deg, #eee6f8, #cdb7ea); }
.skill-world { background: linear-gradient(180deg, #dff2d7, #a8d28a); }
.skill-creative { background: linear-gradient(180deg, #fbe2d6, #e9ab86); }
.skill-computer { background: linear-gradient(180deg, #dbe7fa, #95b7e6); }

.ages-section,
.activities-section,
.faq-section {
  padding-block: clamp(3.75rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 4% 14%, rgb(252 229 121 / 18%) 0 1.1rem, transparent 1.18rem),
    radial-gradient(circle at 96% 82%, rgb(54 183 199 / 12%) 0 1.5rem, transparent 1.6rem),
    var(--zv-cream-50);
}

.age-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.age-card {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border: 0.13rem solid var(--zv-cream-300);
  border-radius: var(--radius-lg);
  background: #fffdf5;
  box-shadow: var(--shadow-soft);
}

.age-card.is-featured {
  border: 0.25rem solid var(--zv-wood-500);
  outline: 0.1rem solid var(--zv-gold-500);
  background: linear-gradient(180deg, var(--zv-gold-300), var(--zv-cream-50));
  transform: translateY(-0.6rem);
}

.age-number {
  width: fit-content;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--zv-blue-800);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 950;
}

.age-card h3 {
  margin: var(--space-5) 0 var(--space-2);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
}

.age-card p {
  margin: 0 0 var(--space-5);
  color: var(--color-muted);
  font-weight: 600;
}

.age-card a {
  margin-block-start: auto;
  color: var(--zv-blue-800);
  font-weight: 850;
}

.how-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.75rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 7% 30%, rgb(243 179 51 / 18%), transparent 19%),
    linear-gradient(135deg, var(--zv-night-950), var(--zv-blue-800));
  color: var(--zv-cream-50);
}

.how-section .section-kicker {
  color: var(--zv-gold-300);
}

.how-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.how-copy > p:last-child {
  color: var(--zv-cream-100);
  font-size: 1.08rem;
}

.step-list {
  display: grid;
  gap: var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid rgb(249 230 194 / 24%);
  border-radius: var(--radius-md);
  background: rgb(255 249 234 / 8%);
}

.step-list li > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 0.12rem solid var(--zv-wood-500);
  border-radius: 50%;
  background: var(--zv-gold-300);
  color: var(--zv-night-950);
  font-family: var(--font-display);
  font-weight: 950;
}

.step-list h3,
.step-list p {
  margin: 0;
}

.step-list h3 {
  margin-block-end: var(--space-1);
  font-size: 1.15rem;
}

.step-list p {
  color: var(--zv-cream-100);
}

.school-section {
  padding-block: clamp(3.75rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 92% 14%, rgb(243 179 51 / 20%) 0 0.55rem, transparent 0.63rem),
    radial-gradient(circle at 8% 82%, rgb(111 69 173 / 10%) 0 1.2rem, transparent 1.3rem),
    linear-gradient(180deg, var(--zv-cream-100), var(--zv-cream-50));
}

.feature-grid,
.tablet-grid,
.early-access-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.large-image-placeholder {
  min-height: 29rem;
  display: grid;
  place-items: center;
  margin: 0;
  padding: var(--space-6);
  border: 0.45rem solid var(--zv-wood-500);
  outline: 0.18rem solid var(--zv-gold-500);
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 50% 42%, rgb(252 229 121 / 35%), transparent 36%),
    linear-gradient(135deg, rgb(38 117 150 / 12%) 25%, transparent 25%) 0 0 / 2rem 2rem,
    var(--zv-cream-50);
  box-shadow: inset 0 0 0 0.18rem var(--zv-wood-800), var(--shadow-soft);
  color: #635943;
  text-align: center;
  font-weight: 650;
}

.large-image-placeholder strong {
  display: block;
  margin-block-end: var(--space-2);
  color: var(--zv-night-950);
  font-size: 1.15rem;
}

.feature-copy > p:not(.section-kicker),
.tablet-grid p,
.early-access-copy > p:not(.section-kicker) {
  color: var(--color-muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: var(--space-2);
  margin-block: var(--space-5);
  padding: 0;
  list-style: none;
}

.check-list li::before {
  content: "★";
  margin-inline-end: var(--space-2);
  color: var(--zv-gold-500);
  text-shadow: 0 0 0.6rem rgb(243 179 51 / 45%);
}

.text-link {
  color: var(--zv-blue-800);
  font-weight: 900;
}

.activity-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.activity-placeholder {
  overflow: hidden;
  margin: 0;
  border: 0.22rem solid var(--zv-wood-500);
  outline: 0.1rem solid var(--zv-gold-500);
  border-radius: 1.65rem;
  background: #fffdf5;
  box-shadow: var(--shadow-game);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.activity-placeholder:nth-child(1) { transform: rotate(0.35deg); }
.activity-placeholder:nth-child(2) { transform: rotate(-0.45deg); }
.activity-placeholder:nth-child(3) { transform: rotate(0.3deg); }

.activity-placeholder:hover {
  transform: translateY(-0.25rem) rotate(0deg);
  box-shadow: 0 0.8rem 2rem rgb(61 34 20 / 16%);
}

.placeholder-screen {
  min-height: 14rem;
  display: grid;
  place-items: center;
  border-bottom: 0.16rem solid var(--zv-wood-500);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 950;
}

.placeholder-blue { background: linear-gradient(135deg, #d9f2ef, #86bfbf); }
.placeholder-gold { background: linear-gradient(135deg, var(--zv-cream-50), var(--zv-gold-300)); }
.placeholder-violet { background: linear-gradient(135deg, #eee6f8, #cdb7ea); }

.activity-placeholder figcaption {
  padding: var(--space-5);
}

.activity-placeholder strong,
.activity-placeholder span {
  display: block;
}

.activity-placeholder strong {
  margin-block-end: var(--space-1);
  font-size: 1.15rem;
}

.activity-placeholder span {
  color: var(--color-muted);
}

.tablet-section {
  padding-block: clamp(3.75rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 8% 20%, rgb(252 229 121 / 30%) 0 0.65rem, transparent 0.73rem),
    radial-gradient(circle at 94% 78%, rgb(111 69 173 / 13%) 0 1.2rem, transparent 1.3rem),
    linear-gradient(135deg, #eef9f5, #e6f2f4);
}

.tablet-visual {
  position: relative;
  min-height: 25rem;
  display: grid;
  place-items: center;
}

.tablet-frame {
  position: relative;
  z-index: 2;
  width: min(90%, 28rem);
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border: 0.75rem solid var(--zv-night-950);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 45%, rgb(252 229 121 / 35%), transparent 35%),
    linear-gradient(135deg, var(--zv-blue-800), var(--zv-night-900));
  box-shadow: 0 1.2rem 0 rgb(15 58 116 / 26%), var(--shadow-soft);
}

.tablet-frame i {
  color: var(--zv-gold-300);
  font-size: 4rem;
  font-style: normal;
  text-shadow: 0 0 1.5rem var(--zv-gold-500);
}

.tablet-frame::before {
  content: "א   1+2   ♪";
  position: absolute;
  inset-block-end: 1.1rem;
  padding: 0.38rem 0.85rem;
  border: 0.12rem solid var(--zv-gold-500);
  border-radius: var(--radius-pill);
  background: rgb(255 249 234 / 92%);
  box-shadow: 0 0.22rem 0 rgb(61 34 20 / 28%);
  color: var(--zv-blue-800);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.tablet-frame::after {
  content: "";
  position: absolute;
  inset-inline-end: 0.8rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--zv-cyan-500);
  box-shadow: 0 1rem 0 var(--zv-gold-500), 0 2rem 0 var(--zv-green-500);
}

.tablet-glow {
  position: absolute;
  width: 70%;
  height: 55%;
  border-radius: 50%;
  background: rgb(54 183 199 / 32%);
  filter: blur(2rem);
}

.device-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: var(--space-4) 0 var(--space-5);
  padding: 0;
  list-style: none;
}

.device-chips li {
  padding: 0.48rem 0.78rem;
  border: 1px solid rgb(38 117 150 / 28%);
  border-radius: var(--radius-pill);
  background: rgb(255 253 245 / 82%);
  box-shadow: 0 0.18rem 0 rgb(38 117 150 / 14%);
  color: var(--zv-blue-800);
  font-size: 0.82rem;
  font-weight: 850;
}

.early-access-section {
  padding-block: clamp(3.75rem, 8vw, 6rem);
  border-top: 0.32rem solid var(--zv-gold-500);
  background:
    radial-gradient(circle at 10% 30%, rgb(243 179 51 / 16%), transparent 20%),
    linear-gradient(135deg, var(--zv-night-950), var(--zv-blue-800));
  color: var(--zv-cream-50);
}

.early-access-section .section-kicker {
  color: var(--zv-gold-300);
}

.early-access-copy > p:not(.section-kicker) {
  color: var(--zv-cream-100);
}

.early-access-note {
  margin-block-start: var(--space-5);
  padding: var(--space-4);
  border: 1px solid rgb(243 179 51 / 45%);
  border-radius: var(--radius-md);
  background: rgb(249 230 194 / 10%);
  color: var(--zv-cream-100);
}

.early-access-note strong {
  display: block;
  color: var(--zv-gold-300);
}

.waitlist-form {
  padding: var(--space-6);
  border: 0.32rem solid var(--zv-wood-500);
  outline: 0.12rem solid var(--zv-gold-500);
  border-radius: 1.9rem;
  background: var(--zv-cream-50);
  box-shadow: 0.7rem 0.8rem 0 var(--zv-wood-800);
  color: var(--zv-night-900);
}

.waitlist-form h3 {
  margin: 0 0 var(--space-5);
  font-size: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-grid label:not(.consent-field) {
  display: grid;
  gap: var(--space-1);
  color: #4d5871;
  font-size: 0.86rem;
  font-weight: 850;
}

.form-grid input:not([type="checkbox"]),
.form-grid select {
  width: 100%;
  min-height: 3rem;
  padding-inline: 0.8rem;
  border: 0.12rem solid var(--zv-cream-300);
  border-radius: var(--radius-sm);
  background: #fffdf5;
  color: var(--zv-night-900);
}

.form-field-full {
  grid-column: 1 / -1;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: var(--space-2);
  color: #4d5871;
  font-size: 0.85rem;
  font-weight: 650;
}

.consent-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin-block-start: 0.15rem;
}

.form-submit {
  width: 100%;
  margin-block-start: var(--space-5);
}

.form-help,
.form-status {
  margin: var(--space-3) 0 0;
  font-size: 0.78rem;
}

.form-help {
  color: var(--color-muted);
}

.form-status {
  min-height: 1.3em;
  color: var(--zv-green-500);
  font-weight: 800;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

.faq-list details {
  border: 0.12rem solid var(--zv-cream-300);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fffdf5, #f8fbf8);
  box-shadow: 0 0.25rem 0.8rem rgb(15 58 116 / 5%);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after,
.play-formats summary::after {
  min-width: max-content;
  padding: 0.38rem 0.65rem;
  border: 1px solid rgb(38 117 150 / 24%);
  border-radius: var(--radius-pill);
  background: #edf8f3;
  color: var(--zv-blue-800);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 900;
}

.faq-list summary::after {
  content: "פתחו תשובה ↓";
}

.faq-list details[open] summary::after {
  content: "סגרו תשובה ↑";
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--zv-cream-300);
  color: var(--zv-blue-800);
}

.faq-list details p {
  margin: 0;
  padding: var(--space-4) var(--space-5) var(--space-5);
  color: var(--color-muted);
}

.home-footer {
  padding-block: var(--space-8) var(--space-5);
  background: var(--zv-night-950);
  color: var(--zv-cream-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: var(--space-7);
}

.footer-brand {
  color: var(--zv-cream-50);
}

.footer-grid h2 {
  margin: 0 0 var(--space-3);
  color: var(--zv-gold-300);
  font-size: 1rem;
}

.footer-grid ul {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a {
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--zv-gold-300);
}

.footer-grid span {
  color: #96a6b2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-block-start: var(--space-7);
  padding-block-start: var(--space-4);
  border-top: 1px solid rgb(249 230 194 / 18%);
  color: #96a6b2;
  font-size: 0.82rem;
}

@media (max-width: 64rem) {
  .home-skill-grid,
  .age-card-grid,
  .activity-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .age-card.is-featured {
    transform: none;
  }
}

@media (max-width: 52rem) {
  .home-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-block: var(--space-3);
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-inline-start: auto;
  }

  .primary-navigation {
    width: 100%;
    display: none;
    order: 5;
    margin: 0;
    padding-block-start: var(--space-3);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation .site-nav {
    display: grid;
    gap: 0;
  }

  .primary-navigation .site-nav a {
    display: block;
    padding-block: 0.7rem;
    border-bottom: 1px solid rgb(114 68 29 / 18%);
  }

  .header-cta {
    display: none;
  }

  .intro-grid,
  .section-heading-row,
  .how-grid,
  .feature-grid,
  .tablet-grid,
  .early-access-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tablet-visual {
    min-height: 19rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 40rem) {
  .home-skill-grid,
  .age-card-grid,
  .activity-preview-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .home-skill-card,
  .age-card {
    min-height: auto;
  }

  .large-image-placeholder {
    min-height: 22rem;
  }

  .placeholder-screen {
    min-height: 11rem;
  }
}

/* About, FAQ, contact and legal information pages. */
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.info-card,
.contact-card,
.draft-notice {
  border: 0.14rem solid rgb(114 68 29 / 22%);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 0.55rem 1.6rem rgb(38 117 150 / 10%);
}

.info-card {
  position: relative;
  min-height: 12rem;
  padding: var(--space-6);
  overflow: hidden;
}

.info-card::before {
  content: attr(data-symbol);
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  margin-block-end: var(--space-4);
  place-items: center;
  border: 0.14rem solid var(--zv-wood-500);
  border-radius: 1rem;
  background: var(--zv-gold-300);
  color: var(--zv-blue-800);
  font-size: 1.45rem;
  font-weight: 950;
  transform: rotate(-3deg);
}

.info-card:nth-child(3n + 2)::before {
  background: #d9f2ef;
  transform: rotate(3deg);
}

.info-card:nth-child(3n)::before { background: #eadff7; }
.info-card h2,
.info-card h3 { margin: 0 0 var(--space-2); }
.info-card p { margin: 0; color: #41535c; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: var(--space-6);
  align-items: start;
}

.contact-card { padding: var(--space-6); }
.contact-card h2 { margin-block-start: 0; }
.contact-card ul { margin-block-end: 0; }

.form-grid textarea {
  width: 100%;
  min-height: 9rem;
  resize: vertical;
  padding: 0.8rem 0.95rem;
  border: 0.13rem solid var(--zv-cream-300);
  border-radius: var(--radius-sm);
  background: #fffefa;
  color: var(--color-ink);
}

.form-hint,
.legal-meta {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.draft-notice {
  margin-block-end: var(--space-6);
  padding: var(--space-4) var(--space-5);
  border-color: var(--zv-gold-700);
  background: #fff2bd;
}

.draft-notice strong { display: block; margin-block-end: 0.2rem; }
.draft-notice p { margin: 0; }

.legal-page .article-prose { max-width: 55rem; }
.legal-page .article-section:first-child { margin-block-start: 0; }
.legal-page .article-section a,
.legal-inline-links a { color: var(--zv-blue-800); font-weight: 800; }

.legal-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin-block-start: var(--space-3);
}

@media (max-width: 64rem) {
  .info-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 52rem) {
  .info-card-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .info-card::before { margin-inline: auto; }
  .info-card,
  .contact-card,
  .draft-notice,
  .legal-page .article-prose { text-align: center; }
  .contact-card ul,
  .legal-page .article-section ul,
  .legal-page .article-section ol { padding: 0; list-style-position: inside; }
  .legal-inline-links { justify-content: center; }
}

/* Shared sticky navigation — soft final-product direction. */
.home-header {
  width: 100%;
  max-width: none;
  min-height: 5.1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1.25rem);
  margin: 0;
  padding: 0.55rem max(var(--gutter), calc((100vw - var(--page-width)) / 2));
  border-bottom: 1px solid rgb(197 136 57 / 24%);
  background: rgb(255 252 242 / 92%);
  box-shadow: 0 0.45rem 1.6rem rgb(15 58 116 / 8%);
  backdrop-filter: blur(1rem) saturate(1.1);
}

.home-header .home-brand {
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0.07em;
}

.home-header .brand-character-placeholder {
  width: 2.9rem;
  height: 2.9rem;
  border-color: rgb(114 68 29 / 48%);
  background:
    radial-gradient(circle at 55% 35%, rgb(252 229 121 / 72%) 0 20%, transparent 21%),
    linear-gradient(145deg, #fffefa, #f7ead1);
  box-shadow: 0 0.18rem 0 rgb(114 68 29 / 15%), 0 0.65rem 1.35rem rgb(38 117 150 / 10%);
}

.home-header .primary-navigation {
  min-width: 0;
  margin: 0;
}

.home-header .site-nav {
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.15rem;
}

.home-header .site-nav a {
  position: relative;
  display: block;
  padding: 0.55rem clamp(0.5rem, 0.85vw, 0.75rem);
  border: 0;
  border-radius: var(--radius-pill);
  color: #3f5360;
  font-size: clamp(0.76rem, 0.86vw, 0.9rem);
  line-height: 1.25;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.home-header .site-nav a:hover,
.home-header .site-nav a:focus-visible {
  border-color: transparent;
  background: #f7eac8;
  color: var(--zv-blue-800);
  transform: translateY(-0.06rem);
}

.home-header .site-nav a[aria-current="page"] {
  padding-inline-start: 1.4rem;
  background: #ddf2ef;
  color: var(--zv-blue-800);
  font-weight: 900;
}

.home-header .site-nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  inset-inline-start: 0.65rem;
  inset-block-start: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--zv-coral-500);
  box-shadow: 0 0 0 0.18rem rgb(217 86 63 / 12%);
  transform: translateY(-50%);
}

.home-header .header-cta {
  min-height: 2.65rem;
  padding-inline: 1rem;
  border-color: #d4a84a;
  box-shadow: 0 0.2rem 0 #c28b2d, 0 0.55rem 1.1rem rgb(243 179 51 / 16%);
  font-size: 0.88rem;
}

.mobile-menu-toggle {
  justify-content: center;
  gap: 0.55rem;
  border-color: rgb(38 117 150 / 35%);
  background: #fffdf7;
  box-shadow: 0 0.3rem 0 rgb(38 117 150 / 12%);
}

.menu-icon {
  position: relative;
  width: 1.15rem;
  height: 0.9rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon i {
  display: block;
  width: 100%;
  height: 0.12rem;
  border-radius: var(--radius-pill);
  background: var(--zv-blue-800);
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(1) {
  transform: translateY(0.39rem) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(3) {
  transform: translateY(-0.39rem) rotate(-45deg);
}

@media (max-width: 70rem) {
  .home-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 4.65rem;
    padding-block: 0.45rem;
  }

  .home-header .home-brand {
    justify-self: start;
  }

  .home-header .mobile-menu-toggle {
    display: inline-flex;
    justify-self: end;
    margin: 0;
  }

  .home-header .header-cta {
    display: none;
  }

  .home-header .primary-navigation {
    position: absolute;
    inset-block-start: calc(100% + 0.55rem);
    inset-inline: 0;
    z-index: 95;
    width: min(calc(100% - (2 * var(--gutter))), 34rem);
    max-height: calc(100dvh - 6.5rem);
    display: none;
    order: initial;
    margin-inline: auto;
    padding: 0.75rem;
    overflow-y: auto;
    border: 1px solid rgb(197 136 57 / 28%);
    border-radius: 1.4rem;
    background: rgb(255 253 247 / 98%);
    box-shadow: 0 1.2rem 3rem rgb(13 22 43 / 22%);
  }

  .home-header .primary-navigation.is-open {
    display: block;
    animation: menu-arrive 160ms ease-out both;
  }

  .home-header .primary-navigation .site-nav {
    display: grid;
    gap: 0.28rem;
  }

  .home-header .primary-navigation .site-nav a {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
    border: 0;
    background: #fffaf0;
    text-align: center;
    white-space: normal;
  }

  .home-header .primary-navigation .site-nav a[aria-current="page"] {
    background: #ddf2ef;
  }

  .home-header .primary-navigation .site-nav a[aria-current="page"]::before {
    position: static;
    margin-inline-end: 0.55rem;
    transform: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgb(13 22 43 / 24%);
    backdrop-filter: blur(0.12rem);
  }
}

@keyframes menu-arrive {
  from { opacity: 0; transform: translateY(-0.4rem) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .home-header .site-nav a,
  .menu-icon i,
  .home-header .primary-navigation.is-open {
    transition: none;
    animation: none;
  }
}

/* Structured header navigation. */
.home-header .site-nav > li {
  position: relative;
}

.nav-menu > summary {
  position: relative;
  min-height: 2.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem clamp(0.5rem, 0.85vw, 0.75rem);
  border-radius: var(--radius-pill);
  color: #3f5360;
  font-size: clamp(0.76rem, 0.86vw, 0.9rem);
  font-weight: 750;
  line-height: 1.25;
  list-style: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-menu > summary::-webkit-details-marker {
  display: none;
}

.nav-menu > summary span {
  color: var(--zv-blue-600);
  font-size: 0.9rem;
  transition: transform 160ms ease;
}

.nav-menu > summary:hover,
.nav-menu > summary:focus-visible,
.nav-menu[open] > summary {
  background: #f7eac8;
  color: var(--zv-blue-800);
}

.nav-menu[open] > summary span {
  transform: rotate(180deg);
}

.nav-menu[data-active="true"] > summary {
  background: #ddf2ef;
  color: var(--zv-blue-800);
  font-weight: 900;
}

.nav-menu[data-active="true"] > summary::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--zv-coral-500);
  box-shadow: 0 0 0 0.18rem rgb(217 86 63 / 12%);
}

.nav-dropdown {
  position: absolute;
  inset-block-start: calc(100% + 0.65rem);
  left: 50%;
  z-index: 110;
  width: min(20rem, calc(100vw - (2 * var(--gutter))));
  max-height: min(32rem, calc(100vh - 7rem));
  padding: 0.65rem;
  overflow-y: auto;
  border: 1px solid rgb(197 136 57 / 26%);
  border-radius: 1.25rem;
  background: rgb(255 253 247 / 99%);
  box-shadow: 0 1.2rem 3rem rgb(13 22 43 / 20%);
  transform: translateX(-50%);
}

.nav-dropdown ul {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-header .nav-dropdown a {
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.6rem 0.8rem;
  border-radius: 0.85rem;
  background: transparent;
  color: #3f5360;
  font-size: 0.84rem;
  text-align: start;
  white-space: normal;
}

.home-header .nav-dropdown a:hover,
.home-header .nav-dropdown a:focus-visible {
  background: #f7eac8;
  transform: none;
}

.home-header .nav-dropdown a[aria-current="page"] {
  background: #ddf2ef;
  color: var(--zv-blue-800);
}

@media (max-width: 70rem) {
  .home-header .primary-navigation .site-nav > li {
    width: 100%;
  }

  .nav-menu > summary {
    min-height: 3rem;
    padding: 0.72rem 1rem;
    background: #fffaf0;
    text-align: center;
    white-space: normal;
  }

  .nav-menu[data-active="true"] > summary {
    background: #ddf2ef;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    max-height: none;
    margin-block-start: 0.3rem;
    padding: 0.4rem;
    overflow: visible;
    border-color: rgb(38 117 150 / 16%);
    border-radius: 1rem;
    background: #edf8f3;
    box-shadow: none;
    transform: none;
  }

  .home-header .nav-dropdown a {
    min-height: 2.55rem;
    justify-content: center;
    background: rgb(255 255 255 / 62%);
    font-size: 0.82rem;
    text-align: center;
  }
}

/* One complete site footer for every page. */
.home-footer {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5rem) var(--space-5);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgb(54 183 199 / 14%), transparent 20rem),
    radial-gradient(circle at 92% 82%, rgb(252 229 121 / 12%), transparent 18rem),
    linear-gradient(145deg, #102444, #153b61 58%, #17465d);
  color: #eaf4f2;
}

.home-footer::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--zv-gold-500), var(--zv-cyan-500), var(--zv-violet-500), var(--zv-coral-500));
}

.footer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.footer-brand-panel > p {
  max-width: 44rem;
  margin: var(--space-4) 0;
  color: #c8dcdf;
  font-weight: 600;
}

.footer-brand {
  color: #fffdf7;
}

.footer-brand .brand-character-placeholder {
  width: 3rem;
  height: 3rem;
  border-color: rgb(252 229 121 / 55%);
  background: rgb(255 249 234 / 10%);
  color: var(--zv-gold-300);
}

.footer-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-facts span {
  padding: 0.38rem 0.7rem;
  border: 1px solid rgb(54 183 199 / 28%);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 7%);
  color: #d8eceb;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-action {
  padding: var(--space-5);
  border: 1px solid rgb(252 229 121 / 24%);
  border-radius: 1.5rem;
  background: rgb(255 255 255 / 8%);
  box-shadow: 0 1rem 2.5rem rgb(13 22 43 / 16%);
}

.footer-action strong {
  display: block;
  color: var(--zv-gold-300);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.footer-action p {
  margin: 0.4rem 0 var(--space-4);
  color: #c8dcdf;
}

.footer-action .btn-primary {
  min-height: 2.75rem;
  font-size: 0.86rem;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-block-start: clamp(2.5rem, 6vw, 4.5rem);
  padding-block-start: var(--space-6);
  border-top: 1px solid rgb(249 230 194 / 16%);
}

.footer-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-block-end: var(--space-3);
  color: var(--zv-gold-300);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

.footer-group > summary::-webkit-details-marker {
  display: none;
}

.footer-group > summary span {
  display: none;
}

.footer-group ul {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-group a {
  color: #d4e2e4;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.footer-group a:hover,
.footer-group a:focus-visible,
.footer-group a[aria-current="page"] {
  color: #fff2b5;
  text-decoration: underline;
  text-decoration-thickness: 0.08rem;
  text-underline-offset: 0.2rem;
}

.footer-coming-soon {
  color: #9fb8bd;
  font-size: 0.78rem;
}

.home-footer .footer-bottom {
  display: grid;
  grid-template-columns: auto auto auto minmax(14rem, 1fr);
  align-items: center;
  gap: var(--space-4) var(--space-6);
  margin-block-start: var(--space-7);
  padding-block-start: var(--space-4);
  border-top: 1px solid rgb(249 230 194 / 16%);
  color: #9fb8bd;
  font-size: 0.78rem;
}

.home-footer .footer-bottom > p:last-child {
  text-align: end;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-legal a {
  color: #d4e2e4;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-legal a[aria-current="page"] {
  color: var(--zv-gold-300);
}

.footer-email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, rgb(77 208 195 / 20%), rgb(112 75 220 / 34%));
  box-shadow: 0 0.5rem 1.2rem rgb(0 0 0 / 16%);
  font-size: 0.92rem;
  font-weight: 850;
  direction: ltr;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-email-button:hover,
.footer-email-button:focus-visible {
  color: #ffffff;
  border-color: rgb(255 255 255 / 48%);
  background: linear-gradient(135deg, rgb(77 208 195 / 34%), rgb(112 75 220 / 50%));
  transform: translateY(-0.1rem);
}

@media (max-width: 64rem) {
  .footer-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  .footer-intro,
  .footer-directory,
  .home-footer .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-brand-panel,
  .footer-action,
  .home-footer .footer-bottom,
  .home-footer .footer-bottom > p:last-child {
    text-align: center;
  }

  .footer-brand,
  .footer-facts,
  .footer-legal {
    justify-content: center;
  }

  .footer-brand-panel > p {
    margin-inline: auto;
  }

  .footer-directory {
    gap: 0.55rem;
  }

  .footer-group {
    border: 1px solid rgb(249 230 194 / 14%);
    border-radius: 1rem;
    background: rgb(255 255 255 / 5%);
  }

  .footer-group > summary {
    min-height: 3.25rem;
    margin: 0;
    padding: 0.7rem 1rem;
    cursor: pointer;
  }

  .footer-group > summary span {
    display: inline-block;
    font-size: 1.2rem;
    transition: transform 160ms ease;
  }

  .footer-group[open] > summary span {
    transform: rotate(45deg);
  }

  .footer-group ul {
    padding: 0 var(--space-4) var(--space-4);
  }
}

/* Internal SEO hubs */
.content-page {
  background: var(--zv-cream-50);
}

.content-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  border-bottom: 1px solid rgb(114 68 29 / 16%);
  background:
    radial-gradient(circle at 8% 22%, rgb(252 229 121 / 34%) 0 3.8rem, transparent 3.9rem),
    radial-gradient(circle at 92% 78%, rgb(54 183 199 / 18%) 0 5rem, transparent 5.1rem),
    linear-gradient(135deg, #fff9ea, #e9f7f2);
}

.breadcrumbs {
  margin-block-end: var(--space-5);
  color: #52616d;
  font-size: 0.82rem;
  font-weight: 750;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "←";
  margin-inline-start: 0.45rem;
  color: var(--zv-gold-700);
}

.breadcrumbs a {
  color: var(--zv-blue-800);
}

.content-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.content-hero h1 {
  max-width: 13ch;
  margin: 0 0 var(--space-4);
  color: var(--zv-night-950);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.content-hero .direct-answer {
  max-width: 45rem;
  margin: 0;
  color: #34475b;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 650;
}

.content-hero .btn-secondary {
  border-color: var(--zv-blue-600);
  background: rgb(255 255 255 / 78%);
  box-shadow: 0 0.3rem 0 rgb(38 117 150 / 20%);
  color: var(--zv-blue-800);
}

.hub-visual {
  min-height: 22rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  align-content: center;
  padding: var(--space-5);
  border: 0.38rem solid var(--zv-wood-500);
  outline: 0.12rem solid var(--zv-gold-500);
  border-radius: 2rem;
  background: linear-gradient(145deg, var(--zv-blue-800), var(--zv-night-950));
  box-shadow: var(--shadow-game);
  transform: rotate(-1deg);
}

.hub-visual span {
  min-height: 5.4rem;
  display: grid;
  place-items: center;
  border: 0.12rem solid var(--zv-gold-500);
  border-radius: 1.2rem;
  background: var(--zv-cream-50);
  color: var(--zv-blue-800);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 950;
  text-align: center;
}

.hub-visual span:nth-child(2) { background: #fff0b8; color: #a55e08; }
.hub-visual span:nth-child(3) { background: #e6ddf5; color: #6f45ad; }
.hub-visual span:nth-child(4) { background: #dff2d7; color: #279447; }

.hub-intro,
.hub-section,
.related-section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.hub-intro {
  background: #fffdf5;
}

.answer-panel {
  max-width: 58rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 0.14rem solid var(--zv-cream-300);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffdf5, #f1f9f5);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.answer-panel h2 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.08;
}

.answer-panel p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.hub-section {
  background:
    radial-gradient(circle at 5% 12%, rgb(252 229 121 / 22%) 0 1.3rem, transparent 1.4rem),
    linear-gradient(180deg, #eef8f4, #f6f1fb);
}

.hub-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.skills-deep-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.skill-jump-nav {
  position: sticky;
  top: 7.2rem;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-block: var(--space-5);
  padding: 0.7rem;
  border: 1px solid rgb(38 117 150 / 22%);
  border-radius: var(--radius-pill);
  background: rgb(255 253 245 / 92%);
  box-shadow: 0 0.45rem 1.4rem rgb(15 58 116 / 10%);
  backdrop-filter: blur(0.6rem);
}

.skill-jump-nav a {
  padding: 0.42rem 0.72rem;
  border-radius: var(--radius-pill);
  background: #edf8f3;
  color: var(--zv-blue-800);
  font-size: 0.78rem;
  font-weight: 850;
}

.skill-jump-nav a:hover,
.skill-jump-nav a:focus-visible {
  background: var(--zv-gold-300);
  color: var(--zv-night-950);
}

.hub-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  border: 0.16rem solid var(--zv-wood-500);
  border-radius: 1.4rem;
  background: #fffdf5;
  box-shadow: 0 0.32rem 0 rgb(61 34 20 / 12%);
  scroll-margin-top: 12rem;
}

.hub-card:nth-child(3n + 1) { background: linear-gradient(145deg, #fff8dc, #fffdf5); }
.hub-card:nth-child(3n + 2) { background: linear-gradient(145deg, #e6f5f1, #fffdf5); }
.hub-card:nth-child(3n) { background: linear-gradient(145deg, #eee6f8, #fffdf5); }

.hub-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  margin-block-end: var(--space-3);
  border: 0.12rem solid var(--zv-wood-800);
  border-radius: 1rem;
  background: var(--zv-cream-50);
  box-shadow: 0 0.2rem 0 rgb(61 34 20 / 18%);
  color: var(--zv-blue-800);
  font-family: var(--font-display);
  font-weight: 950;
  transform: rotate(-3deg);
}

.hub-card h2,
.hub-card h3 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  line-height: 1.15;
}

.skill-card-heading {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-block-end: var(--space-3);
}

.skill-card-heading .hub-card-icon {
  margin: 0;
  flex: 0 0 auto;
}

.skill-card-heading h2 {
  margin: 0.2rem 0 0;
}

.skill-count {
  display: inline-block;
  color: var(--zv-blue-800);
  font-size: 0.72rem;
  font-weight: 900;
}

.subskill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-block: 0 var(--space-4);
}

.subskill-chips span {
  padding: 0.34rem 0.6rem;
  border: 1px solid rgb(114 68 29 / 15%);
  border-radius: var(--radius-pill);
  background: rgb(255 255 255 / 66%);
  color: #425563;
  font-size: 0.74rem;
  font-weight: 750;
}

.skill-card-details {
  overflow: hidden;
  margin-block: 0 var(--space-4);
  border: 1px solid rgb(38 117 150 / 22%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 66%);
}

.skill-card-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--zv-blue-800);
  font-weight: 900;
}

.skill-card-details summary::-webkit-details-marker {
  display: none;
}

.skill-card-details summary::after {
  content: "פתחו פירוט ↓";
  flex: 0 0 auto;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--zv-cream-50);
  color: var(--zv-blue-800);
  font-size: 0.65rem;
  font-weight: 900;
}

.skill-card-details[open] summary {
  border-bottom: 1px solid rgb(38 117 150 / 16%);
}

.skill-card-details[open] summary::after {
  content: "סגרו פירוט ↑";
}

.skill-card-details > div {
  padding: 0.2rem 1rem 1rem;
}

.skill-card-details p {
  margin-block: 0.8rem;
  color: #425563;
  font-size: 0.9rem;
}

.skill-card-details ul {
  margin-block-end: 0.8rem;
}

.topic-page-link {
  display: block;
  margin-block: 0 var(--space-3);
  padding: 0.72rem 0.9rem;
  border: 1px solid rgb(38 117 150 / 28%);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #edf8f3, #fff8dc);
  color: var(--zv-blue-800);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
}

.topic-page-link:hover,
.topic-page-link:focus-visible {
  background: var(--zv-gold-300);
  color: var(--zv-night-950);
}

.age-stage-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-block: var(--space-5) 0;
}

.age-stage-strip div {
  padding: var(--space-3);
  border: 1px solid rgb(38 117 150 / 20%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 72%);
  color: #425563;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.age-stage-strip strong {
  display: block;
  margin-block-end: 0.15rem;
  color: var(--zv-blue-800);
  font-size: 0.92rem;
}

.age-page .hub-card {
  min-height: 100%;
}

.age-page .hub-card > .text-link {
  margin-block-start: auto;
}

.age-page-note {
  margin-block-start: var(--space-5);
  padding: var(--space-4);
  border-inline-start: 0.35rem solid var(--zv-gold-500);
  border-radius: var(--radius-md);
  background: #fffdf5;
  color: #425563;
  font-weight: 600;
}

.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.mechanic-card {
  padding: var(--space-5);
  border: 0.14rem solid var(--zv-cream-300);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fffdf5, #edf8f3);
  box-shadow: var(--shadow-soft);
}

.mechanic-card h3 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.mechanic-card p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 600;
}

/* Parent content hub and practical guides */
.parent-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.parent-guide-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  border: 0.16rem solid var(--zv-wood-500);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fffdf5, #edf8f3);
  box-shadow: 0 0.32rem 0 rgb(61 34 20 / 12%);
}

.parent-guide-card:nth-child(2n) {
  background: linear-gradient(145deg, #fff8dc, #f3eafa);
}

.parent-guide-card h2,
.parent-guide-card h3 {
  margin: var(--space-3) 0 var(--space-2);
  font-family: var(--font-display);
  line-height: 1.15;
}

.parent-guide-card p {
  margin: 0 0 var(--space-4);
  color: var(--color-muted);
  font-weight: 600;
}

.parent-guide-card .text-link {
  margin-block-start: auto;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17rem;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.article-prose {
  min-width: 0;
}

.article-toc {
  position: sticky;
  top: 8rem;
  padding: var(--space-4);
  border: 1px solid var(--zv-cream-300);
  border-radius: var(--radius-lg);
  background: #fffdf5;
  box-shadow: var(--shadow-soft);
}

.article-toc strong {
  display: block;
  margin-block-end: var(--space-2);
  color: var(--zv-night-950);
}

.article-toc ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  color: var(--zv-blue-800);
  font-size: 0.84rem;
  font-weight: 750;
}

.article-section {
  scroll-margin-top: 9rem;
  margin-block-end: var(--space-7);
}

.article-section h2 {
  margin: 0 0 var(--space-3);
  color: var(--zv-night-950);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.08;
}

.article-section h3 {
  margin: var(--space-5) 0 var(--space-2);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.article-section p,
.article-section li {
  color: #425563;
  font-weight: 600;
}

.article-section ul,
.article-section ol {
  display: grid;
  gap: 0.55rem;
}

.takeaway-box {
  margin-block: var(--space-5);
  padding: var(--space-5);
  border: 0.14rem solid var(--zv-gold-500);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fff8dc, #edf8f3);
}

.takeaway-box strong {
  display: block;
  margin-block-end: var(--space-2);
  color: var(--zv-blue-800);
  font-size: 1.05rem;
}

.takeaway-box p {
  margin: 0;
}

.do-dont-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-block: var(--space-5);
}

.do-dont-grid > div {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: #edf8f3;
}

.do-dont-grid > div:last-child {
  background: #fff0e8;
}

.do-dont-grid h3 {
  margin-block-start: 0;
}

.related-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.related-link-grid a {
  display: block;
  padding: var(--space-4);
  border: 1px solid var(--zv-cream-300);
  border-radius: var(--radius-md);
  background: #fffdf5;
  color: var(--zv-blue-800);
  font-weight: 850;
  text-align: center;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.offer-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  border: 0.16rem solid var(--zv-cream-300);
  border-radius: var(--radius-lg);
  background: #fffdf5;
  box-shadow: var(--shadow-soft);
}

.offer-card.is-featured {
  border: 0.22rem solid var(--zv-wood-500);
  outline: 0.1rem solid var(--zv-gold-500);
  background: linear-gradient(145deg, #fff8dc, #edf8f3);
}

.offer-card h2,
.offer-card h3 {
  margin: var(--space-3) 0 var(--space-2);
  font-family: var(--font-display);
  line-height: 1.15;
}

.offer-card p,
.offer-card li {
  color: var(--color-muted);
  font-weight: 600;
}

.offer-card ul {
  display: grid;
  gap: 0.5rem;
  padding-inline-start: 1.1rem;
}

.offer-card .text-link {
  margin-block-start: auto;
}

.facts-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-block: var(--space-5);
}

.facts-band span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgb(38 117 150 / 25%);
  border-radius: var(--radius-pill);
  background: #fffdf5;
  color: var(--zv-blue-800);
  font-size: 0.82rem;
  font-weight: 850;
}

.hub-card h2 { font-size: 1.35rem; }
.hub-card h3 { font-size: 1.18rem; }

.hub-card p {
  margin: 0 0 var(--space-4);
  color: var(--color-muted);
  font-weight: 600;
}

.hub-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 var(--space-4);
  padding-inline-start: 1.1rem;
  color: #425563;
  font-size: 0.9rem;
}

.hub-card .text-link {
  margin-block-start: auto;
}

.selection-guide {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.guide-list {
  display: grid;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--zv-cream-300);
  border-radius: var(--radius-md);
  background: #fffdf5;
}

.guide-list strong {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--zv-gold-300);
  color: var(--zv-night-950);
}

.hub-cta {
  padding-block: clamp(3.5rem, 7vw, 5rem);
  background:
    radial-gradient(circle at 12% 30%, rgb(243 179 51 / 18%), transparent 22%),
    linear-gradient(135deg, var(--zv-night-950), var(--zv-blue-800));
  color: var(--zv-cream-50);
  text-align: center;
}

.hub-cta h2 {
  max-width: 18ch;
  margin: 0 auto var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.hub-cta p {
  max-width: 42rem;
  margin: 0 auto var(--space-5);
  color: var(--zv-cream-100);
}

.hub-cta .btn-primary {
  box-shadow: 0 0.35rem 0 var(--zv-wood-800), 0 0 1.5rem rgb(243 179 51 / 22%);
}

.hub-cta-row {
  display: flex;
  justify-content: center;
  margin-block-start: var(--space-5);
}

.hub-cta-row .btn-secondary {
  border-color: rgb(38 117 150 / 58%);
  background: linear-gradient(180deg, #fffefa, #fff3d5);
  box-shadow: 0 0.28rem 0 rgb(38 117 150 / 20%), 0 0.7rem 1.5rem rgb(15 58 116 / 9%);
  color: var(--zv-blue-800);
}

.hub-cta-row .btn-secondary:hover,
.hub-cta-row .btn-secondary:focus-visible {
  border-color: var(--zv-blue-600);
  background: #e2f5f2;
  color: var(--zv-night-950);
}

@media (max-width: 70rem) {
  .hub-card-grid { grid-template-columns: repeat(2, 1fr); }
  .mechanics-grid { grid-template-columns: repeat(2, 1fr); }
  .article-shell { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 52rem) {
  .content-hero-grid,
  .selection-guide {
    grid-template-columns: 1fr;
  }

  .content-hero,
  .content-hero h1,
  .content-hero .direct-answer,
  .breadcrumbs {
    text-align: center;
  }

  .content-hero h1,
  .content-hero .direct-answer {
    margin-inline: auto;
  }

  .breadcrumbs ol,
  .hub-cta-row {
    justify-content: center;
  }

  .hub-visual {
    width: min(100%, 32rem);
    min-height: 18rem;
    margin-inline: auto;
  }

  .hub-card,
  .selection-guide > div {
    text-align: center;
  }

  .hub-card-icon {
    margin-inline: auto;
  }

  .skill-card-heading {
    flex-direction: column;
  }

  .subskill-chips {
    justify-content: center;
  }

  .age-stage-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .mechanic-card,
  .age-page-note {
    text-align: center;
  }

  .parent-guide-card,
  .offer-card,
  .article-prose,
  .article-toc,
  .article-section,
  .takeaway-box,
  .do-dont-grid > div {
    text-align: center;
  }

  .article-toc ul {
    justify-items: center;
  }

  .article-section ul,
  .article-section ol {
    padding: 0;
    list-style-position: inside;
  }

  .skill-card-details summary {
    flex-direction: column;
  }

  .hub-card ul {
    padding: 0;
    list-style-position: inside;
  }
}

@media (max-width: 40rem) {
  .hub-card-grid { grid-template-columns: 1fr; }
  .skill-jump-nav { position: static; border-radius: var(--radius-lg); }
  .hub-visual { min-height: 15rem; padding: var(--space-3); }
  .hub-visual span { min-height: 4.4rem; font-size: 0.95rem; }
  .guide-list li { grid-template-columns: 1fr; text-align: center; }
  .guide-list strong { margin-inline: auto; }
  .age-stage-strip,
  .mechanics-grid { grid-template-columns: 1fr; }
  .parent-hub-grid,
  .do-dont-grid,
  .related-link-grid,
  .offer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 25rem) {
  .home-header .brand {
    font-size: 0.92rem;
    letter-spacing: 0.05em;
  }

  .home-header .brand::before {
    width: 2.2rem;
    height: 2.2rem;
  }

  .mobile-menu-toggle {
    padding-inline: 0.7rem;
  }
}

/* Homepage revision: lighter child-focused direction and complete product scope. */
.home-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 90;
  background: rgb(255 249 234 / 96%);
  box-shadow: 0 0.5rem 1.5rem rgb(61 34 20 / 10%);
  backdrop-filter: blur(0.75rem);
}

.home-brand::before,
.footer-brand::before {
  display: none;
}

.home-brand {
  gap: var(--space-3);
}

.brand-character-placeholder {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 0.14rem dashed var(--zv-wood-500);
  border-radius: 50% 50% 44% 56%;
  background:
    radial-gradient(circle at 55% 35%, rgb(252 229 121 / 75%) 0 20%, transparent 21%),
    linear-gradient(145deg, #fffdf5, var(--zv-cream-100));
  box-shadow: 0 0.25rem 0 rgb(114 68 29 / 20%), 0 0 1.2rem rgb(243 179 51 / 22%);
  transform: rotate(-3deg);
}

.brand-character-placeholder span {
  color: var(--zv-wood-500);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0;
}

section[id] {
  scroll-margin-top: 7rem;
}

.zv-hero {
  color: var(--zv-night-900);
  background:
    radial-gradient(circle at 10% 18%, rgb(252 229 121 / 85%) 0 0.3rem, rgb(243 179 51 / 18%) 0.35rem 3.5rem, transparent 3.7rem),
    radial-gradient(circle at 88% 18%, rgb(54 183 199 / 25%) 0 7rem, transparent 7.2rem),
    radial-gradient(circle at 76% 88%, rgb(111 69 173 / 12%) 0 8rem, transparent 8.2rem),
    linear-gradient(155deg, #dff4f4 0%, #eef8ee 48%, var(--zv-cream-50) 100%);
}

.zv-hero::before,
.zv-hero::after {
  color: var(--zv-gold-500);
  text-shadow: 0 0 0.75rem rgb(243 179 51 / 55%);
}

.zv-eyebrow {
  border-color: var(--zv-gold-500);
  background: rgb(255 249 234 / 78%);
  box-shadow: inset 0 0 0 0.12rem rgb(252 229 121 / 24%), 0 0.35rem 1.2rem rgb(38 117 150 / 10%);
  color: var(--zv-blue-800);
}

.zv-title-cyan {
  color: var(--zv-blue-600);
}

.zv-title-gold {
  color: #b96e08;
  text-shadow: none;
}

.zv-lead {
  color: #34475b;
}

.zv-hero .btn-secondary {
  border-color: var(--zv-blue-600);
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 0.3rem 0 rgb(38 117 150 / 20%);
  color: var(--zv-blue-800);
}

.zv-hero .zv-trust {
  color: #34475b;
}

.learning-worlds-section {
  background:
    radial-gradient(circle at 6% 20%, rgb(252 229 121 / 24%), transparent 13%),
    radial-gradient(circle at 96% 8%, rgb(54 183 199 / 16%) 0 1.5rem, transparent 1.6rem),
    radial-gradient(circle at 90% 88%, rgb(111 69 173 / 10%) 0 2rem, transparent 2.1rem),
    linear-gradient(180deg, #fffdf5, #edf8f3 52%, #f3effc);
}

.learning-worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: var(--space-4);
}

.learning-world {
  --world-accent: var(--zv-blue-600);
  --world-surface: #d9f2ef;
  overflow: hidden;
  border: 0.18rem solid var(--zv-wood-500);
  outline: 0.08rem solid var(--zv-gold-500);
  border-radius: 1.4rem;
  background: var(--world-surface);
  box-shadow: 0 0.35rem 0 rgb(61 34 20 / 15%);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.learning-world:nth-child(3n + 1) { transform: rotate(0.2deg); }
.learning-world:nth-child(3n + 2) { transform: rotate(-0.18deg); }

.learning-world:hover,
.learning-world[open] {
  transform: translateY(-0.18rem) rotate(0deg);
  box-shadow: 0 0.7rem 1.5rem rgb(61 34 20 / 14%);
}

.learning-world summary {
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  cursor: pointer;
  list-style: none;
  background: linear-gradient(135deg, rgb(255 255 255 / 34%), transparent 70%);
}

.learning-world summary::-webkit-details-marker,
.play-formats summary::-webkit-details-marker {
  display: none;
}

.learning-world summary::after {
  content: "פתחו ↓";
  display: inline-grid;
  flex: 0 0 auto;
  margin-inline-start: auto;
  padding: 0.38rem 0.65rem;
  place-items: center;
  border: 1px solid rgb(61 34 20 / 16%);
  border-radius: var(--radius-pill);
  background: var(--zv-cream-50);
  color: var(--world-accent);
  font-size: 0.7rem;
  font-weight: 950;
}

.learning-world[open] summary::after {
  content: "סגרו ↑";
}

.world-symbol {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 0.14rem solid var(--zv-wood-800);
  border-radius: 1rem;
  background: var(--zv-cream-50);
  box-shadow: 0 0.22rem 0 rgb(61 34 20 / 18%);
  color: var(--world-accent);
  font-size: 1.2rem;
  font-weight: 950;
  transform: rotate(-3deg);
}

.learning-world:nth-child(even) .world-symbol { transform: rotate(3deg); }

.learning-world summary strong,
.learning-world summary small {
  display: block;
}

.learning-world summary strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.2;
}

.learning-world summary small {
  margin-block-start: 0.2rem;
  color: #53656d;
  font-size: 0.72rem;
  font-weight: 650;
}

.world-content {
  padding: 0 var(--space-4) var(--space-4);
  border-top: 1px solid rgb(114 68 29 / 18%);
}

.world-content p {
  margin: var(--space-4) 0 var(--space-3);
  color: #34475b;
  font-size: 0.92rem;
  font-weight: 600;
}

.world-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem var(--space-3);
  margin: 0;
  padding-inline-start: 1.2rem;
  color: #44575f;
  font-size: 0.82rem;
}

.world-math { --world-accent: #b96e08; --world-surface: #fff0b8; }
.world-logic { --world-accent: #6f45ad; --world-surface: #eadff7; }
.world-memory { --world-accent: #0f3a74; --world-surface: #dce9fa; }
.world-language { --world-accent: #267596; --world-surface: #d9f2ef; }
.world-science { --world-accent: #279447; --world-surface: #dff2d7; }
.world-strategy { --world-accent: #8a4d20; --world-surface: #f3dfc8; }
.world-motor { --world-accent: #d9563f; --world-surface: #f9ddd2; }
.world-creative { --world-accent: #8b3ca1; --world-surface: #f3dcf5; }
.world-computer { --world-accent: #315fba; --world-surface: #dbe7fa; }

.play-formats {
  margin-block-start: var(--space-6);
  overflow: hidden;
  border: 0.18rem solid var(--zv-blue-600);
  border-radius: 1.5rem;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 0.45rem 1.5rem rgb(38 117 150 / 10%);
}

.play-formats summary {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  list-style: none;
  color: var(--zv-blue-800);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
}

.play-formats summary::after {
  content: "הציגו הכול ↓";
}

.play-formats[open] summary::after {
  content: "הסתירו ↑";
}

.play-formats summary small {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
}

.format-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-5) var(--space-5);
}

.format-chip-grid span {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--zv-cream-300);
  border-radius: var(--radius-pill);
  background: var(--zv-cream-50);
  color: #34475b;
  font-size: 0.82rem;
  font-weight: 750;
}

@media (max-width: 64rem) {
  .learning-worlds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 52rem) {
  .home-header,
  main,
  .home-footer {
    text-align: center;
  }

  .home-header {
    justify-content: center;
  }

  .home-brand {
    margin-inline: auto;
  }

  .mobile-menu-toggle {
    margin-inline-start: 0;
  }

  .primary-navigation .site-nav {
    justify-items: center;
  }

  .primary-navigation .site-nav a {
    text-align: center;
  }

  .zv-eyebrow,
  .zv-lead,
  .section-heading-row > p,
  .section-lead,
  .intro-answer,
  .feature-copy > p,
  .tablet-grid p,
  .early-access-copy > p {
    margin-inline: auto;
  }

  .zv-title,
  .zv-section-heading,
  .section-heading-row,
  .feature-copy,
  .tablet-grid > div,
  .early-access-copy,
  .faq-grid > div {
    text-align: center;
  }

  .learning-worlds-grid {
    grid-template-columns: 1fr;
  }

  .learning-world summary {
    justify-content: center;
    text-align: center;
  }

  .learning-world summary::after {
    margin-inline-start: 0;
  }

  .device-chips {
    justify-content: center;
  }

  .world-content ul,
  .check-list {
    padding: 0;
    list-style-position: inside;
  }

  .world-content ul {
    grid-template-columns: 1fr;
  }

  .play-formats summary {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .faq-list summary {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .home-skill-card,
  .age-card,
  .activity-placeholder figcaption,
  .step-list li,
  .waitlist-form,
  .faq-list details,
  .footer-grid {
    text-align: center;
  }

  .skill-symbol,
  .age-number {
    margin-inline: auto;
  }

  .step-list li {
    grid-template-columns: 1fr;
  }

  .step-list li > span {
    margin-inline: auto;
  }

  .consent-field {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-bottom {
    align-items: center;
  }
}

@media (max-width: 40rem) {
  .brand-character-placeholder {
    width: 2.75rem;
    height: 2.75rem;
  }

  .learning-world summary {
    min-height: 7rem;
    flex-wrap: wrap;
  }

  .learning-world summary > span:nth-child(2) {
    width: calc(100% - 5.5rem);
  }

  .learning-world summary::after {
    width: auto;
    flex-basis: auto;
  }
}
