:root {
  --ink: #292344;
  --ink-soft: #5c5870;
  --paper: #fffcf5;
  --white: #ffffff;
  --line: rgba(41, 35, 68, 0.12);
  --mint: #c9f1de;
  --coral: #ff7d73;
  --peach: #ffd4b8;
  --yellow: #ffe594;
  --lilac: #dfd2ff;
  --sky: #dff2ff;
  --green: #16b985;
  --radius-lg: 40px;
  --radius-md: 28px;
  --shadow: 0 24px 70px rgba(55, 42, 90, 0.14);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

p {
  line-height: 1.7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 7.6vw, 7.5rem);
  line-height: 0.88;
  font-weight: 850;
}

h1 span {
  color: #ee5d54;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  line-height: 0.94;
  font-weight: 820;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.section-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 96px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(44, 165, 215, 0.23);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header nav a {
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.hero {
  display: grid;
  min-height: 760px;
  padding-block: 92px 86px;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.95fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 8px;
  color: #6a6084;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow span {
  color: #f4ad22;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.app-store-link {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  transition: transform 180ms ease;
}

.app-store-link:hover {
  transform: translateY(-2px);
}

.text-link,
.light-link {
  font-weight: 800;
  text-underline-offset: 5px;
}

.quick-facts {
  display: flex;
  max-width: 480px;
  margin: 38px 0 0;
  padding: 24px 0 0;
  gap: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.quick-facts li {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-inline: 20px;
  border-left: 1px solid var(--line);
}

.quick-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.quick-facts strong {
  font-size: 1.6rem;
}

.quick-facts span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.hero-gallery {
  position: relative;
  min-height: 560px;
}

.hero-gallery::before {
  position: absolute;
  inset: 5% -2% 4% 2%;
  border-radius: 47% 53% 40% 60% / 53% 38% 62% 47%;
  background: var(--mint);
  content: "";
  transform: rotate(6deg);
}

.screen-card {
  position: absolute;
  width: min(58%, 300px);
  aspect-ratio: 3 / 4;
  border: 8px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.screen-main {
  z-index: 3;
  top: 3%;
  left: 16%;
  width: min(70%, 360px);
  transform: rotate(-1deg);
}

.screen-left {
  z-index: 1;
  top: 24%;
  left: -4%;
  transform: rotate(-9deg);
}

.screen-right {
  z-index: 2;
  top: 22%;
  right: -3%;
  transform: rotate(8deg);
}

.spark {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.3rem;
  box-shadow: 0 16px 26px rgba(41, 35, 68, 0.12);
}

.spark-one {
  top: 8%;
  right: 3%;
  background: var(--yellow);
  transform: rotate(12deg);
}

.spark-two {
  bottom: 8%;
  left: 8%;
  background: var(--lilac);
  color: #8b67d2;
}

.promise-strip {
  display: grid;
  padding: 24px max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--yellow);
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.promise-strip p {
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #514724;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.promise-strip span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.event-section {
  padding-block: 120px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 125, 115, 0.2), transparent 24%),
    radial-gradient(circle at 91% 92%, rgba(223, 210, 255, 0.4), transparent 28%),
    #fff6dc;
}

.event-card {
  display: grid;
  overflow: hidden;
  padding: 58px;
  border: 1px solid rgba(41, 35, 68, 0.09);
  border-radius: 52px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 80px rgba(95, 68, 56, 0.12);
  grid-template-columns: 1fr 0.9fr;
  gap: 48px 80px;
}

.event-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3.4rem, 5.8vw, 5.8rem);
}

.event-heading h2 span {
  color: #ee5d54;
}

.event-date {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 14px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(41, 35, 68, 0.14);
  border-radius: 999px;
  color: #615975;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-copy {
  align-self: end;
}

.event-copy > p {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.event-highlights {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.event-highlights li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-inline: 18px;
  border-left: 1px solid var(--line);
}

.event-highlights li:first-child {
  padding-left: 0;
  border-left: 0;
}

.event-highlights strong {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.event-highlights span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.35;
}

.event-cta {
  display: inline-flex;
  padding: 15px 22px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease;
}

.event-cta:hover {
  transform: translateY(-2px);
}

.event-art {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  grid-column: 1 / -1;
}

.event-art img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.event-art-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  margin: 0;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(41, 35, 68, 0.86);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.event-art-label span {
  margin-right: 5px;
  color: var(--yellow);
}

.video-section {
  overflow: hidden;
  padding-block: 110px;
  background:
    radial-gradient(circle at 17% 24%, rgba(255, 229, 148, 0.18), transparent 27%),
    radial-gradient(circle at 85% 78%, rgba(201, 241, 222, 0.14), transparent 31%),
    var(--ink);
  color: var(--white);
}

.video-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 100px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.video-copy p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.light-link {
  color: var(--white);
}

.video-phone {
  position: relative;
  width: min(72%, 320px);
  margin-inline: auto;
  padding: 10px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 52px;
  background: #101016;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.4);
}

.video-phone::before {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 50%;
  width: 31%;
  height: 23px;
  border-radius: 999px;
  background: #0a0a0c;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.video-phone video {
  width: 100%;
  aspect-ratio: 220 / 480;
  border-radius: 40px;
  background: #dff2ff;
  object-fit: cover;
}

.activities {
  padding-block: 120px;
}

.section-heading {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: 1.05fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 30px 28px 0;
  border: 1px solid rgba(41, 35, 68, 0.08);
  border-radius: var(--radius-lg);
}

.activity-card.coral {
  background: #ffe0d8;
}

.activity-card.yellow {
  background: #fff0b7;
}

.activity-card.lilac {
  background: #e9ddff;
}

.activity-number {
  display: inline-block;
  margin-bottom: 70px;
  padding: 8px 12px;
  border: 1px solid rgba(41, 35, 68, 0.18);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 850;
}

.activity-card p {
  min-height: 82px;
  color: rgba(41, 35, 68, 0.7);
  font-size: 0.94rem;
}

.activity-card img {
  width: 76%;
  aspect-ratio: 3 / 4;
  margin: 28px auto -50%;
  border: 7px solid var(--white);
  border-radius: 28px;
  box-shadow: 0 22px 46px rgba(55, 42, 90, 0.16);
  object-fit: contain;
  transition: transform 260ms ease;
}

.activity-card:hover img {
  transform: translateY(-8px) rotate(-1deg);
}

.parents-section {
  padding-block: 120px;
  background: #eaf8f0;
}

.parents-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 100px;
}

.parent-intro > img {
  margin-bottom: 34px;
  border-radius: 38px;
  box-shadow: 0 25px 55px rgba(44, 165, 215, 0.22);
  transform: rotate(-3deg);
}

.parent-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.parent-benefits {
  border-top: 1px solid rgba(41, 35, 68, 0.15);
}

.parent-benefits article {
  display: grid;
  padding-block: 34px;
  border-bottom: 1px solid rgba(41, 35, 68, 0.15);
  grid-template-columns: 54px 1fr;
  gap: 20px;
}

.parent-benefits article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
}

.parent-benefits h3 {
  margin-bottom: 8px;
}

.parent-benefits p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.trust-section {
  display: grid;
  padding-block: 120px;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.privacy-card,
.support-card {
  min-height: 500px;
  padding: 55px;
  border-radius: var(--radius-lg);
}

.privacy-card {
  background: var(--sky);
}

.support-card {
  background: var(--ink);
  color: var(--white);
}

.privacy-card h2,
.support-card h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.privacy-card > p:not(.eyebrow),
.support-card > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 36px;
  color: var(--ink-soft);
}

.support-card > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.button-secondary,
.button-light {
  display: inline-block;
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.button-secondary {
  border: 1px solid var(--ink);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.final-cta {
  padding-block: 80px;
  background: var(--peach);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.final-cta-inner > img {
  border-radius: 28px;
  box-shadow: 0 18px 35px rgba(41, 35, 68, 0.14);
  transform: rotate(-4deg);
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
}

footer {
  padding-block: 45px;
  background: #1e1934;
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 45px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  border-radius: 11px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand strong {
  color: var(--white);
  font-size: 0.92rem;
}

.footer-brand span,
.footer-inner > p {
  margin: 0;
  font-size: 0.78rem;
}

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

.footer-links a {
  font-size: 0.82rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

a:focus-visible,
video:focus-visible {
  outline: 3px solid #ffb527;
  outline-offset: 4px;
}

.legal-page {
  min-height: 100vh;
  background: #f8f5ee;
}

.legal-header,
.legal-main,
.legal-footer {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.legal-header {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.legal-header .brand img {
  width: 42px;
  height: 42px;
}

.legal-header > a:last-child {
  font-size: 0.9rem;
  font-weight: 800;
}

.legal-main {
  padding-block: 70px 100px;
}

.legal-main article {
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 20px 65px rgba(55, 42, 90, 0.08);
}

.legal-main h1 {
  margin-bottom: 30px;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 0.98;
}

.legal-main h2 {
  margin-top: 45px;
  margin-bottom: 14px;
  font-size: 1.6rem;
  line-height: 1.2;
}

.legal-main h3 {
  margin-top: 32px;
  font-size: 1.15rem;
}

.legal-main p,
.legal-main li {
  color: #5d5969;
  line-height: 1.75;
}

.legal-main a {
  color: #7354bb;
  font-weight: 750;
  text-underline-offset: 4px;
}

.legal-footer {
  padding: 30px 0 50px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
    grid-template-columns: 1fr;
  }

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

  .hero-gallery {
    width: min(90%, 620px);
    min-height: 630px;
    margin-inline: auto;
  }

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

  .video-layout,
  .parents-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .event-card {
    padding: 44px;
    gap: 42px;
  }

  .activity-card {
    min-height: 580px;
  }

  .activity-number {
    margin-bottom: 45px;
  }

  .privacy-card,
  .support-card {
    padding: 42px;
  }

  .final-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .final-cta-inner .app-store-link {
    grid-column: 2;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --radius-lg: 30px;
  }

  .section-shell,
  .site-header {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    min-height: 78px;
  }

  .brand span {
    display: none;
  }

  .site-header nav {
    gap: 14px;
  }

  .hero {
    padding-block: 55px 70px;
    gap: 55px;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .quick-facts li {
    padding-inline: 12px;
  }

  .hero-gallery {
    width: 100%;
    min-height: 430px;
  }

  .screen-card {
    border-width: 5px;
    border-radius: 21px;
  }

  .screen-main {
    width: 64%;
  }

  .promise-strip {
    padding-block: 22px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .promise-strip p {
    justify-content: flex-start;
  }

  .video-section,
  .event-section,
  .activities,
  .parents-section,
  .trust-section {
    padding-block: 80px;
  }

  .event-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .event-heading h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .event-copy > p {
    font-size: 1rem;
  }

  .event-highlights {
    gap: 0;
  }

  .event-highlights li {
    padding-inline: 10px;
  }

  .event-highlights strong {
    font-size: 1rem;
  }

  .event-art {
    border-radius: 22px;
    grid-column: auto;
  }

  .event-art-label {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    font-size: 0.66rem;
  }

  .video-layout,
  .parents-layout,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .video-layout {
    gap: 60px;
  }

  .video-phone {
    width: min(78%, 300px);
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    min-height: 660px;
  }

  .activity-card img {
    width: min(74%, 280px);
  }

  .parents-layout {
    gap: 55px;
  }

  .parent-intro > img {
    width: 130px;
    height: 130px;
  }

  .privacy-card,
  .support-card {
    min-height: auto;
    padding: 38px 30px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-cta-inner > img {
    width: 90px;
    height: 90px;
  }

  .final-cta-inner .app-store-link {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-inner > p {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
