/*
  WonderLab's Young Inventors visual system
  A tactile field-notebook aesthetic: paper, ink, tape and bold lab colours.
*/

:root {
  --navy: #092f55;
  --green: #8ac926;
  --orange: #fa6432;
  --purple: #7d4bc6;
  --teal: #00aeb8;
  --pink: #f62f77;
  --yellow: #ffd43b;
  --ink: #102a43;
  --muted: #526577;
  --bg: #f7f1e5;
  --paper: #fffdf7;
  --card: #fffdf7;
  --line: #17324d;
  --shadow: 8px 8px 0 #17324d;
  --radius: 18px;
}

*::selection {
  color: var(--ink);
  background: var(--yellow);
}

html {
  scroll-padding-top: 94px;
}

body {
  overflow-x: hidden;
  color: var(--ink);
  background: #ffffff;
  font-family: "MuseoSans",Arial,Helvetica,sans-serif;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 12px 16px;
  color: white;
  background: var(--navy);
  border: 2px solid white;
  transform: translateY(-150%);
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 3px;
}

.site-header {
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 3px solid var(--navy);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1240px, calc(100% - 40px));
  min-height: 82px;
}

.brand {
  position: relative;
  z-index: 1;
}

.brand::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: -4px;
  left: 42%;
  height: 12px;
  background: var(--yellow);
  transform: rotate(-2deg);
}

.brand img {
  width: 186px;
}

.nav-links {
  gap: clamp(11px, 1.45vw, 22px);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0) rotate(-1deg);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover {
  color: var(--navy);
  transform: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1) rotate(-1deg);
}

.language-toggle,
.menu-toggle {
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--navy);
}

.language-toggle {
  padding: 9px 12px;
}

.language-toggle:hover,
.menu-toggle:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--navy);
}

.hero,
.subpage-hero {
  width: min(1240px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(48px, 7vw, 92px);
  padding: clamp(72px, 9vw, 118px) 0;
}

.hero {
  min-height: min(860px, calc(100vh - 82px));
}

.subpage-hero {
  min-height: 690px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "?";
  position: absolute;
  z-index: -1;
  top: -98px;
  left: -52px;
  color: rgba(0, 174, 184, 0.11);
  font-family: Georgia, serif;
  font-size: 15rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-11deg);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 11px 5px;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 4px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  transform: rotate(-1deg);
}

h1,
h2,
h3,
.manifesto-shout {
  font-family: "MuseoSans",Arial,Helvetica,sans-serif;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(3.6rem, 7.2vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

h1::after {
  width: clamp(130px, 22vw, 230px);
  height: 12px;
  margin-top: 24px;
  background: var(--pink);
  border: 2px solid var(--navy);
  border-radius: 2px;
  transform: rotate(-2deg);
}

.hero-text {
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions,
.contact-actions,
.center-actions {
  gap: 16px;
  margin-top: 32px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid var(--navy);
  border-radius: 12px;
  box-shadow: 5px 5px 0 var(--navy);
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--navy);
}

.btn.primary {
  color: var(--navy);
  background: var(--teal);
  box-shadow: 5px 5px 0 var(--navy);
}

.btn.secondary {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--navy);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
}

.hero-proof li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hero-proof li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--teal);
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.hero-proof li:nth-child(2)::before { background: var(--orange); }
.hero-proof li:nth-child(3)::before { background: var(--pink); }

.hero-card,
.mini-summary-card {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  overflow: visible;
  background: var(--navy);
  border: 3px solid var(--navy);
  border-radius: 24px;
  box-shadow: 12px 12px 0 var(--yellow);
}

.hero-card::before {
  display: none;
}

.lab-board {
  color: white;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  transform: rotate(1.2deg);
}

.tape {
  position: absolute;
  z-index: 3;
  width: 96px;
  height: 28px;
  background: rgba(255, 212, 59, 0.86);
  border: 1px solid rgba(9, 47, 85, 0.3);
}

.tape-one {
  top: -14px;
  left: 44px;
  transform: rotate(-7deg);
}

.tape-two {
  right: 38px;
  bottom: -13px;
  transform: rotate(8deg);
}

.board-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.hero-card h2,
.mini-summary-card h2 {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin-bottom: 14px;
  color: white;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.mission-sketch {
  position: relative;
  height: 176px;
  margin: 6px 0 18px;
}

.sketch-pier,
.sketch-deck,
.sketch-bot {
  position: absolute;
  display: block;
}

.sketch-pier {
  bottom: 16px;
  width: 28px;
  height: 82px;
  background: var(--teal);
  border: 3px solid white;
}

.pier-one { left: 18%; transform: rotate(3deg); }
.pier-two { right: 18%; transform: rotate(-2deg); }

.sketch-deck {
  right: 10%;
  bottom: 88px;
  left: 10%;
  height: 22px;
  background: var(--orange);
  border: 3px solid white;
  transform: rotate(-1deg);
}

.sketch-deck::before,
.sketch-deck::after {
  content: "";
  position: absolute;
  bottom: -54px;
  width: 3px;
  height: 68px;
  background: white;
  transform-origin: top;
}

.sketch-deck::before { left: 26%; transform: rotate(-45deg); }
.sketch-deck::after { right: 26%; transform: rotate(45deg); }

.sketch-bot {
  top: 24px;
  left: calc(50% - 30px);
  width: 60px;
  height: 52px;
  color: var(--navy);
  background: var(--pink);
  border: 3px solid white;
  border-radius: 12px 12px 7px 7px;
  font-size: 1.25rem;
  letter-spacing: 12px;
  line-height: 43px;
  text-align: center;
  text-indent: 7px;
  animation: bot-wobble 3.4s ease-in-out infinite;
}

.sketch-bot::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 3px;
  height: 14px;
  background: white;
}

.sketch-bot::after {
  content: "";
  position: absolute;
  top: -21px;
  left: calc(50% - 5px);
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border: 2px solid white;
  border-radius: 50%;
}

.mission-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mission-track li {
  min-width: 0;
  padding: 10px 8px;
  color: var(--navy);
  background: var(--paper);
  border: 2px solid var(--navy);
  text-align: center;
}

.mission-track li:nth-child(2) { background: #c7f1e8; }
.mission-track li:nth-child(3) { background: #ffd7e7; }
.mission-track li:nth-child(4) { background: #ffe596; }

.mission-track span,
.mission-track strong {
  display: block;
}

.mission-track span {
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mission-track strong {
  overflow: hidden;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-note {
  width: fit-content;
  max-width: 92%;
  margin: 24px 0 -67px auto;
  padding: 13px 16px;
  color: var(--navy);
  background: var(--paper);
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 var(--pink);
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  transform: rotate(-2deg);
}

.maker-manifesto {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 82px) 0;
  color: white;
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
}

.manifesto-shout {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.manifesto-shout span {
  display: block;
}

.manifesto-shout span:last-child {
  width: fit-content;
  margin-top: 10px;
  padding: 6px 11px 8px;
  color: var(--navy);
  background: var(--yellow);
  transform: rotate(-1deg);
}

.maker-manifesto > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
  font-weight: 700;
  line-height: 1.55;
}

.section {
  width: min(1160px, calc(100% - 40px));
  padding: clamp(64px, 8vw, 96px) 0;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.intro,
.safety {
  grid-template-columns: 0.96fr 1.04fr;
  gap: clamp(42px, 7vw, 84px);
}

.intro p:last-child,
.safety p:last-child,
.section-heading p {
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.75;
}

.founder {
  padding-top: 34px;
}

.founder-card,
.inspiration-panel,
.free-pack-card {
  background: var(--paper);
  border: 3px solid var(--navy);
  border-radius: 18px;
  box-shadow: 9px 9px 0 var(--navy);
}

.founder-card {
  position: relative;
}

.founder-card::before {
  content: "FOUNDER'S NOTE";
  position: absolute;
  top: -16px;
  right: 42px;
  padding: 7px 12px;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: rotate(2deg);
}

.founder-card p:not(.eyebrow),
.inspiration-copy p:not(.eyebrow) {
  color: var(--ink);
}

.note-section {
  padding-top: 12px;
  padding-bottom: 12px;
}

.note-card {
  background: var(--yellow);
  color: var(--navy);
  border: 3px solid var(--navy);
  border-radius: 14px;
  box-shadow: 7px 7px 0 var(--navy);
  transform: rotate(-0.4deg);
}

.note-card p {
  color: var(--navy);
}

.value-grid,
.activity-grid,
.pathway-grid,
.preview-grid {
  gap: 22px;
}

.value-card,
.activity-card,
.pathway-card,
.preview-card,
.impact-card,
.month-table article {
  background: var(--paper);
  border: 2px solid var(--navy);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--navy);
}

.value-card,
.activity-card,
.pathway-card,
.preview-card {
  padding: clamp(23px, 3vw, 30px);
}

.value-card:nth-child(1),
.activity-card:nth-child(1) { transform: rotate(-0.7deg); }
.value-card:nth-child(2),
.activity-card:nth-child(5) { transform: rotate(0.8deg); }
.value-card:nth-child(3),
.activity-card:nth-child(3) { transform: rotate(-0.35deg); }
.value-card:nth-child(4),
.activity-card:nth-child(4) { transform: rotate(0.55deg); }

.value-card:hover,
.activity-card:hover,
.pathway-card:hover,
.preview-card:hover,
.impact-card:hover {
  transform: translate(-2px, -3px) rotate(0deg);
  box-shadow: 8px 9px 0 var(--navy);
}

.value-card h3,
.activity-card h3,
.pathway-card h3 {
  color: var(--navy);
  font-size: 1.38rem;
}

.value-card p,
.activity-card p,
.pathway-card p,
.preview-card span {
  color: var(--muted);
}

.brand-icon,
.line-icon,
.impact-icon {
  border: 2px solid var(--navy);
  border-radius: 12px;
}

.pathway-grid {
  counter-reset: pathway;
}

.pathway-card {
  min-height: 326px;
  counter-increment: pathway;
}

.pathway-card::before {
  content: "0" counter(pathway);
  position: absolute;
  right: 18px;
  bottom: 2px;
  color: rgba(9, 47, 85, 0.12);
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.pathway-card::after {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 10px;
  border-radius: 0;
  opacity: 1;
}

.pathway-card.minis { background: #fff2da; }
.pathway-card.juniors { background: #eff9dc; }
.pathway-card.makers { background: #f3eaff; }
.pathway-card.innovators { background: #ffe8f1; }

.age-badge,
.badge {
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 7px;
  transform: rotate(-1deg);
}

.badge.light-orange { background: #ffd1ad; }
.badge.purple { background: #e4d2ff; }
.badge.teal { background: #c7f1e8; }
.badge.pink { background: #ffd2e2; }
.badge.green { background: #e3f6be; }
.badge.navy { color: white; background: var(--navy); }

.pathway-card a {
  position: relative;
  z-index: 1;
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.inspiration-panel {
  gap: 36px;
  background: var(--yellow);
}

.impact-card {
  background: var(--paper);
}

.impact-card.featured {
  background: var(--teal);
  border-color: var(--navy);
}

.impact-card.featured::after {
  color: rgba(9, 47, 85, 0.1);
}

.impact-card.featured p,
.impact-card.featured h3 {
  color: var(--navy);
}

.minis-preview .preview-card:nth-child(1) { background: #fff2da; }
.minis-preview .preview-card:nth-child(2) { background: #eff9dc; }
.minis-preview .preview-card:nth-child(3) { background: #e7f8f6; }

.schools-panel,
.contact-card,
.session-panel {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 3px solid var(--navy);
  border-radius: 20px;
  box-shadow: 10px 10px 0 var(--orange);
}

.schools-panel::after,
.contact-card::after,
.session-panel::after {
  right: -60px;
  top: -62px;
  width: 180px;
  height: 180px;
  background: var(--pink);
  border: 3px solid white;
  opacity: 1;
}

.schools-panel .eyebrow,
.contact-card .eyebrow,
.session-panel .eyebrow {
  color: var(--navy);
  background: var(--yellow);
}

.school-options div,
.session-steps div {
  background: var(--paper);
  border: 2px solid var(--navy);
  border-radius: 12px;
  color: var(--navy);
  box-shadow: 4px 4px 0 var(--yellow);
}

.school-options strong,
.session-steps strong {
  color: var(--pink);
}

.school-options span,
.session-steps span {
  color: var(--ink);
}

.session-steps strong {
  color: var(--navy);
  background: var(--orange);
  border: 2px solid var(--navy);
}

.mini-summary-card {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 12px 12px 0 var(--pink);
  transform: rotate(1deg);
}

.mini-summary-card h2 {
  color: var(--navy);
}

.mini-facts div {
  background: var(--paper);
  border: 2px solid var(--navy);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--navy);
}

.mini-facts strong {
  color: var(--pink);
}

.month-table {
  gap: 22px;
}

.month-table article {
  min-height: 190px;
}

.month-table article::before {
  width: 12px;
  border-right: 2px solid var(--navy);
}

.month-table article:nth-child(odd) { transform: rotate(-0.45deg); }
.month-table article:nth-child(even) { transform: rotate(0.45deg); }

.month-table strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.free-pack-card {
  background: #e7f8f6;
}

.free-pack-icon {
  padding: 10px;
  background: var(--paper);
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--yellow);
  filter: none;
  transform: rotate(-5deg);
}

.free-pack-card .btn {
  border: 2px solid var(--navy);
  border-radius: 12px;
}

.newsletter-modal {
  background: rgba(9, 47, 85, 0.82);
}

.newsletter-dialog {
  background: var(--paper);
  border: 3px solid var(--navy);
  border-radius: 18px;
  box-shadow: 12px 12px 0 var(--yellow);
}

.newsletter-dialog::before {
  height: 9px;
  background: var(--pink);
}

.newsletter-close {
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 8px;
}

.newsletter-kicker,
.newsletter-dialog h2,
.newsletter-field label {
  color: var(--navy);
}

.newsletter-field input:not([type="checkbox"]),
.newsletter-field select {
  background: white;
  border: 2px solid var(--navy);
  border-radius: 9px;
}

footer {
  margin-top: 62px;
  padding: 46px 20px 54px;
  color: white;
  background: var(--navy);
  border-top: 8px solid var(--yellow);
}

@keyframes bot-wobble {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-5px) rotate(1deg); }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 10px;
    font-size: 0.7rem;
  }

  .brand img { width: 165px; }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 42px;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }

  .nav-links {
    top: 72px;
    left: 20px;
    right: 20px;
    padding: 10px;
    background: var(--paper);
    border: 3px solid var(--navy);
    border-radius: 12px;
    box-shadow: 7px 7px 0 var(--navy);
  }

  .nav-links a,
  .language-toggle {
    padding: 13px 14px;
  }

  .nav-links a::after { display: none; }

  .hero,
  .subpage-hero {
    grid-template-columns: 1fr;
    gap: 66px;
    min-height: 0;
    padding-top: 64px;
  }

  .hero-card,
  .mini-summary-card {
    width: min(620px, calc(100% - 14px));
    margin-left: auto;
    margin-right: auto;
  }

  .maker-manifesto,
  .intro,
  .safety,
  .founder-card,
  .inspiration-panel {
    grid-template-columns: 1fr;
  }

  .maker-manifesto {
    gap: 28px;
  }
}

@media (max-width: 700px) {
  .nav,
  .hero,
  .subpage-hero,
  .maker-manifesto,
  .section {
    width: min(100% - 28px, 1160px);
  }

  .brand img { width: 148px; }

  h1 {
    font-size: clamp(3.15rem, 16vw, 4.6rem);
  }

  .hero {
    padding-bottom: 82px;
  }

  .hero-copy::before {
    top: -70px;
    left: -15px;
    font-size: 10rem;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .center-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .hero-card,
  .mini-summary-card {
    width: calc(100% - 10px);
    padding: 28px 20px;
    box-shadow: 8px 8px 0 var(--yellow);
    transform: none;
  }

  .mini-summary-card { box-shadow: 8px 8px 0 var(--pink); }

  .board-note {
    max-width: 96%;
    margin-bottom: -58px;
  }

  .mission-track strong {
    font-size: 0.65rem;
  }

  .maker-manifesto {
    padding: 54px 0;
  }

  .manifesto-shout {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .value-card,
  .activity-card,
  .pathway-card,
  .preview-card,
  .month-table article {
    transform: none !important;
  }

  .founder-card::before {
    right: 18px;
  }

  .founder-card,
  .inspiration-panel,
  .free-pack-card,
  .schools-panel,
  .contact-card,
  .session-panel {
    border-radius: 14px;
    box-shadow: 7px 7px 0 var(--navy);
  }

  .schools-panel,
  .contact-card,
  .session-panel {
    box-shadow: 7px 7px 0 var(--orange);
  }

  .free-pack-card {
    grid-template-columns: 1fr;
  }

  .free-pack-icon {
    width: 92px;
  }

  .free-pack-card .btn {
    width: 100%;
  }

  .newsletter-dialog {
    border-radius: 14px;
    box-shadow: 7px 7px 0 var(--yellow);
  }
}

/* Wonder Flask logo system */
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
  min-width: 170px;
  color: var(--navy);
}

.brand-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 54px;
  flex: 0 0 48px;
}

.brand-mark::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 14px;
  width: 20px;
  height: 6px;
  background: var(--navy);
  border-radius: 999px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 7px;
  left: 18px;
  width: 12px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.brand-flask {
  position: absolute;
  bottom: 2px;
  left: 4px;
  width: 40px;
  height: 44px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 0 0 17px 17px;
  clip-path: path("M14 0 H26 V10 C26 13 27 15 29 18 L38 33 C44 41 38 44 32 44 C25 45 15 45 8 44 C2 44 -4 41 2 33 L11 18 C13 15 14 13 14 10 Z");
}

.brand-flask::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 4px;
  width: 32px;
  height: 26px;
  background: white;
  clip-path: path("M9 0 H23 L31 13 C34 19 30 25 25 26 C19 27 13 27 7 26 C2 25 -2 19 1 13 Z");
}

.brand-flask::after {
  content: none;
}

.brand-liquid {
  position: absolute;
  z-index: 2;
  right: 4px;
  bottom: 4px;
  left: 4px;
  display: flex;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--teal);
  border-radius: 5px 5px 13px 13px;
  font-family: "MuseoSans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-liquid::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -1px;
  width: 60%;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  transform: rotate(-3deg);
}

.brand-bubble {
  position: absolute;
  z-index: 3;
  display: block;
  background: var(--teal);
  border-radius: 50%;
}

.brand-bubble.bubble-small {
  top: 1px;
  left: 19px;
  width: 5px;
  height: 5px;
}

.brand-bubble.bubble-large {
  top: -3px;
  left: 30px;
  width: 8px;
  height: 8px;
}

.brand-spark {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: -3px;
  color: var(--orange);
  font-size: 15px;
  line-height: 1;
}

.brand-wordmark {
  display: grid;
  gap: 0;
  font-family: "MuseoSans", Arial, Helvetica, sans-serif;
  line-height: 0.9;
}

.brand-wordmark > span {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.brand-wordmark > strong {
  margin-top: 5px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.brand:hover .brand-spark {
  transform: rotate(12deg) scale(1.08);
}

@media (max-width: 700px) {
  .brand {
    min-width: 151px;
    gap: 8px;
  }

  .brand-mark {
    width: 42px;
    height: 48px;
    flex-basis: 42px;
    transform: scale(0.9);
    transform-origin: left center;
  }

  .brand-wordmark > span {
    font-size: 1rem;
  }

  .brand-wordmark > strong {
    font-size: 0.78rem;
  }
}

/* ===========================================================================
   Wonder Crew storybook refresh
   Soft, character-led and illustration-first while preserving WonderLab copy.
   ========================================================================== */

:root {
  --navy: #123d68;
  --green: #8ac926;
  --orange: #ff7a00;
  --purple: #7d4bc6;
  --teal: #00aeb8;
  --pink: #f62f77;
  --yellow: #ffd43b;
  --ink: #18334d;
  --muted: #5f7184;
  --bg: #ffffff;
  --paper: #ffffff;
  --card: #ffffff;
  --line: #dfe9f0;
  --shadow: 0 18px 48px rgba(18, 61, 104, 0.11);
  --radius: 30px;
}

body {
  color: var(--ink);
  background: white;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8eff4;
  box-shadow: 0 6px 24px rgba(18, 61, 104, 0.05);
}

.nav {
  min-height: 80px;
}

.brand::after {
  display: none;
}

.brand img {
  width: 180px;
}

.nav-links {
  gap: clamp(12px, 1.5vw, 22px);
  font-size: 0.76rem;
  letter-spacing: 0.055em;
}

.nav-links a::after {
  height: 4px;
  background: var(--teal);
  border-radius: 999px;
  transform: scaleX(0);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.language-toggle,
.menu-toggle {
  color: white;
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.language-toggle:hover,
.menu-toggle:hover {
  background: var(--pink);
  transform: translateY(-1px);
  box-shadow: none;
}

.hero,
.subpage-hero {
  width: min(1240px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(64px, 8vw, 104px) 0;
}

.hero {
  min-height: min(790px, calc(100vh - 80px));
}

.subpage-hero {
  min-height: 610px;
}

.hero-copy::before {
  content: "";
  top: -30px;
  left: -38px;
  width: 76px;
  height: 76px;
  background: #e8f8f7;
  border-radius: 45% 55% 58% 42%;
  transform: rotate(-14deg);
}

.eyebrow {
  margin-bottom: 18px;
  padding: 8px 14px;
  color: #0d6970;
  background: #e4f8f6;
  border: 0;
  border-radius: 999px;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  transform: none;
}

h1,
h2,
h3,
.manifesto-shout {
  font-family: 'MuseoSans',Arial,Helvetica,sans-serif;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 6.8vw, 6.4rem);
  line-height: 0.93;
  letter-spacing: -0.067em;
}

h1::after {
  width: 102px;
  height: 8px;
  margin-top: 24px;
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  transform: none;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(18, 61, 104, 0.14);
}

.btn.primary {
  color: white;
  background: var(--orange);
  border: 0;
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.22);
}

.btn.primary:hover {
  background: #ed6e00;
  box-shadow: 0 14px 28px rgba(255, 122, 0, 0.28);
}

.btn.secondary {
  color: var(--navy);
  background: #eef7fb;
  border: 0;
}

.hero-proof {
  gap: 10px 20px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-proof li::before {
  width: 9px;
  height: 9px;
  border: 0;
}

.hero-visual {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 500px;
  align-content: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 9% 2% 7% 6%;
  background: #e9f9f7;
  border-radius: 50% 46% 48% 52% / 44% 56% 46% 54%;
  transform: rotate(-2deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10%;
  right: 2%;
  width: 38%;
  height: 38%;
  background: #fff3c2;
  border-radius: 50%;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 112%;
  max-width: none;
  height: auto;
  margin-left: -6%;
  mix-blend-mode: multiply;
}

.hero-shape {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 50%;
}

.shape-yellow {
  top: 11%;
  left: 5%;
  width: 34px;
  height: 34px;
  background: var(--yellow);
}

.shape-pink {
  right: 4%;
  bottom: 21%;
  width: 24px;
  height: 24px;
  background: var(--pink);
}

.hero-crew-chips {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 7%;
  left: 7%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.hero-crew-chips span {
  padding: 8px 12px;
  color: var(--navy);
  background: white;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(18, 61, 104, 0.1);
  font-size: 0.7rem;
  font-weight: 900;
}

.hero-crew-chips span:nth-child(1) { color: #a84b00; }
.hero-crew-chips span:nth-child(2) { color: #4e7711; }
.hero-crew-chips span:nth-child(3) { color: #6538a3; }
.hero-crew-chips span:nth-child(4) { color: #08777d; }

.hero-visual-caption {
  position: absolute;
  z-index: 3;
  top: 5%;
  right: 5%;
  max-width: 245px;
  margin: 0;
  padding: 13px 17px;
  color: var(--navy);
  background: white;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 12px 28px rgba(18, 61, 104, 0.12);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
}

.maker-manifesto {
  position: relative;
  grid-template-columns: 0.8fr 1.2fr;
  color: var(--navy);
  background: #fff5dd;
  box-shadow: 0 0 0 100vmax #fff5dd;
}

.maker-manifesto::before,
.maker-manifesto::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.maker-manifesto::before {
  top: 18px;
  right: 8%;
  width: 36px;
  height: 36px;
  background: #ffd9e7;
}

.maker-manifesto::after {
  bottom: 24px;
  left: 44%;
  width: 22px;
  height: 22px;
  background: #c8efeb;
}

.manifesto-shout span:last-child {
  margin-top: 4px;
  padding: 0;
  color: var(--pink);
  background: transparent;
  transform: none;
}

.maker-manifesto > p {
  color: var(--ink);
}

.section {
  padding: clamp(70px, 8vw, 104px) 0;
}

.section h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.058em;
}

.intro p:last-child,
.safety p:last-child,
.section-heading p {
  color: var(--muted);
}

.founder-card,
.inspiration-panel,
.free-pack-card,
.value-card,
.activity-card,
.pathway-card,
.preview-card,
.impact-card,
.month-table article,
.schools-panel,
.contact-card,
.session-panel,
.mini-summary-card,
.note-card {
  border: 0;
  box-shadow: var(--shadow);
  transform: none;
}

.founder-card,
.inspiration-panel,
.free-pack-card {
  border-radius: 36px;
}

.founder-card {
  background: #eef9f8;
}

.founder-card::before {
  content: "FOUNDER'S NOTE";
  top: -13px;
  right: 42px;
  color: #765700;
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  transform: none;
}

.note-card {
  color: var(--navy);
  background: #f1ecff;
  border-radius: 24px;
}

.note-card p {
  color: var(--navy);
}

.value-grid,
.activity-grid,
.pathway-grid,
.preview-grid {
  gap: 22px;
}

.value-card,
.activity-card,
.pathway-card,
.preview-card,
.impact-card {
  border-radius: 28px;
}

.value-card,
.activity-card,
.preview-card {
  background: white;
  box-shadow: 0 14px 38px rgba(18, 61, 104, 0.08);
}

.value-card:nth-child(1) { background: #fff5df; }
.value-card:nth-child(2) { background: #f0f8df; }
.value-card:nth-child(3) { background: #f2edff; }
.value-card:nth-child(4) { background: #ffedf4; }

.value-card:hover,
.activity-card:hover,
.pathway-card:hover,
.preview-card:hover,
.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(18, 61, 104, 0.13);
}

.brand-icon,
.line-icon,
.impact-icon {
  border: 0;
  border-radius: 18px;
}

.programmes {
  position: relative;
  background: #fbfcff;
  box-shadow: 0 0 0 100vmax #fbfcff;
  clip-path: inset(0 -100vmax);
}

.pathway-grid {
  counter-reset: none;
}

.pathway-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  overflow: hidden;
  padding: 0 26px 28px;
  background: white;
  box-shadow: 0 16px 42px rgba(18, 61, 104, 0.09);
}

.pathway-card::before,
.pathway-card::after {
  display: none;
}

.pathway-card.minis { background: #fff8e9; }
.pathway-card.juniors { background: #f4fae8; }
.pathway-card.makers { background: #f6f1ff; }
.pathway-card.innovators { background: #eafafa; }

.pathway-mascot,
.mini-mascot {
  display: block;
  background-image: url("assets/wonder-crew-brand-v1.webp");
  background-repeat: no-repeat;
  background-size: 400% 100%;
  mix-blend-mode: multiply;
}

.pathway-mascot {
  width: calc(100% + 52px);
  aspect-ratio: 2.15 / 1;
  margin: 0 -26px 12px;
  background-color: white;
  border-radius: 28px 28px 45% 45%;
}

.mascot-zing { background-position: 0 center; }
.mascot-bolt { background-position: 33.333% center; }
.mascot-pixel { background-position: 66.666% center; }
.mascot-nova { background-position: 100% center; }

.age-badge,
.badge {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.84);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(18, 61, 104, 0.08);
  transform: none;
}

.pathway-card p {
  flex: 1;
}

.pathway-card a {
  color: var(--pink);
  text-decoration-thickness: 2px;
}

.inspiration-panel {
  background: #f1ecff;
}

.impact-card {
  background: white;
  box-shadow: 0 12px 30px rgba(18, 61, 104, 0.08);
}

.impact-card.featured {
  color: white;
  background: var(--purple);
}

.impact-card.featured h3,
.impact-card.featured p {
  color: white;
}

.impact-card.featured::after {
  color: rgba(255, 255, 255, 0.09);
}

.minis-preview {
  position: relative;
  background: #eefaf8;
  box-shadow: 0 0 0 100vmax #eefaf8;
  clip-path: inset(0 -100vmax);
}

.preview-card {
  background: white !important;
}

.activity-card:nth-child(1) { background: #fff7e8; }
.activity-card:nth-child(2) { background: #f6f0ff; }
.activity-card:nth-child(3) { background: #eaf9f7; }
.activity-card:nth-child(4) { background: #fff0f5; }
.activity-card:nth-child(5) { background: #f1f9e4; }
.activity-card:nth-child(6) { background: #eef4fa; }

.badge.orange { background: #ffe2c8; }
.badge.purple { background: #e8dcfa; }
.badge.teal { background: #ccf1ed; }
.badge.pink { background: #ffd9e7; }
.badge.green { background: #e3f3c7; }
.badge.navy { color: var(--navy); background: #dbe8f3; }

.schools {
  position: relative;
  background: #fff8e7;
  box-shadow: 0 0 0 100vmax #fff8e7;
  clip-path: inset(0 -100vmax);
}

.schools-panel,
.contact-card,
.session-panel {
  color: white;
  background: var(--navy);
  background-image: none;
  border-radius: 38px;
}

.schools-panel::after,
.contact-card::after,
.session-panel::after {
  right: -60px;
  top: -60px;
  width: 170px;
  height: 170px;
  background: var(--teal);
  border: 0;
  opacity: 0.28;
}

.schools-panel .eyebrow,
.contact-card .eyebrow,
.session-panel .eyebrow {
  color: var(--navy);
  background: var(--yellow);
}

.school-options div,
.session-steps div {
  color: var(--navy);
  background: white;
  border: 0;
  border-radius: 22px;
  box-shadow: none;
}

.school-options strong,
.session-steps strong {
  color: var(--pink);
}

.session-steps strong {
  color: white;
  background: var(--orange);
  border: 0;
}

.mini-summary-card {
  display: grid;
  color: var(--navy);
  background: #fff5dc;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(18, 61, 104, 0.12);
}

.mini-summary-card h2 {
  color: var(--navy);
}

.mini-mascot {
  width: min(260px, 80%);
  aspect-ratio: 1.1 / 1;
  margin: -46px auto 4px;
}

.mini-facts div {
  background: white;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(18, 61, 104, 0.07);
}

.month-table article {
  background: white;
  border-radius: 26px;
  box-shadow: 0 12px 32px rgba(18, 61, 104, 0.08);
}

.month-table article::before {
  width: 8px;
  border: 0;
}

.free-pack-section {
  position: relative;
  background: #f5f1ff;
  box-shadow: 0 0 0 100vmax #f5f1ff;
  clip-path: inset(0 -100vmax);
}

.free-pack-card {
  background: white;
  box-shadow: 0 18px 46px rgba(18, 61, 104, 0.1);
}

.free-pack-icon {
  padding: 8px;
  background: #eafafa;
  border: 0;
  box-shadow: none;
  transform: none;
}

.free-pack-card .btn {
  border: 0;
  border-radius: 999px;
}

.newsletter-modal {
  background: rgba(18, 61, 104, 0.72);
}

.newsletter-dialog {
  border: 0;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(10, 40, 70, 0.28);
}

.newsletter-dialog::before {
  height: 7px;
  background: var(--teal);
}

.newsletter-close {
  color: white;
  background: var(--navy);
  border: 0;
  border-radius: 50%;
}

.newsletter-field input:not([type="checkbox"]),
.newsletter-field select {
  background: #fbfdff;
  border: 1.5px solid #d9e5ed;
  border-radius: 14px;
}

footer {
  margin-top: 0;
  padding: 48px 20px 54px;
  color: white;
  background: var(--navy);
  border-top: 0;
}

/* Privacy page: same warm, trustworthy character system. */
.privacy-promise {
  background: var(--navy);
  background-image: none;
  border: 0;
  border-radius: 38px;
  box-shadow: 0 20px 50px rgba(18, 61, 104, 0.14);
  transform: none;
}

.privacy-promise .tape {
  display: none;
}

.privacy-updated {
  margin: 28px 0 0;
  color: var(--navy);
  background: #fff5dc;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font-family: inherit;
  transform: none;
}

.privacy-toc {
  background: #eefaf8;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
}

.policy-lead,
.policy-callout,
.policy-purpose-grid > div {
  border: 0;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(18, 61, 104, 0.08);
}

.policy-number {
  color: var(--navy) !important;
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  transform: none;
}

.policy-callout {
  background: #eefaf8;
  border-left: 7px solid var(--teal);
}

.policy-callout.accent {
  background: #fff5dc;
  border-left-color: var(--orange);
}

.policy-purpose-grid > div:nth-child(1),
.policy-purpose-grid > div:nth-child(2),
.policy-purpose-grid > div:nth-child(3) {
  transform: none;
}

@media (max-width: 960px) {
  .nav-links {
    background: white;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(18, 61, 104, 0.16);
  }

  .hero,
  .subpage-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(720px, 100%);
    min-height: 430px;
    margin: 0 auto;
  }

  .maker-manifesto {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .brand img {
    width: 148px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .hero {
    padding-top: 52px;
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-visual-caption {
    top: 0;
    right: 2%;
    max-width: 195px;
    font-size: 0.7rem;
  }

  .hero-crew-chips {
    right: 2%;
    bottom: 2%;
    left: 2%;
    gap: 5px;
  }

  .hero-crew-chips span {
    padding: 6px 8px;
    font-size: 0.62rem;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .center-actions .btn {
    width: 100%;
  }

  .founder-card,
  .inspiration-panel,
  .free-pack-card,
  .schools-panel,
  .contact-card,
  .session-panel,
  .mini-summary-card {
    border-radius: 28px;
    box-shadow: 0 16px 38px rgba(18, 61, 104, 0.1);
  }

  .pathway-card {
    min-height: 0;
  }

  .pathway-mascot {
    aspect-ratio: 2.5 / 1;
  }

  .privacy-promise {
    box-shadow: 0 16px 38px rgba(18, 61, 104, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sketch-bot {
    animation: none;
  }
}

/* Privacy policy */
.privacy-language[data-language="el"] {
  display: none;
}

html[lang="el"] .privacy-language[data-language="en"] {
  display: none;
}

html[lang="el"] .privacy-language[data-language="el"] {
  display: grid;
}

.privacy-hero {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.76fr);
  min-height: 600px;
}

.privacy-promise {
  position: relative;
  padding: clamp(30px, 5vw, 48px);
  color: white;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  border: 3px solid var(--navy);
  border-radius: 20px;
  box-shadow: 10px 10px 0 var(--yellow);
  transform: rotate(1deg);
}

.privacy-promise h2 {
  margin-bottom: 24px;
  color: white;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.privacy-promise ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-promise li {
  position: relative;
  padding-left: 27px;
  font-weight: 800;
  line-height: 1.45;
}

.privacy-promise li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.privacy-updated {
  width: fit-content;
  margin: 34px 0 -66px auto;
  padding: 11px 14px;
  color: var(--navy);
  background: var(--paper);
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 var(--pink);
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  font-size: 0.88rem;
  font-weight: 700;
  transform: rotate(-2deg);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: start;
  padding-top: 34px;
}

.privacy-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 4px;
  padding: 22px;
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 12px;
  box-shadow: 5px 5px 0 var(--navy);
}

.privacy-toc strong {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-toc a {
  padding: 7px 0;
  color: var(--navy);
  border-bottom: 1px dashed rgba(9, 47, 85, 0.35);
  font-size: 0.87rem;
  font-weight: 800;
  line-height: 1.3;
}

.privacy-toc a:last-child {
  border-bottom: 0;
}

.privacy-toc a:hover {
  color: #a10d49;
}

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

.privacy-article > section {
  position: relative;
  padding: 42px 0 52px;
  border-bottom: 2px dashed rgba(9, 47, 85, 0.28);
  scroll-margin-top: 104px;
}

.privacy-article > section:first-child {
  padding-top: 0;
}

.privacy-article > section:last-child {
  border-bottom: 0;
}

.privacy-article h2 {
  max-width: 760px;
  margin-bottom: 23px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.privacy-article h3 {
  margin: 30px 0 9px;
  color: var(--navy);
  font-size: 1.22rem;
}

.privacy-article p,
.privacy-article li {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.74;
}

.privacy-article ul {
  display: grid;
  gap: 8px;
  padding-left: 23px;
}

.privacy-article a {
  color: #9e0d49;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.policy-lead {
  margin: 0;
  padding: clamp(24px, 4vw, 36px);
  background: #e7f8f6;
  border: 2px solid var(--navy);
  border-radius: 14px;
  box-shadow: 6px 6px 0 var(--navy);
  font-size: clamp(1.08rem, 2vw, 1.25rem) !important;
  font-weight: 700;
}

.policy-number {
  display: inline-flex;
  min-width: 46px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 4px 9px;
  color: var(--navy) !important;
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 5px;
  font-size: 0.78rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1 !important;
  transform: rotate(-2deg);
}

.policy-callout {
  display: grid;
  gap: 5px;
  margin: 28px 0;
  padding: 22px 24px;
  background: var(--paper);
  border: 2px solid var(--navy);
  border-left: 10px solid var(--teal);
  border-radius: 10px;
  box-shadow: 5px 5px 0 var(--navy);
}

.policy-callout.accent {
  background: #fff1d9;
  border-left-color: var(--orange);
}

.policy-callout strong {
  color: var(--navy);
}

.policy-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.policy-purpose-grid > div {
  padding: 22px;
  background: var(--paper);
  border: 2px solid var(--navy);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--navy);
}

.policy-purpose-grid > div:nth-child(1) { background: #fff2da; transform: rotate(-0.45deg); }
.policy-purpose-grid > div:nth-child(2) { background: #e7f8f6; transform: rotate(0.45deg); }
.policy-purpose-grid > div:nth-child(3) { background: #f3eaff; transform: rotate(-0.25deg); }

.policy-purpose-grid h3 {
  margin-top: 0;
}

.policy-purpose-grid p,
.policy-purpose-grid strong {
  font-size: 0.92rem;
  line-height: 1.55;
}

.policy-sources {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 2px solid var(--navy);
  font-size: 0.9rem !important;
}

.footer-privacy {
  display: inline-block;
  margin-left: 12px;
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-privacy:hover {
  color: white;
}

@media (max-width: 960px) {
  .privacy-hero,
  html[lang="el"] .privacy-hero[data-language="el"],
  .privacy-layout,
  html[lang="el"] .privacy-layout[data-language="el"] {
    grid-template-columns: 1fr;
  }

  .privacy-promise {
    width: min(620px, calc(100% - 12px));
    margin: 0 auto;
  }

  .privacy-toc {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .privacy-toc strong {
    grid-column: 1 / -1;
  }

  .policy-purpose-grid {
    grid-template-columns: 1fr;
  }

  .policy-purpose-grid > div {
    transform: none !important;
  }
}

@media (max-width: 700px) {
  .privacy-hero {
    padding-bottom: 88px;
  }

  .privacy-promise {
    width: calc(100% - 8px);
    transform: none;
  }

  .privacy-updated {
    margin-bottom: -58px;
  }

  .privacy-layout {
    padding-top: 10px;
  }

  .privacy-toc {
    grid-template-columns: 1fr 1fr;
    padding: 18px;
  }

  .privacy-article > section {
    padding: 34px 0 42px;
  }

  .policy-callout,
  .policy-lead {
    box-shadow: 4px 4px 0 var(--navy);
  }

  .footer-privacy {
    display: block;
    width: fit-content;
    margin: 10px auto 0;
  }
}

/* ==========================================================================
   Wonderforms identity
   A simple face-led brand system with original STEM-inspired character shapes.
   ========================================================================== */

.brand {
  gap: 9px;
  min-width: 158px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  transform: none;
}

.brand-mark::before,
.brand-mark::after {
  content: none;
}

.brand-face {
  position: absolute;
  inset: 5px 2px 2px;
  background: var(--teal);
  border-radius: 14px 14px 16px 9px;
  box-shadow: inset 0 -4px 0 rgba(18, 61, 104, 0.12);
  transform: rotate(-4deg);
  transition: transform 180ms ease;
}

.brand-face::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  width: 23px;
  height: 11px;
  background:
    radial-gradient(circle at 27% 50%, var(--navy) 0 2.4px, white 2.6px 5.5px, transparent 5.7px),
    radial-gradient(circle at 73% 50%, var(--navy) 0 2.4px, white 2.6px 5.5px, transparent 5.7px);
}

.brand-face::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 13px;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid var(--navy);
  border-radius: 50%;
}

.brand-spark {
  top: -1px;
  right: -3px;
  color: var(--orange);
  font-size: 13px;
}

.brand-wordmark {
  line-height: 0.86;
}

.brand-wordmark > span {
  font-size: 1.34rem;
  letter-spacing: -0.065em;
  text-transform: lowercase;
}

.brand-wordmark > strong {
  margin-top: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}

.brand:hover .brand-face {
  transform: rotate(1deg) translateY(-1px);
}

.wonderforms {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 370px;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(10px, 2vw, 22px);
  padding: 70px 7% 62px;
}

.wonderform {
  position: relative;
  display: block;
  width: clamp(82px, 9vw, 122px);
  flex: 0 1 122px;
  box-shadow: 0 13px 0 rgba(18, 61, 104, 0.09);
  transform-origin: center bottom;
}

.wonderform-face {
  position: absolute;
  top: 31%;
  left: 50%;
  width: 70%;
  height: 48px;
  transform: translateX(-50%);
}

.wonderform-face::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 27% 50%, var(--navy) 0 5px, white 5.5px 12px, transparent 12.5px),
    radial-gradient(circle at 73% 50%, var(--navy) 0 5px, white 5.5px 12px, transparent 12.5px);
}

.wonderform-face::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 24px;
  height: 12px;
  border-bottom: 4px solid var(--navy);
  border-radius: 50%;
  transform: translateX(-50%);
}

.wonderform-zing {
  height: 144px;
  background: var(--orange);
  border-radius: 48% 52% 44% 56% / 42% 48% 52% 58%;
  transform: rotate(-7deg);
}

.wonderform-zing::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 44%;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border-radius: 50%;
}

.wonderform-bolt {
  height: 174px;
  background: var(--green);
  border-radius: 58px 58px 23px 23px;
  transform: translateY(-12px);
}

.wonderform-bolt::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 42px;
  height: 22px;
  background: #b7df5b;
  border-radius: 50% 50% 8px 8px;
  transform: translateX(-50%);
}

.wonderform-pixel {
  height: 138px;
  background: var(--purple);
  border-radius: 30px 44px 27px 38px;
  transform: rotate(6deg);
}

.wonderform-pixel::before {
  content: "";
  position: absolute;
  top: 19px;
  right: -8px;
  width: 13px;
  height: 13px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 25px 0 var(--pink), 0 50px 0 var(--pink);
}

.wonderform-nova {
  height: 220px;
  background: var(--teal);
  border-radius: 68px 68px 28px 28px;
  transform: rotate(-3deg) translateY(-4px);
}

.wonderform-nova::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 36px;
  height: 26px;
  border: 5px solid #65d6dc;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-12deg);
}

.pathway-mascot,
.mini-mascot {
  position: relative;
  display: block;
  width: 138px;
  height: 116px;
  aspect-ratio: auto;
  margin: 24px auto 20px;
  background-image: none;
  background-color: var(--teal);
  background-repeat: initial;
  background-size: initial;
  border-radius: 42% 48% 37% 50% / 38% 44% 48% 52%;
  box-shadow: 0 11px 0 rgba(18, 61, 104, 0.08);
  mix-blend-mode: normal;
  transform: none;
}

.pathway-mascot::before,
.mini-mascot::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 50%;
  width: 74px;
  height: 34px;
  background:
    radial-gradient(circle at 27% 50%, var(--navy) 0 4px, white 4.5px 10px, transparent 10.5px),
    radial-gradient(circle at 73% 50%, var(--navy) 0 4px, white 4.5px 10px, transparent 10.5px);
  transform: translateX(-50%);
}

.pathway-mascot::after,
.mini-mascot::after {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: 24px;
  height: 11px;
  border-bottom: 4px solid var(--navy);
  border-radius: 50%;
  transform: translateX(-50%);
}

.pathway-mascot.mascot-zing,
.mini-mascot.mascot-zing {
  background-color: var(--orange);
  border-radius: 48% 52% 44% 56% / 42% 48% 52% 58%;
  transform: rotate(-4deg);
}

.pathway-mascot.mascot-bolt,
.mini-mascot.mascot-bolt {
  background-color: var(--green);
  border-radius: 52px 52px 22px 22px;
}

.pathway-mascot.mascot-pixel,
.mini-mascot.mascot-pixel {
  background-color: var(--purple);
  border-radius: 28px 39px 25px 35px;
  transform: rotate(4deg);
}

.pathway-mascot.mascot-nova,
.mini-mascot.mascot-nova {
  background-color: var(--teal);
  border-radius: 58px 58px 24px 24px;
  transform: rotate(-3deg);
}

.mini-mascot {
  width: 164px;
  height: 142px;
  margin: -34px auto 12px;
}

@media (max-width: 960px) {
  .wonderforms {
    height: 340px;
    padding-right: 10%;
    padding-left: 10%;
  }
}

@media (max-width: 700px) {
  .brand {
    min-width: 143px;
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-wordmark > span {
    font-size: 1.12rem;
  }

  .brand-wordmark > strong {
    font-size: 0.61rem;
  }

  .wonderforms {
    width: 108%;
    height: 286px;
    gap: 8px;
    margin-left: -4%;
    padding: 70px 3% 55px;
  }

  .wonderform {
    width: clamp(62px, 20vw, 86px);
  }

  .wonderform-face {
    height: 40px;
  }

  .wonderform-face::before {
    background:
      radial-gradient(circle at 27% 50%, var(--navy) 0 3.5px, white 4px 8.5px, transparent 9px),
      radial-gradient(circle at 73% 50%, var(--navy) 0 3.5px, white 4px 8.5px, transparent 9px);
  }

  .wonderform-face::after {
    width: 18px;
    height: 9px;
    border-bottom-width: 3px;
  }

  .wonderform-zing { height: 108px; }
  .wonderform-bolt { height: 132px; }
  .wonderform-pixel { height: 104px; }
  .wonderform-nova { height: 144px; }
}

/* Wonder Crew flat redraw — original silhouettes, simplified construction */
.wonderform {
  isolation: isolate;
  overflow: visible;
  box-shadow: 0 13px 0 rgba(18, 61, 104, 0.09);
}

.wonderform-face {
  z-index: 5;
}

.wonderform-prop {
  position: absolute;
  z-index: 6;
  display: block;
}

/* Zing: sun explorer with teal goggles and magnifying glass */
.wonderform-zing {
  width: 118px;
  height: 118px;
  flex-basis: 118px;
  background: #ff8a1f;
  border-radius: 50%;
  transform: rotate(-5deg);
}

.wonderform-zing::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22px;
  width: auto;
  height: auto;
  background: var(--orange);
  border-radius: 0;
  clip-path: polygon(
    44% 0, 56% 0, 61% 17%, 72% 7%, 80% 20%, 96% 17%,
    91% 34%, 100% 44%, 83% 50%, 100% 58%, 91% 68%, 96% 84%,
    79% 81%, 71% 94%, 60% 83%, 55% 100%, 43% 100%, 38% 83%,
    27% 94%, 19% 81%, 3% 85%, 8% 68%, 0 57%, 17% 50%,
    0 42%, 9% 32%, 4% 16%, 21% 20%, 29% 7%, 39% 17%
  );
  transform: none;
}

.wonderform-zing::after {
  content: none;
}

.wonderform-zing .wonderform-face {
  top: 27%;
  width: 84%;
  height: 52px;
  background: rgba(202, 247, 249, 0.48);
  border: 5px solid var(--teal);
  border-radius: 999px;
}

.wonderform-zing .wonderform-prop {
  top: 53px;
  right: -25px;
  width: 38px;
  height: 38px;
  background: #e7fbfc;
  border: 6px solid var(--teal);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.wonderform-zing .wonderform-prop::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -20px;
  width: 8px;
  height: 28px;
  background: var(--navy);
  border-radius: 999px;
  transform: rotate(-39deg);
}

/* Bolt: gear builder holding two blocks */
.wonderform-bolt {
  width: 132px;
  height: 132px;
  flex-basis: 132px;
  background: #9bd13c;
  border-radius: 50%;
  transform: translateY(-8px);
}

.wonderform-bolt::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -19px;
  width: auto;
  height: auto;
  background: var(--green);
  border-radius: 0;
  clip-path: polygon(
    42% 0, 58% 0, 62% 12%, 72% 15%, 82% 7%, 93% 18%,
    85% 28%, 88% 38%, 100% 42%, 100% 58%, 88% 62%, 85% 72%,
    93% 82%, 82% 93%, 72% 85%, 62% 88%, 58% 100%, 42% 100%,
    38% 88%, 28% 85%, 18% 93%, 7% 82%, 15% 72%, 12% 62%,
    0 58%, 0 42%, 12% 38%, 15% 28%, 7% 18%, 18% 7%,
    28% 15%, 38% 12%
  );
  transform: none;
}

.wonderform-bolt .wonderform-face {
  top: 27%;
}

.wonderform-bolt .wonderform-prop {
  bottom: 13px;
  left: -12px;
  width: 32px;
  height: 25px;
  background: var(--pink);
  border-radius: 5px;
  box-shadow: 82px 0 0 var(--yellow);
}

.wonderform-bolt .wonderform-prop::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 6px;
  width: 7px;
  height: 5px;
  background: #ca1d61;
  border-radius: 2px 2px 0 0;
  box-shadow:
    13px 0 0 #ca1d61,
    82px 0 0 #d6a900,
    95px 0 0 #d6a900;
}

/* Pixel: robot with antenna and control panel */
.wonderform-pixel {
  width: 124px;
  height: 166px;
  flex-basis: 124px;
  background: var(--purple);
  border-radius: 28px 35px 25px 31px;
  transform: rotate(3deg);
}

.wonderform-pixel::before {
  content: none;
}

.wonderform-pixel::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  height: 31px;
  background:
    linear-gradient(var(--yellow) 0 0) 10px 9px / 12px 12px no-repeat,
    linear-gradient(var(--pink) 0 0) 30px 9px / 12px 12px no-repeat,
    linear-gradient(#65d6dc 0 0) 52px 9px / 17px 12px no-repeat,
    #553395;
  border-radius: 9px;
}

.wonderform-pixel .wonderform-face {
  top: 13%;
  width: 78%;
  height: 62px;
  background: #a986db;
  border-radius: 16px;
}

.wonderform-pixel .wonderform-prop {
  top: -32px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--pink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.wonderform-pixel .wonderform-prop::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 6px;
  width: 6px;
  height: 20px;
  background: var(--navy);
  border-radius: 999px;
}

/* Nova: comet explorer with gold goggles, scarf and notebook */
.wonderform-nova {
  width: 118px;
  height: 152px;
  flex-basis: 118px;
  background: var(--teal);
  border-radius: 58% 48% 42% 48% / 45% 50% 44% 55%;
  transform: rotate(-3deg) translateY(-4px);
}

.wonderform-nova::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -41px;
  right: -74px;
  width: 112px;
  height: 114px;
  background: var(--teal);
  border: 0;
  border-radius: 0;
  clip-path: polygon(0 39%, 100% 0, 62% 40%, 100% 50%, 60% 59%, 96% 100%, 0 69%);
  transform: rotate(-9deg);
}

.wonderform-nova::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 27px;
  left: -5px;
  height: 15px;
  background: var(--yellow);
  border-radius: 999px;
  transform: rotate(-4deg);
}

.wonderform-nova .wonderform-face {
  top: 24%;
  width: 83%;
  height: 51px;
  background: rgba(255, 235, 145, 0.3);
  border: 5px solid var(--yellow);
  border-radius: 999px;
}

.wonderform-nova .wonderform-prop {
  right: -17px;
  bottom: -8px;
  width: 46px;
  height: 56px;
  background: var(--navy);
  border: 3px solid #0a2d50;
  border-radius: 6px;
  transform: rotate(8deg);
}

.wonderform-nova .wonderform-prop::before {
  content: "✦";
  position: absolute;
  top: 13px;
  left: 13px;
  color: var(--pink);
  font-size: 20px;
  line-height: 1;
}

.wonderform-nova .wonderform-prop::after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: 2px;
  background: #65d6dc;
}

/* Reusable miniature versions for programme cards and Preschool */
.pathway-mascot,
.mini-mascot {
  isolation: isolate;
  overflow: visible;
  background-image: none;
}

.mascot-face {
  position: absolute;
  z-index: 5;
  top: 30%;
  left: 50%;
  width: 67%;
  height: 45%;
  transform: translateX(-50%);
}

.mascot-face::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 27% 42%, var(--navy) 0 4px, white 4.5px 10px, transparent 10.5px),
    radial-gradient(circle at 73% 42%, var(--navy) 0 4px, white 4.5px 10px, transparent 10.5px);
}

.mascot-face::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 22px;
  height: 10px;
  border-bottom: 4px solid var(--navy);
  border-radius: 50%;
  transform: translateX(-50%);
}

.pathway-mascot.mascot-zing,
.mini-mascot.mascot-zing {
  width: 116px;
  height: 116px;
  background: #ff8a1f;
  border-radius: 50%;
  transform: rotate(-3deg);
}

.pathway-mascot.mascot-zing::before,
.mini-mascot.mascot-zing::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -16px;
  width: auto;
  height: auto;
  background: var(--orange);
  clip-path: polygon(
    44% 0, 56% 0, 61% 17%, 72% 7%, 80% 20%, 96% 17%,
    91% 34%, 100% 44%, 83% 50%, 100% 58%, 91% 68%, 96% 84%,
    79% 81%, 71% 94%, 60% 83%, 55% 100%, 43% 100%, 38% 83%,
    27% 94%, 19% 81%, 3% 85%, 8% 68%, 0 57%, 17% 50%,
    0 42%, 9% 32%, 4% 16%, 21% 20%, 29% 7%, 39% 17%
  );
  transform: none;
}

.pathway-mascot.mascot-zing::after,
.mini-mascot.mascot-zing::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 29%;
  left: 9%;
  width: 82%;
  height: 40%;
  background: rgba(202, 247, 249, 0.38);
  border: 4px solid var(--teal);
  border-radius: 999px;
  transform: none;
}

.pathway-mascot.mascot-bolt,
.mini-mascot.mascot-bolt {
  width: 118px;
  height: 118px;
  background: #9bd13c;
  border-radius: 50%;
  transform: none;
}

.pathway-mascot.mascot-bolt::before,
.mini-mascot.mascot-bolt::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -17px;
  width: auto;
  height: auto;
  background: var(--green);
  clip-path: polygon(
    42% 0, 58% 0, 62% 12%, 72% 15%, 82% 7%, 93% 18%,
    85% 28%, 88% 38%, 100% 42%, 100% 58%, 88% 62%, 85% 72%,
    93% 82%, 82% 93%, 72% 85%, 62% 88%, 58% 100%, 42% 100%,
    38% 88%, 28% 85%, 18% 93%, 7% 82%, 15% 72%, 12% 62%,
    0 58%, 0 42%, 12% 38%, 15% 28%, 7% 18%, 18% 7%,
    28% 15%, 38% 12%
  );
  transform: none;
}

.pathway-mascot.mascot-bolt::after,
.mini-mascot.mascot-bolt::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: -8px;
  bottom: 8px;
  left: auto;
  width: 29px;
  height: 22px;
  background: var(--yellow);
  border: 0;
  border-radius: 4px;
  transform: none;
}

.pathway-mascot.mascot-pixel,
.mini-mascot.mascot-pixel {
  width: 110px;
  height: 126px;
  background: var(--purple);
  border-radius: 24px 30px 22px 27px;
  transform: rotate(2deg);
}

.pathway-mascot.mascot-pixel::before,
.mini-mascot.mascot-pixel::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 15px;
  height: 15px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 13px 0 -5px var(--navy);
  transform: translateX(-50%);
}

.pathway-mascot.mascot-pixel::after,
.mini-mascot.mascot-pixel::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  width: auto;
  height: 23px;
  background:
    linear-gradient(var(--yellow) 0 0) 8px 7px / 9px 9px no-repeat,
    linear-gradient(var(--pink) 0 0) 24px 7px / 9px 9px no-repeat,
    linear-gradient(#65d6dc 0 0) 40px 7px / 14px 9px no-repeat,
    #553395;
  border: 0;
  border-radius: 7px;
  transform: none;
}

.pathway-mascot.mascot-pixel .mascot-face,
.mini-mascot.mascot-pixel .mascot-face {
  top: 18%;
  height: 45%;
  background: #a986db;
  border-radius: 13px;
}

.pathway-mascot.mascot-nova,
.mini-mascot.mascot-nova {
  width: 108px;
  height: 125px;
  background: var(--teal);
  border-radius: 58% 48% 42% 48% / 45% 50% 44% 55%;
  transform: rotate(-2deg);
}

.pathway-mascot.mascot-nova::before,
.mini-mascot.mascot-nova::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30px;
  right: -59px;
  left: auto;
  width: 88px;
  height: 92px;
  background: var(--teal);
  border: 0;
  border-radius: 0;
  clip-path: polygon(0 39%, 100% 0, 62% 40%, 100% 50%, 60% 59%, 96% 100%, 0 69%);
  transform: rotate(-9deg);
}

.pathway-mascot.mascot-nova::after,
.mini-mascot.mascot-nova::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: -4px;
  bottom: 20px;
  left: -4px;
  width: auto;
  height: 12px;
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  transform: rotate(-4deg);
}

.pathway-mascot.mascot-nova .mascot-face,
.mini-mascot.mascot-nova .mascot-face {
  top: 24%;
  width: 83%;
  height: 43%;
  background: rgba(255, 235, 145, 0.26);
  border: 4px solid var(--yellow);
  border-radius: 999px;
}

.mini-mascot.mascot-zing {
  width: 152px;
  height: 152px;
  margin: -34px auto 15px;
}

@media (max-width: 700px) {
  .wonderforms {
    width: 147%;
    height: 292px;
    margin-left: -23.5%;
    padding: 72px 5% 57px;
    transform: scale(0.68);
    transform-origin: center bottom;
  }
}

/* Wonder Crew brand system v1
   Shared construction, defining props and connected action poses. */
.hero-visual > img {
  width: 100%;
  margin-left: 0;
}

.pathway-mascot,
.mini-mascot {
  display: block;
  isolation: auto;
  overflow: hidden;
  background-image: url("assets/wonder-crew-brand-v1.webp");
  background-repeat: no-repeat;
  background-size: 400% 100%;
  mix-blend-mode: multiply;
  transform: none;
  box-shadow: none;
}

.pathway-mascot::before,
.pathway-mascot::after,
.mini-mascot::before,
.mini-mascot::after {
  content: none;
}

.pathway-mascot.mascot-zing::before,
.pathway-mascot.mascot-zing::after,
.pathway-mascot.mascot-bolt::before,
.pathway-mascot.mascot-bolt::after,
.pathway-mascot.mascot-pixel::before,
.pathway-mascot.mascot-pixel::after,
.pathway-mascot.mascot-nova::before,
.pathway-mascot.mascot-nova::after,
.mini-mascot.mascot-zing::before,
.mini-mascot.mascot-zing::after {
  content: none;
}

.pathway-mascot.mascot-zing,
.pathway-mascot.mascot-bolt,
.pathway-mascot.mascot-pixel,
.pathway-mascot.mascot-nova {
  width: calc(100% + 52px);
  height: 190px;
  aspect-ratio: auto;
  margin: 0 -26px 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 42%;
  background-color: white;
  border-radius: 28px 28px 45% 45%;
  transform: none;
}

.pathway-mascot.mascot-zing {
  background-image: url("assets/wonder-zing-brand-v1.webp");
}

.pathway-mascot.mascot-bolt {
  background-image: url("assets/wonder-bolt-brand-v1.webp");
}

.pathway-mascot.mascot-pixel {
  background-image: url("assets/wonder-pixel-brand-v1.webp");
}

.pathway-mascot.mascot-nova {
  background-image: url("assets/wonder-nova-brand-v1.webp");
}

.mini-mascot,
.mini-mascot.mascot-zing {
  width: min(260px, 80%);
  height: auto;
  aspect-ratio: 1.1 / 1;
  margin: -46px auto 4px;
  background-image: url("assets/wonder-zing-brand-v1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-position: center 42%;
  border-radius: 0;
  transform: none;
}

/* Pixel-led WonderLab identity */
.brand {
  gap: 10px;
  min-width: 164px;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  overflow: visible;
  place-items: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.brand-mark::before,
.brand-mark::after {
  content: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 5px 7px rgba(18, 61, 104, 0.12));
  transition: transform 180ms ease;
}

.brand:hover .brand-mark img {
  transform: scale(1.035) translateY(-1px);
}

@media (max-width: 700px) {
  .brand {
    min-width: 152px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 0;
  }
}

/* ==========================================================================
   Site-wide WonderLab system
   One header, palette, illustration language and surface treatment everywhere.
   ========================================================================== */

:root {
  --navy: #123d68;
  --green: #8ac926;
  --orange: #ff7a00;
  --purple: #7d4bc6;
  --teal: #00aeb8;
  --pink: #f62f77;
  --yellow: #ffd43b;
  --ink: #18334d;
  --muted: #5f7184;
  --bg: #ffffff;
  --paper: #ffffff;
  --card: #ffffff;
  --line: #dfe9f0;
  --wash-teal: #eaf9f7;
  --wash-yellow: #fff5df;
  --wash-purple: #f3efff;
  --wash-pink: #ffedf4;
  --wash-green: #f0f8df;
  --wash-blue: #eef4fa;
  --shadow: 0 18px 48px rgba(18, 61, 104, 0.11);
  --radius: 30px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e8eff4;
  box-shadow: 0 6px 24px rgba(18, 61, 104, 0.05);
}

.nav {
  width: min(1240px, calc(100% - 40px));
  min-height: 80px;
}

.nav-links {
  gap: clamp(12px, 1.5vw, 22px);
  color: var(--navy);
  font-size: 0.76rem;
  letter-spacing: 0.055em;
}

.nav-links a[aria-current="page"] {
  color: var(--navy);
}

.nav-links a[aria-current="page"]::after {
  background: var(--pink);
  transform: scaleX(1);
}

.subpage-hero {
  position: relative;
  isolation: isolate;
  min-height: 610px;
}

.subpage-hero .hero-copy {
  max-width: 670px;
}

.subpage-hero h1 {
  font-size: clamp(3.35rem, 6vw, 5.75rem);
}

.note-card > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--purple);
  background: white;
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(18, 61, 104, 0.08);
  font-size: 1.7rem;
}

.free-pack-icon,
.newsletter-icon {
  background: var(--wash-purple);
  border: 0;
  border-radius: 22px;
  box-shadow: none;
  object-fit: contain;
}

.free-pack-icon {
  padding: 9px;
}

.newsletter-icon {
  padding: 6px;
}

/* Preschool follows the same character-led hero and rounded card system. */
.preschool-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 16%;
  right: -3%;
  width: 48%;
  height: 68%;
  background: var(--wash-teal);
  border-radius: 51% 49% 43% 57% / 47% 55% 45% 53%;
  transform: rotate(3deg);
}

.preschool-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 14%;
  right: 3%;
  width: 112px;
  height: 112px;
  background: #fff1b5;
  border-radius: 50%;
}

.preschool-hero .mini-summary-card {
  position: relative;
  isolation: isolate;
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
  color: var(--navy);
  background: var(--wash-yellow);
  border: 0;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.preschool-hero .mini-summary-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -90px;
  left: 50%;
  width: 360px;
  height: 360px;
  background: white;
  border-radius: 48% 52% 45% 55%;
  transform: translateX(-50%) rotate(-4deg);
}

.preschool-hero .mini-summary-card h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.preschool-hero .mini-mascot,
.preschool-hero .mini-mascot.mascot-zing {
  display: block;
  width: min(330px, 86%);
  height: auto;
  max-height: 370px;
  margin: -20px auto 14px;
  object-fit: contain;
  object-position: center;
  background: none;
  border-radius: 0;
  mix-blend-mode: normal;
}

.preschool-hero .mini-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preschool-hero .mini-facts div {
  min-width: 0;
  padding: 18px;
  background: white;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(18, 61, 104, 0.07);
}

html[data-page="preschool"] #timeline {
  position: relative;
  background: #fbfcff;
  box-shadow: 0 0 0 100vmax #fbfcff;
  clip-path: inset(0 -100vmax);
}

/* Privacy keeps its legal clarity while using the same friendly brand system. */
.privacy-hero {
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 0.86fr);
  gap: clamp(34px, 6vw, 76px);
}

.privacy-promise {
  position: relative;
  padding: clamp(30px, 4.5vw, 46px);
  overflow: hidden;
  color: var(--ink);
  background: var(--wash-purple);
  background-image: none;
  border: 0;
  border-radius: 38px;
  box-shadow: var(--shadow);
  transform: none;
}

.privacy-character {
  display: block;
  width: clamp(118px, 14vw, 158px);
  height: auto;
  margin: -16px auto 8px;
  filter: drop-shadow(0 12px 18px rgba(18, 61, 104, 0.12));
}

.privacy-promise .board-kicker {
  margin-bottom: 14px;
  color: #0d6970;
  background: #dff6f3;
  border-radius: 999px;
  transform: none;
}

.privacy-promise h2 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.15rem, 3.7vw, 3.35rem);
}

.privacy-promise li {
  color: var(--ink);
}

.privacy-promise li::before {
  color: var(--teal);
}

.privacy-updated {
  margin: 28px 0 0;
  color: var(--navy);
  background: #fff3c2;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font-family: inherit;
  transform: none;
}

.privacy-toc {
  background: var(--wash-teal);
  border: 0;
  border-radius: 24px;
  box-shadow: none;
}

.privacy-article > section {
  border-bottom: 1px solid var(--line);
}

.policy-lead,
.policy-callout,
.policy-purpose-grid > div {
  border: 0;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(18, 61, 104, 0.08);
}

.policy-lead,
.policy-callout {
  background: var(--wash-teal);
}

.policy-callout {
  border-left: 7px solid var(--teal);
}

.policy-callout.accent {
  background: var(--wash-yellow);
  border-left-color: var(--orange);
}

.policy-purpose-grid > div:nth-child(1) { background: var(--wash-yellow); }
.policy-purpose-grid > div:nth-child(2) { background: var(--wash-teal); }
.policy-purpose-grid > div:nth-child(3) { background: var(--wash-purple); }

footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .nav-links a[aria-current="page"] {
    background: var(--wash-teal);
    border-radius: 12px;
  }

  .preschool-hero::before {
    top: auto;
    right: 4%;
    bottom: 4%;
    width: 92%;
    height: 48%;
  }

  .privacy-hero {
    grid-template-columns: 1fr;
  }

  .privacy-promise {
    width: min(620px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .nav {
    width: min(100% - 28px, 1240px);
    min-height: 74px;
  }

  .subpage-hero {
    padding-top: 54px;
  }

  .subpage-hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.5rem);
  }

  .preschool-hero::before {
    right: -6%;
    width: 112%;
    height: 43%;
  }

  .preschool-hero .mini-summary-card {
    border-radius: 28px;
  }

  .preschool-hero .mini-mascot,
  .preschool-hero .mini-mascot.mascot-zing {
    width: min(280px, 88%);
    height: auto;
    max-height: none;
    margin-top: -12px;
  }

  .preschool-hero .mini-facts {
    grid-template-columns: 1fr;
  }

  .privacy-hero {
    padding-bottom: 70px;
  }

  .privacy-promise {
    width: 100%;
    border-radius: 28px;
  }

  .privacy-updated {
    margin: 24px 0 0;
  }
}

/* Compact information panels
   Keep dark calls-to-action dense, readable and content-led. */
.schools,
.session-section,
.contact {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.schools-panel,
.session-panel,
.contact-card {
  width: min(100%, 1120px);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(32px, 4vw, 50px);
}

.schools-panel > *,
.session-panel > *,
.contact-card > * {
  position: relative;
  z-index: 1;
}

.schools-panel h2,
.session-panel h2,
.contact-card h2 {
  color: white;
}

.schools-panel h2,
.session-panel h2 {
  font-size: clamp(2.15rem, 3.7vw, 3.55rem);
}

.contact-card {
  width: min(100%, 1000px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  grid-template-areas:
    "eyebrow actions"
    "title actions"
    "copy actions"
    "note actions";
  column-gap: clamp(32px, 5vw, 58px);
  row-gap: 13px;
  align-items: center;
  text-align: left;
}

.contact-card .eyebrow {
  grid-area: eyebrow;
  width: fit-content;
  margin: 0;
}

.contact-card h2 {
  grid-area: title;
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.15rem, 3.4vw, 3.35rem);
  line-height: 0.98;
}

.contact-card > p:not(.eyebrow):not(.small-note) {
  grid-area: copy;
  max-width: 620px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-card .contact-actions {
  grid-area: actions;
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
}

.contact-card .contact-actions .btn {
  width: 100%;
  min-width: 0;
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
}

.contact-card .small-note {
  grid-area: note;
  margin: 2px 0 0;
  font-size: 0.84rem;
  text-align: left;
}

.session-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
}

.session-panel h2 {
  margin-bottom: 0;
  line-height: 0.98;
}

.session-panel .session-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.session-panel .session-steps div {
  min-height: 126px;
  padding: 17px 15px;
}

.session-panel .session-steps strong {
  margin-bottom: 13px;
}

.session-panel .session-steps span {
  font-size: 0.92rem;
  line-height: 1.35;
}

.schools-panel .school-options {
  gap: 14px;
  margin-top: 24px;
}

.schools-panel .school-options div {
  padding: 18px;
}

@media (max-width: 1080px) {
  .session-panel {
    grid-template-columns: 1fr;
  }

  .session-panel > div:first-child {
    max-width: 680px;
  }
}

@media (max-width: 800px) {
  .contact-card {
    display: block;
    text-align: center;
  }

  .contact-card .eyebrow {
    margin-right: auto;
    margin-bottom: 15px;
    margin-left: auto;
  }

  .contact-card h2 {
    margin-right: auto;
    margin-bottom: 17px;
    margin-left: auto;
  }

  .contact-card > p:not(.eyebrow):not(.small-note) {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-card .contact-actions {
    width: min(100%, 420px);
    margin: 22px auto 0;
  }

  .contact-card .small-note {
    margin-top: 16px;
    text-align: center;
  }

  .session-panel .session-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .session-panel .session-steps div {
    min-height: 112px;
  }
}

@media (max-width: 520px) {
  .schools-panel,
  .session-panel,
  .contact-card {
    padding: 28px 22px;
  }

  .session-panel .session-steps {
    grid-template-columns: 1fr;
  }

  .session-panel .session-steps div {
    min-height: 0;
  }
}
