@font-face {
  font-family:Chewy;
  src:url('assets/fonts/Chewy-Regular.ttf') format('truetype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face {
  font-family:Nunito;
  src:url('assets/fonts/NunitoSans.ttf') format('truetype');
  font-weight:200 900;
  font-style:normal;
  font-display:swap;
}
:root {
  color-scheme:light;
  --paper:#fcf9f2;
  --ink:#302b43;
  --muted:#666177;
  --green:#326e54;
  --mint:#deeddf;
  --lilac:#eae1f4;
  --peach:#f7dfcd;
  --yellow:#f8e9a8;
  --pink:#f3dce4;
  --blue:#deedf2;
  --line:#e4dfd5;
  --heading:Chewy,cursive;
  --body:Nunito,system-ui,sans-serif;
  --shadow:0 18px 50px -25px #4637524d;
}
* {
  box-sizing:border-box;
}
/* Contain angled paper and ribbon decoration without horizontal scrolling. */
main {
  overflow:clip;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:30px;
}
body {
  overflow-x:clip;
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:600 17px/1.65 var(--body);
  -webkit-font-smoothing:antialiased;
}
a {
  color:inherit;
  text-decoration:none;
}
button,input {
  font:inherit;
}
button,a,input {
  -webkit-tap-highlight-color:transparent;
}
button {
  cursor:pointer;
}
button:disabled {
  cursor:default;
}
svg {
  width:24px;
  height:24px;
  flex-shrink:0;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
h1,h2,h3,p {
  margin:0;
}
h1,h2,h3 {
  font-family:var(--heading);
  font-weight:400;
  line-height:1.08;
}
h2 {
  font-size:clamp(36px,4.4vw,60px);
}
h3 {
  font-size:27px;
}
p {
  color:var(--muted);
}
:focus-visible {
  outline:3px solid var(--green);
  outline-offset:6px;
}
::selection {
  background:var(--yellow);
  color:var(--ink);
}
.wrap {
  max-width:1264px;
  margin-inline:auto;
  padding-inline:40px;
}
.section {
  padding-top:105px;
  padding-bottom:105px;
}
.svg-library {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
}
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.skip-link {
  position:fixed;
  z-index:20;
  top:8px;
  left:8px;
  background:var(--ink);
  color:white;
  padding:12px 20px;
  border-radius:50px;
  transform:translateY(-150%);
}
.skip-link:focus {
  transform:none;
}
.site-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:26px;
  padding-bottom:26px;
  gap:24px;
}
.brand {
  display:flex;
  align-items:center;
  gap:9px;
  white-space:nowrap;
}
.brand :is(svg, .brand-icon) {
  width:41px;
  height:45px;
}
.brand span {
  font-family:var(--heading);
  font-size:31px;
}
.site-header nav {
  display:flex;
  align-items:center;
  gap:32px;
  font-size:15px;
  font-weight:750;
}
.site-header nav>a:not(.button):hover {
  color:var(--green);
  text-decoration:underline;
  text-underline-offset:6px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border:0;
  border-radius:50px;
  padding:15px 24px;
  background:var(--green);
  color:white;
  font-weight:800;
  box-shadow:0 3px 0 #204f3b;
  transition:transform .2s,background .2s;
}
.button:hover {
  background:#285f47;
  transform:translateY(-2px);
}
.button-small {
  padding:12px 21px;
  font-size:14px;
}
.eyebrow {
  display:block;
  color:var(--green);
  font-size:13px;
  font-weight:850;
  letter-spacing:1.15px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.little-dot {
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
  vertical-align:2px;
}
.hero {
  display:grid;
  grid-template-columns:1.06fr 1fr;
  gap:45px;
  padding-top:66px;
  padding-bottom:88px;
  align-items:center;
  min-height:725px;
}
.hero-copy {
  padding-bottom:20px;
}
.hero h1 {
  font-size:clamp(54px,5.8vw,78px);
  line-height:1.04;
  letter-spacing:-1px;
}
.green-word {
  color:var(--green);
  display:inline-block;
  position:relative;
  padding-bottom:17px;
}
.green-word svg {
  position:absolute;
  left:0;
  bottom:-1px;
  width:100%;
  height:21px;
  fill:none;
  stroke:#e5b95e;
  stroke-width:5;
  stroke-linecap:round;
}
.hero-description {
  max-width:430px;
  font-size:18px;
  margin:24px 0 27px;
  line-height:1.7;
}
.store-buttons {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.store-button {
  display:flex;
  align-items:center;
  gap:10px;
  background:var(--ink);
  color:white;
  border:2px solid var(--ink);
  border-radius:15px;
  min-height:65px;
  padding:9px 19px;
  transition:transform .2s,box-shadow .2s;
}
.store-button:hover {
  transform:translateY(-3px);
  box-shadow:0 6px 0 #e4dacf;
}
.store-button>svg {
  width:27px;
  height:30px;
}
.store-button span {
  display:flex;
  flex-direction:column;
  line-height:1.15;
}
.store-button small {
  font-size:10px;
  letter-spacing:.25px;
  font-weight:650;
  margin-bottom:3px;
}
.store-button strong {
  font-size:20px;
  letter-spacing:.15px;
  font-weight:800;
}
.device-note {
  font-size:11px;
  margin-top:12px;
}
.hero-promises {
  display:flex;
  gap:17px;
  flex-wrap:wrap;
  margin-top:30px;
  font-size:12px;
  color:var(--muted);
}
.hero-promises span {
  display:flex;
  align-items:center;
  gap:5px;
}
.hero-promises svg {
  width:16px;
  height:16px;
  color:var(--green);
}
.hero-art {
  position:relative;
  min-width:0;
  padding:12px 0 0;
}
.hero-art:before {
  content:'';
  position:absolute;
  inset:2% -5% 6%;
  background:#e9eddf;
  border-radius:46% 54% 55% 45%/52% 44% 56% 48%;
  transform:rotate(-8deg);
  z-index:-1;
}
.paper-preview {
  position:relative;
  background:white;
  padding:16px 17px 0;
  border-radius:22px;
  box-shadow:0 6px 0 #e1ddcf,var(--shadow);
  transform:rotate(3deg);
  border:1px solid #e6e1d7;
}
.paper-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:11px;
  color:#827a8c;
  padding:0 4px 12px;
}
.paper-top>svg {
  width:19px;
  height:19px;
  color:#ac94c7;
}
.paper-dots {
  display:flex;
  gap:5px;
}
.paper-dots i {
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--pink);
}
.paper-dots i:nth-child(2) {
  background:var(--yellow);
}
.paper-dots i:nth-child(3) {
  background:var(--mint);
}
.comparison {
  position:relative;
  aspect-ratio:1;
  background:white;
  overflow:hidden;
  border-radius:10px;
  isolation:isolate;
}
.comparison img {
  width:100%;
  height:100%;
  object-fit:contain;
}
.outline-layer {
  position:absolute;
  inset:0;
  clip-path:inset(0 var(--reveal) 0 0);
  pointer-events:none;
}
.comparison-line {
  position:absolute;
  right:var(--reveal);
  top:0;
  bottom:0;
  width:2px;
  background:var(--green);
  pointer-events:none;
  filter:drop-shadow(0 0 3px #fff);
  z-index:2;
}
.comparison-line>span {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  height:40px;
  width:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--green);
  color:white;

  border:3px solid white;
}
.comparison-line>span>svg {
  width:24px;
  height:24px;
  display:block;
}
.comparison input {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  margin:0;
  opacity:0;
  cursor:ew-resize;
  direction:rtl;
  z-index:4;
  touch-action:pan-y;
}
.comparison:has(input:focus-visible):not(:has(input:active)) {
  outline:3px solid var(--green);
  outline-offset:-3px;
}
.preview-label {
  position:absolute;
  bottom:10px;
  font-size:10px;
  padding:4px 9px;
  border-radius:20px;
  box-shadow:0 2px 8px #302b4312;
  background:white;
  pointer-events:none;
}
.before {
  left:7px;
}
.after {
  right:7px;
  background:var(--mint);
  color:var(--green);
}
.crayons {
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:19px;
  height:70px;
  padding-top:6px;
}
.crayons>svg {
  width:23px;
  height:56px;
  display:block;
  flex-shrink:0;
}
.crayons>svg:nth-child(4) {
  height:64px;
}
.round-sticker {
  position:absolute;
  z-index:5;
  right:-26px;
  top:-27px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  background:var(--yellow);
  width:119px;
  height:119px;
  border-radius:50%;
  transform:rotate(13deg);
  font-family:var(--heading);
  font-size:22px;
  text-align:center;
  line-height:1.05;
  box-shadow:0 3px 0 #e8d587;
  border:5px solid var(--paper);
}
.round-sticker svg {
  width:18px;
  height:18px;
  margin-top:6px;
}
.preview-hint {
  font-family:var(--heading);
  font-size:21px;
  text-align:center;
  margin:30px 0 0;
  transform:rotate(-4deg);
}
.preview-hint svg {
  width:50px;
  height:30px;
  fill:none;
  stroke:var(--ink);
  stroke-width:2;
  stroke-linecap:round;
  vertical-align:middle;
  transform:rotate(12deg);
  margin-right:6px;
}
.doodle {
  position:absolute;
  z-index:6;
  width:30px;
  height:30px;
}
.sparkle-one {
  top:35px;
  left:-29px;
  color:#b8a0ce;
  transform:rotate(15deg);
}
.sparkle-two {
  right:-29px;
  bottom:90px;
  color:#dfa473;
  width:37px;
  height:37px;
}
.colour-ribbon {
  background:var(--lilac);
  border-top:1px solid #d9cbe8;
  border-bottom:1px solid #d9cbe8;
  overflow:hidden;
  transform:rotate(-1.4deg);
  width:100%;
  padding:18px 0;
}
.ribbon-track {
  display:flex;
  width:max-content;
  animation:ribbon-scroll 32s linear infinite;
}
.ribbon-group {
  display:flex;
  align-items:center;
  justify-content:space-around;
  gap:50px;
  padding-inline:25px;
  min-width:100vw;
  flex-shrink:0;
  white-space:nowrap;
  font:400 27px var(--heading);
  color:#625278;
}
@keyframes ribbon-scroll {
  to { transform:translateX(-50%); }
}
.doodle, .download-spark, .save-spark, .paint-art>svg:not(.large-crayon), .ribbon-group>svg {
  animation:star-twinkle var(--twinkle-speed, 4.8s) ease-in-out infinite,
    star-turn var(--turn-speed, 12s) linear infinite;
  transform-origin:center;
}
.sparkle-one { --twinkle-speed:4.8s; --turn-speed:14s; }
.sparkle-two { --twinkle-speed:3.6s; --turn-speed:9s; animation-delay:-2.4s; }
.download-spark.one { --twinkle-speed:5.7s; --turn-speed:18s; animation-delay:-1.8s; }
.download-spark.two { --twinkle-speed:4.1s; --turn-speed:11s; animation-delay:-3s; }
.save-spark { --twinkle-speed:3.9s; --turn-speed:10s; animation-delay:-1.2s; }
.paint-art>svg:not(.large-crayon) { --twinkle-speed:5.2s; --turn-speed:16s; animation-delay:-2s; }
@keyframes star-turn {
  to { rotate:360deg; }
}
@keyframes star-twinkle {
  0%, 100% { scale:.85; opacity:.6; }
  50% { scale:1.15; opacity:1; }
}
.motion-paused .ribbon-group>svg,
.motion-paused .colour-sweep,
.motion-paused .ribbon-track,
.motion-paused .doodle,
.motion-paused .download-spark,
.motion-paused .save-spark,
.motion-paused .paint-art>svg:not(.large-crayon) {
  animation-play-state:paused;
}
.colour-ribbon svg {
  width:20px;
  height:20px;
  color:#9a81b4;
}
.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:45px;
  margin-bottom:32px;
}
.section-heading p {
  max-width:345px;
  font-size:15px;
  line-height:1.7;
}




.picture-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:25px;
}
.picture-card {
  padding:16px 16px 19px;
  border:1px solid #302b430b;
  border-radius:23px;
  transition:transform .25s,box-shadow .25s;
}
.picture-card:hover {
  transform:translateY(-5px) rotate(-.6deg);
  box-shadow:var(--shadow);
}

.mint-card {
  background:var(--mint);
}
.peach-card {
  background:var(--peach);
}
.lilac-card {
  background:var(--lilac);
}
.blue-card {
  background:var(--blue);
}
.yellow-card {
  background:#f7ecc9;
}
.pink-card {
  background:var(--pink);
}
.picture-image {
  position:relative;
  background:white;
  border-radius:13px;
  overflow:hidden;
  aspect-ratio:1;
}
.picture-image img {
  width:100%;
  height:100%;
  object-fit:contain;
}
.picture-caption {
  padding:17px 2px 0;
}
.picture-caption h3 {
  font-size:25px;
}
.picture-caption span {
  display:block;
  font-size:11px;
  color:#595167;
  margin-top:5px;
}
.gallery-note {
  font-size:12px;
  text-align:center;
  margin:24px auto 0;
  max-width:640px;
}
.play-section {
  background:#f0ede5;
  border-block:1px solid var(--line);
  text-align:center;
  position:relative;
}
.steps {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:55px;
  margin-top:45px;
}
.steps article {
  position:relative;
}
.steps h3 {
  margin-top:10px;
  font-size:28px;
}
.steps p {
  font-size:15px;
  margin:14px auto 0;
  max-width:295px;
}
.step-art {
  height:130px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}
.step-number {
  background:var(--paper);
  border:1px solid var(--line);
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-grid;
  place-items:center;
  font-size:12px;
  font-weight:850;
  color:var(--green);
}
.mini-page {
  position:absolute;
  width:82px;
  height:105px;
  border-radius:8px;
  background:var(--lilac);
  border:3px solid white;
  box-shadow:0 3px 5px #302b4310;
  transform:rotate(-17deg) translateX(-24px);
}
.mini-page:nth-child(2) {
  background:var(--peach);
  transform:rotate(15deg) translateX(20px);
}
.mini-page:nth-child(3) {
  background:var(--mint);
  transform:rotate(-4deg);
  display:grid;
  place-items:center;
}
.mini-page svg {
  color:var(--green);
  width:39px;
  height:39px;
}
.paint-splash {
  background:var(--lilac);
  width:108px;
  height:96px;
  border-radius:64% 36% 33% 67%/42% 57% 43% 58%;
  transform:rotate(-24deg);
}
.paint-art>.large-crayon {
  position:absolute;
  width:40px;
  height:132px;
  transform:rotate(34deg) translateX(15px);
  filter:drop-shadow(0 6px 4px #302b4312);
}
.paint-art>svg:not(.large-crayon) {
  position:absolute;
  width:24px;
  height:24px;
  color:#9783b9;
  left:calc(50% - 70px);
  top:15px;
}
.fridge-art {
  width:104px;
  height:105px;
  background:white;
  border:7px solid #e7b987;
  border-radius:4px;
  box-shadow:0 6px 9px #302b4310;
  transform:rotate(8deg);
  display:grid;
  place-items:center;
}
.fridge-art>svg {
  width:47px;
  height:47px;
  color:#dd8d9e;
  fill:#f3dce4;
}
.save-spark {
  position:absolute;
  top:9px;
  left:calc(50% + 60px);
  color:#cc994f;
  width:21px;
}
.parents-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:center;
}
.parents-copy h2 {
  margin-bottom:22px;
}
.parents-copy>p {
  max-width:430px;
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--green);
  font-size:13px;
  font-weight:850;
  margin-top:25px;
  text-decoration:underline;
  text-underline-offset:5px;
}
.text-link svg {
  width:18px;
}
.parent-benefits {
  display:grid;
  gap:27px;
}
.parent-benefits article {
  display:flex;
  gap:20px;
  align-items:flex-start;
}
.benefit-icon {
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:15px;
  background:var(--lilac);
  flex-shrink:0;
  color:#6c5787;
  font-size:29px;
}
.parent-benefits article:nth-child(2) .benefit-icon {
  background:var(--pink);
  color:#a65370;
}
.parent-benefits article:nth-child(3) .benefit-icon {
  background:var(--mint);
  color:var(--green);
}
.parent-benefits h3 {
  font-size:26px;
}
.parent-benefits p {
  font-size:14px;
  margin-top:8px;
  max-width:350px;
}
.faq-section {
  max-width:950px;
  padding-bottom:100px;
}
.faq-section>h2 {
  text-align:center;
  font-size:42px;
  margin-bottom:30px;
}
.faq-list {
  border-top:1px solid var(--line);
}
details {
  border-bottom:1px solid var(--line);
}
summary {
  cursor:pointer;
  list-style:none;
  font-weight:800;
  font-size:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:21px 0;
  min-height:64px;
}
summary::-webkit-details-marker {
  display:none;
}
summary>span {
  font-size:25px;
  font-weight:600;
  color:var(--green);
  transition:transform .2s;
}
details[open] summary>span {
  transform:rotate(45deg);
}
details>p {
  padding:0 40px 23px 0;
  font-size:15px;
}
.download-section {
  padding-bottom:65px;
}
.download-card {
  position:relative;
  overflow:hidden;
  background:var(--mint);
  border-radius:38px;
  padding:65px 30px;
  text-align:center;
  border:1px solid #cddfce;
}
.download-card h2 {
  font-size:clamp(45px,5vw,68px);
}
.download-card>p {
  margin-top:18px;
  color:#4b6455;
}
.download-card .store-buttons {
  justify-content:center;
  margin-top:28px;
}
.download-footnote {
  display:block;
  font-size:11px;
  color:#506756;
  margin-top:22px;
}
.download-spark {
  position:absolute;
  width:60px;
  height:60px;
  color:#8fb395;
}
.download-spark.one {
  left:9%;
  top:22%;
  transform:rotate(12deg);
}
.download-spark.two {
  right:9%;
  bottom:24%;
  width:38px;
  height:38px;
  transform:rotate(-15deg);
}
.site-footer {
  display:flex;
  align-items:center;
  gap:28px;
  padding-bottom:35px;
}
.site-footer .brand span {
  font-size:25px;
}
.site-footer .brand :is(svg, .brand-icon) {
  width:32px;
  height:37px;
}
.site-footer>p {
  font-size:12px;
}
.site-footer>div {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:24px;
  font-size:12px;
  color:var(--muted);
}
.footer-link {
  font-size:12px;
  color:inherit;
  background:none;
  border:0;
  padding:12px 0;
  text-decoration:underline;
  text-underline-offset:4px;
}
dialog {
  color:var(--ink);
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:25px;
  padding:46px 35px 35px;
  max-width:460px;
  width:calc(100% - 32px);
  text-align:center;
  box-shadow:0 25px 100px #302b4333;
}
dialog::backdrop {
  background:#302b4370;
  backdrop-filter:blur(5px);
}
dialog h2 {
  font-size:37px;
}
dialog p {
  font-size:15px;
  margin:20px 0;
}
dialog p>a {
  text-decoration:underline;
  text-underline-offset:4px;
}
dialog .button {
  margin-top:5px;
}
.dialog-close {
  position:absolute;
  right:10px;
  top:10px;
  border:0;
  background:var(--lilac);
  color:var(--ink);
  border-radius:50%;
  width:36px;
  height:36px;
  font-size:25px;
  line-height:1;
}
.dialog-spark {
  width:40px;
  height:40px;
  color:#ba9141;
  margin-bottom:15px;
}
@media(min-width:1400px) {
  .hero {
    padding-top:80px;
    padding-bottom:105px;
  }
  .hero-art {
    margin-right:15px;
  }
}
@media(max-width:1050px) {
  .wrap {
    padding-inline:28px;
  }
  .hero {
    gap:32px;
    padding-top:46px;
    min-height:650px;
  }
  .hero h1 {
    font-size:58px;
  }
  .hero-description {
    font-size:16px;
  }
  .hero-promises {
    gap:10px;
    font-size:11px;
  }
  .round-sticker {
    width:96px;
    height:96px;
    font-size:19px;
    right:-10px;
  }
  .hero-art:before {
    inset:0 -2% 7%;
  }
  .store-button {
    padding:9px 13px;
  }
  .store-button strong {
    font-size:18px;
  }
  .section-heading {
    gap:28px;
  }
  .section-heading p {
    max-width:290px;
  }
  .steps {
    gap:25px;
  }
  .parents-section {
    gap:50px;
  }
  .site-header nav {
    gap:22px;
  }
  .site-header .button {
    font-size:12px;
    padding-inline:16px;
  }
  .picture-caption h3 {
    font-size:23px;
  }
  .crayons {
    gap:13px;
  }
  .sparkle-two {
    right:-12px;
  }
  .site-footer {
    gap:15px;
  }
  .site-footer>div {
    gap:15px;
  }
}
@media(max-width:760px) {
  .wrap {
    padding-inline:22px;
  }
  .site-header {
    padding-block:18px;
  }
  .brand span {
    font-size:27px;
  }
  .brand :is(svg, .brand-icon) {
    width:34px;
    height:39px;
  }
  .site-header nav>a:not(.button) {
    display:none;
  }
  .site-header .button {
    font-size:0;
    gap:0;
    width:43px;
    height:43px;
    padding:10px;
  }
  .site-header .button svg {
    width:22px;
  }
  .hero {
    grid-template-columns:1fr;
    gap:39px;
    padding-top:32px;
    padding-bottom:49px;
    text-align:center;
    min-height:0;
  }
  .hero-copy {
    padding:0;
  }
  .eyebrow {
    font-size:11px;
    letter-spacing:.8px;
    margin-bottom:16px;
  }
  .hero h1 {
    font-size:clamp(49px,10vw,72px);
    letter-spacing:-.4px;
  }
  .green-word {
    padding-bottom:15px;
  }
  .hero-description {
    max-width:440px;
    margin:22px auto 24px;
    font-size:16px;
  }
  .store-buttons {
    justify-content:center;
  }
  .store-button {
    padding:9px 13px;
    gap:8px;
  }
  .store-button>svg {
    width:24px;
  }
  .store-button strong {
    font-size:18px;
  }
  .store-button small {
    font-size:9px;
  }
  .hero-promises {
    justify-content:center;
    font-size:12px;
    gap:15px;
    margin-top:24px;
  }
  .hero-art {
    width:100%;
    max-width:455px;
    margin:0 auto;
    padding:15px 13px 0;
  }
  .paper-preview {
    padding:13px 13px 0;
    transform:rotate(2deg);
  }
  .round-sticker {
    right:0;
    top:-5px;
    width:94px;
    height:94px;
    font-size:18px;
  }
  .hero-art:before {
    inset:4% 0 12%;
  }
  .paper-top {
    font-size:10px;
    padding-bottom:9px;
  }
  .sparkle-one {
    left:-5px;
    top:45px;
    width:22px;
  }
  .sparkle-two {
    right:-4px;
    bottom:85px;
    width:27px;
  }
  .preview-hint {
    font-size:18px;
    margin-top:24px;
  }
  .preview-hint svg {
    width:42px;
  }
  .crayons {
    height:70px;
    gap:19px;
  }
  .crayons>svg {
    width:21px;
  }
  .colour-ribbon {
    padding:14px 0;
  }
  .ribbon-group {
    font-size:23px;
    gap:30px;
  }
  .colour-ribbon svg {
    width:16px;
    height:16px;
  }
  .section {
    padding-top:66px;
    padding-bottom:66px;
  }
  .section-heading {
    display:block;
    text-align:center;
    margin-bottom:25px;
  }
  .section-heading h2 {
    font-size:41px;
  }
  .section-heading p {
    max-width:420px;
    margin:17px auto 0;
    font-size:14px;
  }


  .picture-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:13px;
  }
  .picture-card {
    padding:9px 9px 13px;
    border-radius:17px;
  }
  .picture-image {
    border-radius:9px;
  }
  .picture-caption {
    padding:12px 2px 0;
  }
  .picture-caption h3 {
    font-size:21px;
    line-height:1.15;
  }
  .picture-caption span {
    font-size:10px;
  }
  .gallery-note {
    font-size:11px;
    line-height:1.6;
    margin-top:20px;
  }
  .steps {
    grid-template-columns:1fr;
    gap:40px;
    margin-top:34px;
  }
  .steps article {
    max-width:440px;
    margin:auto;
  }
  .step-art {
    height:117px;
    margin-bottom:10px;
  }
  .steps h3 {
    font-size:28px;
  }
  .steps p {
    max-width:340px;
  }
  .parents-section {
    grid-template-columns:1fr;
    gap:35px;
  }
  .parents-copy {
    text-align:center;
  }
  .parents-copy>p {
    margin:auto;
    font-size:16px;
  }
  .parents-copy h2 {
    font-size:44px;
  }
  .parent-benefits {
    max-width:440px;
    margin:auto;
    gap:28px;
  }
  .parent-benefits article {
    gap:16px;
  }
  .parent-benefits h3 {
    font-size:26px;
  }
  .faq-section {
    padding-bottom:60px;
  }
  .faq-section>h2 {
    font-size:36px;
  }
  summary {
    font-size:15px;
    padding-block:18px;
  }
  details>p {
    font-size:14px;
    padding-right:15px;
  }
  .download-section {
    padding-bottom:36px;
  }
  .download-card {
    padding:45px 18px;
    border-radius:27px;
  }
  .download-card h2 {
    font-size:45px;
  }
  .download-card>.eyebrow {
    font-size:10px;
  }
  .download-card>p {
    font-size:14px;
  }
  .download-spark.one {
    width:25px;
    height:25px;
    left:4%;
    top:25%;
  }
  .download-spark.two {
    width:21px;
    height:21px;
    right:4%;
    bottom:44%;
  }
  .download-footnote {
    font-size:10px;
    max-width:250px;
    margin-inline:auto;
  }
  .site-footer {
    flex-direction:column;
    gap:9px;
    text-align:center;
    padding-bottom:24px;
  }
  .site-footer>div {
    margin:0;
    gap:20px;
  }
  .site-footer .brand span {
    font-size:27px;
  }
}
@media(max-width:370px) {
  .wrap {
    padding-inline:17px;
  }
  .hero h1 {
    font-size:47px;
  }
  .store-buttons {
    gap:8px;
  }
  .store-button {
    padding:9px 11px;
    gap:7px;
  }
  .store-button>svg {
    width:22px;
  }
  .store-button strong {
    font-size:17px;
  }
  .store-button small {
    font-size:9px;
  }
  .hero-promises {
    gap:9px;
    font-size:10px;
  }
  .crayons {
    gap:13px;
  }
  .round-sticker {
    width:83px;
    height:83px;
    font-size:16px;
  }
  .picture-caption h3 {
    font-size:19px;
  }
  .download-card {
    padding-inline:12px;
  }
  .download-card h2 {
    font-size:40px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    transition:none!important;
    animation:none!important;
  }
}

/* The opaque centre is wider than the entire card, including its diagonal.
   The transparent edge of the diagonal band travels just beyond the card.
   No opacity animation: colour appears and disappears only as the band passes. */
.picture-image .colour-sweep {
  position:absolute;
  inset:0;
  pointer-events:none;
  -webkit-mask-image:linear-gradient(100deg, transparent 30%, #000 36%, #000 64%, transparent 70%);
  mask-image:linear-gradient(100deg, transparent 30%, #000 36%, #000 64%, transparent 70%);
  -webkit-mask-size:500% 100%;
  mask-size:500% 100%;
  -webkit-mask-repeat:no-repeat;
  mask-repeat:no-repeat;
  -webkit-mask-position:94% 0;
  mask-position:94% 0;
  animation:sweep-balanced 5.5s linear infinite;
}

@keyframes sweep-balanced {
  0% { -webkit-mask-position:94% 0; mask-position:94% 0; }
  81.8181818%, 100% { -webkit-mask-position:6% 0; mask-position:6% 0; }
}

/* Pausing freezes a pass; reduced motion uses the plain template instead. */
.motion-paused .picture-image .colour-sweep { animation-play-state:paused; }
@media(prefers-reduced-motion:reduce) {
  .picture-image .colour-sweep { visibility:hidden; }
}
@supports not (mask-image:linear-gradient(black, transparent)) {
  .picture-image .colour-sweep { display:none; }
}

/* Shared, self-contained information pages. */
.site-footer { flex-wrap:wrap; }
.site-footer>div { flex-wrap:wrap; justify-content:center; row-gap:8px; }
.info-header nav { flex-wrap:wrap; gap:22px; }
.info-header nav a[aria-current="page"] { color:var(--green); text-decoration:underline; text-underline-offset:6px; }
.info-hero { padding-top:58px; padding-bottom:42px; text-align:center; }
.info-hero h1 { font-size:clamp(48px,7vw,76px); }
.info-hero p { max-width:560px; margin:18px auto 0; }
.info-date { display:block; margin-top:14px; font-size:12px; color:var(--muted); }
.info-layout { display:grid; grid-template-columns:215px minmax(0,1fr); gap:42px; align-items:start; padding-bottom:75px; }
.info-contents { padding:22px; border-radius:22px; background:var(--mint); position:sticky; top:24px; }
.info-contents h2 { font-size:24px; margin-bottom:14px; }
.info-contents a { display:block; padding:6px 0; font-size:13px; }
.info-contents a:hover { text-decoration:underline; text-underline-offset:4px; }
.info-card { border:1px solid var(--line); border-radius:28px; background:white; padding:36px; }
.info-card section+section { margin-top:30px; padding-top:28px; border-top:1px solid var(--line); }
.info-card h2 { font-size:30px; margin-bottom:12px; }
.info-card p, .info-card li { font-size:15px; color:var(--muted); }
.info-card p+p { margin-top:12px; }
.info-card a:not(.button) { color:var(--green); text-decoration:underline; text-underline-offset:3px; }
.info-card ul { padding-left:22px; }
.support-layout { max-width:930px; padding-bottom:75px; }
.contact-card { text-align:center; padding:42px 28px; background:var(--mint); border:1px solid #cddfce; border-radius:28px; }
.contact-card h2 { font-size:36px; }
.contact-card p { max-width:530px; margin:16px auto 22px; }
.contact-card [hidden] { display:none; }
.email-address { display:inline-block; color:var(--green); font-size:clamp(17px,3vw,23px); font-weight:800; overflow-wrap:anywhere; text-decoration:underline; text-underline-offset:5px; }
.support-notes { display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-top:24px; }
.support-notes .info-card { padding:27px; }
.support-notes h2 { font-size:28px; }
.info-footer { border-top:1px solid var(--line); padding-top:25px; }
@media(max-width:760px) {
  .info-header { flex-wrap:wrap; }
  .info-header nav { width:100%; justify-content:center; gap:25px; }
  .info-header nav>a:not(.button) { display:block; }
  .info-hero { padding-top:30px; padding-bottom:30px; }
  .info-hero p { font-size:15px; }
  .info-layout { grid-template-columns:1fr; gap:22px; padding-bottom:45px; }
  .info-contents { position:static; }
  .info-contents a { display:inline-block; margin-right:14px; min-height:36px; }
  .info-card { padding:24px; border-radius:22px; }
  .support-notes { grid-template-columns:1fr; }
  .contact-card { padding:30px 20px; }
  .support-layout { padding-bottom:45px; }
}

/* Matching star phases in both copies keep the scrolling ribbon seamless. */
.ribbon-group>svg {
  animation-delay:var(--star-phase, 0s), var(--turn-phase, 0s);
  animation-direction:normal, var(--turn-direction, normal);
  flex-shrink:0;
}

.brand-icon { border-radius:22%; object-fit:contain; flex-shrink:0; }
