@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap");

:root {
  --ink: #1A0B3B;
  --muted: #5A5378;
  --soft-muted: #9B93B8;
  --line: #E7E1F7;
  --paper: #F7F4FF;
  --wash: #EFE9FC;
  --surface: #FFFFFF;
  --brand: #24049E;
  --brand-2: #4111C9;
  --flame: #F25B33;
  --peach: #FF8766;
  --lilac: #BF67FE;
  --sky: #00C2FF;
  --mint: #E7F7EE;
  --green: #1F9E5A;
  --warning: #FFF6E5;
  --shadow: 0 20px 55px rgba(26, 11, 59, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 255, 0.92);
  border-bottom: 1px solid rgba(231, 225, 247, 0.95);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Fredoka", ui-rounded, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.brand > span:last-child span {
  color: var(--flame);
}

.brand-logo {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 800;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--brand);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--flame);
  color: #FFFFFF;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(242, 91, 51, 0.25);
  cursor: pointer;
}

.button.secondary {
  background: #FFFFFF;
  color: var(--brand);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button.dark {
  background: var(--brand);
}

.button:hover {
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--brand);
  font: inherit;
  font-weight: 900;
}

.sandbox-banner {
  display: none;
  background: var(--brand);
  color: #FFFFFF;
  text-align: center;
  padding: 10px 16px;
  font-weight: 800;
}

.is-sandbox .sandbox-banner {
  display: block;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 16% 18%, rgba(191, 103, 254, 0.18), transparent 25%),
    radial-gradient(circle at 86% 20%, rgba(0, 194, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper) 100%);
}

.hero-grid,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 52px;
  align-items: center;
  padding: 66px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--flame);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Fredoka", ui-rounded, system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 8.4vw, 6.4rem);
  font-weight: 700;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 700;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 650;
}

.lead {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.16rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  left: 26px;
  bottom: -26px;
  max-width: 320px;
  padding: 16px 18px;
  background: var(--warning);
  border: 2px solid var(--ink);
  border-radius: 18px;
  color: var(--ink);
  font-weight: 850;
  box-shadow: 7px 7px 0 var(--lilac);
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: #FFFFFF;
}

.section-head {
  max-width: 790px;
  margin-bottom: 36px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(26, 11, 59, 0.06);
}

.card.strong {
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(36, 4, 158, 0.14);
}

.feature-card {
  background:
    radial-gradient(circle at top right, rgba(0, 194, 255, 0.16), transparent 32%),
    #FFFFFF;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #FFE8E0;
  color: var(--flame);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 11px 0;
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #FFFFFF;
}

.pricing {
  margin: 18px 0;
  color: var(--brand);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
}

.pricing span {
  color: var(--soft-muted);
  font-size: 1rem;
  font-weight: 800;
}

.promo-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #FFFFFF;
  overflow: hidden;
}

.promo-panel .eyebrow,
.promo-panel .lead {
  color: #D9CFFF;
}

.promo-panel .button {
  flex: 0 0 auto;
}

.catalogue-hero {
  padding: 76px 0 38px;
  background:
    radial-gradient(circle at 82% 28%, rgba(191, 103, 254, 0.2), transparent 28%),
    #FFFFFF;
}

.catalogue-hero h1 {
  max-width: 840px;
}

.age-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 4px;
}

.age-tab {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--muted);
  text-decoration: none;
  font-weight: 850;
}

.age-tab.active,
.age-tab:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #FFFFFF;
}

.catalogue-section {
  padding-top: 24px;
}

.catalogue-status {
  padding: 20px 0;
  color: var(--muted);
  font-weight: 800;
}

.age-group {
  padding: 42px 0 62px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.age-group:first-child {
  border-top: 0;
}

.age-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
  margin-bottom: 26px;
}

.age-group-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.age-group-head p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.delivery-note {
  padding: 18px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid var(--line);
}

.delivery-note strong,
.delivery-note span {
  display: block;
}

.delivery-note strong {
  color: var(--brand);
  font-size: 1.05rem;
}

.delivery-note span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.kit-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(26, 11, 59, 0.08);
}

.kit-image {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 135, 102, 0.28), transparent 24%),
    radial-gradient(circle at 78% 70%, rgba(0, 194, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #FFFFFF 0%, #F6ECFF 100%);
}

.kit-image span,
.kit-image img {
  display: grid;
  place-items: center;
  width: min(190px, 80%);
  aspect-ratio: 1;
}

.kit-image span {
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: #FFE8E0;
  color: var(--brand);
  padding: 16px;
  font-family: "Fredoka", ui-rounded, system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  font-weight: 700;
  text-align: center;
  box-shadow: 9px 9px 0 rgba(191, 103, 254, 0.3);
}

.kit-image img {
  width: 100%;
  max-width: 330px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 18px;
}

.kit-image small {
  margin-top: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #FFE8E0;
  color: #7A3A25;
  font-size: 0.75rem;
  font-weight: 900;
}

.kit-body {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding: 20px;
}

.kit-body h3 {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.kit-age {
  margin: 2px 0 10px;
  color: var(--soft-muted);
  font-size: 1rem;
  font-weight: 850;
}

.kit-status {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kit-status.waitlist {
  background: #FFE8E0;
  color: #7A3A25;
}

.kit-items {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.kit-items li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.kit-items strong {
  min-width: 0;
}

.kit-items span {
  color: var(--soft-muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
}

.kit-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.kit-body .button {
  margin-top: 18px;
  width: 100%;
}

.kit-price {
  color: var(--brand);
  font-size: 1.45rem;
  font-weight: 900;
}

.stock-note {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-footer {
  padding: 38px 0;
  background: var(--ink);
  color: #FFFFFF;
}

.footer-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid p {
  color: #D9CFFF;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav {
    min-height: 70px;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    padding: 16px;
    background: #FFFFFF;
    border: 2px solid var(--ink);
    border-radius: 20px;
    box-shadow: 7px 7px 0 rgba(36, 4, 158, 0.2);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .grid.two,
  .grid.three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 42px;
  }

  .hero-note {
    position: static;
    margin: 16px 0 0;
    max-width: none;
  }

  .age-group-head,
  .kit-grid {
    grid-template-columns: 1fr;
  }

  .promo-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .kit-image {
    min-height: 220px;
  }
}
