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

@font-face {
  font-family: "LetUs Round";
  src: url("../fonts/CoolveticaRound-by-LetUs.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #15142b;
  --cloud: #f7f8ff;
  --white: #fff;
  --violet: #754cff;
  --violet-dark: #5531d4;
  --cyan: #36d6d0;
  --lime: #c8f24a;
  --orange: #ff8a5b;
  --periwinkle: #a8b5ff;
  --muted: #68677a;
  --line: rgba(21, 20, 43, .14);
  --mono: "Chivo Mono", ui-monospace, monospace;
  --body: "Plus Jakarta Sans", Arial, sans-serif;
  --display: "LetUs Round", "Plus Jakarta Sans", sans-serif;
  --shadow: 0 6px 0 var(--ink);
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, video { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.container { width: min(100%, 1200px); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: 70px;
  padding: 13px 18px;
  background: rgba(247,248,255,.97);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, transform .28s ease;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; }
.site-header.scrolled { border-color: var(--line); }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 105px; height: auto; }
.mobile-header-actions { display: flex; align-items: center; gap: 8px; }
.button.mobile-register { display: none; }
.menu-button { width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; background: var(--ink); border: 0; border-radius: 50%; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 19px; height: 2px; background: white; transition: transform .2s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
.site-nav {
  position: fixed;
  inset: 70px 0 auto;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  min-height: calc(100vh - 70px);
  padding: 30px 18px;
  background: var(--cloud);
}
.site-nav.open { display: flex; }
.site-nav > a:not(.button) { padding: 17px 4px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 28px; text-decoration: none; }
.site-nav .button { margin-top: 20px; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  background: var(--violet);
  color: white;
  border: 2px solid var(--ink);
  border-radius: 15px;
  box-shadow: var(--shadow);
  font-weight: 800;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(2px); box-shadow: 0 4px 0 var(--ink); }
.button:active { transform: translateY(6px); box-shadow: 0 0 0 var(--ink); }
.button--small { min-height: 44px; padding: 9px 17px; border-width: 0; border-radius: 12px; box-shadow: 0 4px 0 var(--violet-dark); }
.button--orange { background: var(--orange); }
.button--lime { background: var(--lime); color: var(--ink); }
.button--secondary { background: white; color: var(--ink); }
.arrow-icon { width: 25px; height: auto; flex: 0 0 auto; }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 0; font-weight: 800; text-underline-offset: 5px; }

.intro-flow {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background:
    radial-gradient(circle at 76% 18%, rgba(54,214,208,.2), transparent 25%),
    radial-gradient(circle at 14% 38%, rgba(168,181,255,.32), transparent 29%),
    radial-gradient(circle at 82% 72%, rgba(117,76,255,.09), transparent 27%),
    linear-gradient(180deg, var(--cloud) 0%, #eff1ff 47%, #ecefff 100%);
}
.intro-flow::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(168,181,255,.32) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 118px 18px 70px;
  overflow: visible;
  background: transparent;
}
.hero__inner { position: relative; z-index: 2; display: grid; gap: 48px; align-items: center; }
.hero__content { position: relative; z-index: 2; max-width: 610px; }
.eyebrow { display: flex; align-items: center; justify-content: flex-start; gap: 9px; margin: 0 0 18px; color: var(--violet-dark); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow span { width: 8px; height: 8px; display: inline-block; background: var(--cyan); border: 2px solid var(--ink); border-radius: 50%; }
.section-heading--center .eyebrow { justify-content: center; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: .005em; }
h1 { margin-bottom: 26px; font-size: clamp(52px, 14vw, 88px); line-height: .92; }
h1 span, .section-heading h2 span, .skills__headline h2 span { color: var(--violet); }
.hero__lead { max-width: 560px; margin: 0 0 30px; font-size: 17px; line-height: 1.6; }
.hero__actions { display: flex; flex-direction: column; align-items: stretch; gap: 14px; max-width: 310px; }
.hero-video { position: relative; z-index: 2; width: min(100%, 420px); aspect-ratio: 9 / 16; justify-self: center; padding: 7px; background: var(--ink); border: 2px solid var(--ink); border-radius: 26px; box-shadow: 11px 12px 0 var(--periwinkle); }
.hero-video video { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.hero-video__spark { position: absolute; right: -25px; bottom: -29px; color: var(--orange); font-size: 43px; transform: rotate(12deg); }

.section { padding: 82px 18px; }
.section-heading { max-width: 690px; margin-bottom: 38px; }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2, .program__intro h2, .skills__headline h2, .partnership__copy h2, .about__copy h2 { margin-bottom: 22px; font-size: clamp(38px, 10vw, 62px); line-height: 1; }
.section-heading p:not(.eyebrow) { max-width: 590px; margin-left: auto; margin-right: auto; color: var(--muted); font-size: 17px; }

.video-story { position: relative; z-index: 1; min-height: 650px; display: grid; place-items: center; padding: 110px 0; overflow: visible; background: transparent; }
.video-story .section-heading { position: relative; z-index: 3; padding: 0 18px; }
.video-story .section-heading { max-width: 780px; }
.video-story .trial-highlight, .video-story .trial-rest { display: block; }
.video-story .trial-highlight { color: var(--violet); }
.video-story .trial-rest { color: var(--ink); }
.video-story .trial-outcome { display: inline; color: var(--ink); white-space: nowrap; }
.pride-confetti { position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.pride-confetti i { position: absolute; display: block; width: 11px; height: 25px; border: 2px solid var(--ink); border-radius: 8px; transform: rotate(24deg); }
.pride-confetti i:nth-child(1) { top: 17%; left: 9%; background: var(--orange); transform: rotate(-32deg); }
.pride-confetti i:nth-child(2) { top: 34%; left: 19%; width: 17px; height: 17px; background: var(--cyan); border-radius: 50%; }
.pride-confetti i:nth-child(3) { top: 12%; right: 16%; background: var(--lime); transform: rotate(48deg); }
.pride-confetti i:nth-child(4) { top: 39%; right: 7%; width: 20px; height: 10px; background: var(--orange); transform: rotate(-12deg); }
.pride-confetti i:nth-child(5) { bottom: 18%; left: 7%; width: 22px; height: 22px; background: var(--periwinkle); transform: rotate(18deg); }
.pride-confetti i:nth-child(6) { bottom: 11%; left: 27%; height: 13px; background: var(--lime); transform: rotate(71deg); }
.pride-confetti i:nth-child(7) { bottom: 27%; right: 20%; width: 14px; height: 14px; background: var(--cyan); border-radius: 50%; }
.pride-confetti i:nth-child(8) { bottom: 12%; right: 8%; background: var(--violet); transform: rotate(-50deg); }
.video-tag { position: absolute; z-index: 2; padding: 7px 9px; background: var(--cloud); border: 1px solid var(--ink); border-radius: 7px; font-family: var(--mono); font-size: 9px; }
.video-tag--top { top: 14px; left: 14px; }

.screen-time { position: relative; z-index: 2; overflow: hidden; padding: 84px 18px; background: linear-gradient(180deg, #ecefff 0%, #f2f4ff 48%, var(--cloud) 100%); color: var(--ink); }
.screen-time__inner { position: relative; z-index: 2; display: grid; gap: 34px; align-items: start; }
.eyebrow--light { color: var(--periwinkle); }
.screen-time h2 { margin: 0; font-size: clamp(38px, 10vw, 74px); line-height: .98; }
.screen-time h2 span,
.screen-time h2 em { display: block; white-space: nowrap; }
.screen-time h2 em { color: var(--violet); font-style: normal; }
.screen-time__detail { position: relative; z-index: 2; max-width: 550px; }
.screen-time__detail p { color: var(--muted); }
.screen-time__detail .lead-light { color: var(--ink); font-size: 21px; font-weight: 700; line-height: 1.38; }
.screen-time__gallery { position: relative; z-index: 1; grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
.screen-time__gallery figure { --offset-y: 0px; --rotate: -3deg; --parallax-distance: 30px; position: relative; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; padding: 5px; background: var(--cloud); border: 2px solid var(--ink); border-radius: 18px; box-shadow: 7px 8px 0 var(--periwinkle); transform: translate3d(0, var(--offset-y), 0) rotate(var(--rotate)); -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.screen-time__gallery figure:nth-child(even) { --offset-y: 20px; --rotate: 3deg; box-shadow: 7px 8px 0 var(--cyan); }
.screen-time__gallery figure[data-parallax-depth="0.18"] { --parallax-distance: 30px; z-index: 1; box-shadow: 5px 6px 0 rgba(168,181,255,.72); }
.screen-time__gallery figure[data-parallax-depth="0.34"] { --parallax-distance: 56px; z-index: 2; box-shadow: 8px 9px 0 var(--cyan); }
.screen-time__gallery figure[data-parallax-depth="0.52"] { --parallax-distance: 86px; z-index: 4; box-shadow: 12px 13px 0 var(--violet); }
.screen-time__gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 11px; }

@keyframes native-parallax {
  from { transform: translate3d(0, calc(var(--offset-y) - var(--parallax-distance)), 0) rotate(var(--rotate)); }
  to { transform: translate3d(0, calc(var(--offset-y) + var(--parallax-distance)), 0) rotate(var(--rotate)); }
}

@supports (animation-timeline: view()) {
  .screen-time { view-timeline: --screen-time block; }
  .screen-time__gallery figure {
    animation-name: native-parallax;
    animation-duration: 1ms;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: --screen-time;
    animation-range: cover 0% cover 100%;
  }
}
.method { position: relative; z-index: 1; background: linear-gradient(180deg, var(--cloud) 0%, #f9f9ff 100%); }

.steps { display: grid; gap: 16px; }
.step { position: relative; min-height: 390px; padding: 18px; overflow: hidden; border: 2px solid var(--ink); border-radius: 22px; }
.step--purple { background: var(--violet); color: white; }
.step--cyan { background: var(--cyan); }
.step--lime { background: var(--lime); }
.step--orange { background: var(--orange); }
.step h3 { position: relative; z-index: 2; margin: 210px 0 8px; color: var(--ink); font-size: 31px; line-height: 1; }
.step p { position: relative; z-index: 2; margin: 0; color: var(--ink); font-size: 14px; }
.step--purple h3,
.step--purple p { color: white; }
.step__graphic { position: absolute; inset: 65px 10px auto; height: 200px; }
.step__graphic img { width: 100%; height: 100%; display: block; object-fit: contain; }

.difference { background: white; }
.feature-grid { display: grid; gap: 14px; }
.feature { min-height: 255px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; background: var(--cloud); border: 1px solid var(--line); border-radius: 20px; }
.feature--violet { background: var(--periwinkle); border-color: var(--ink); }
.feature--dark { background: var(--ink); color: white; }
.feature--cyan { background: var(--cyan); border-color: var(--ink); }
.feature__index { font-family: var(--mono); font-size: 11px; }
.feature h3 { max-width: 350px; margin: auto 0 10px; font-size: 29px; line-height: 1; }
.feature p { max-width: 500px; margin-bottom: 0; color: var(--muted); font-size: 14px; }
.feature--dark p { color: #c9c8d8; }
.mini-creation { position: relative; height: 115px; margin-top: 24px; }
.mini-creation span { position: absolute; bottom: 0; border: 2px solid var(--ink); }
.mini-creation span:nth-child(1) { left: 5%; width: 36%; height: 72%; background: var(--violet); border-radius: 80px 80px 10px 10px; }
.mini-creation span:nth-child(2) { left: 35%; width: 36%; height: 100%; background: var(--lime); border-radius: 80px 80px 10px 10px; }
.mini-creation span:nth-child(3) { right: 1%; width: 34%; height: 52%; background: var(--orange); border-radius: 80px 80px 10px 10px; }
.node-path { position: relative; min-height: 100px; margin-top: 24px; border-top: 3px solid var(--ink); transform: skewY(-7deg); }
.node-path i { position: absolute; top: -13px; width: 23px; height: 23px; background: var(--cloud); border: 3px solid var(--ink); border-radius: 50%; }
.node-path i:nth-child(1) { left: 0; }.node-path i:nth-child(2) { left: 48%; }.node-path i:nth-child(3) { right: 0; }

.program { background: var(--cloud); }
.program__intro { max-width: 760px; margin-bottom: 45px; }
.program-grid { display: grid; gap: 20px; }
.program-card { display: flex; flex-direction: column; padding: 20px; background: var(--ink); color: white; border-radius: 22px; box-shadow: 0 8px 0 var(--violet); }
.program-card--makers { background: var(--cyan); color: var(--ink); box-shadow: 0 8px 0 var(--ink); }
.program-card__title { padding: 5px 0 12px; }
.program-card__title > span { font-family: var(--mono); font-size: 10px; }
.program-card__title h3 { margin: 12px 0 16px; font-size: 38px; line-height: .98; }
.program-card__title p { min-height: 68px; margin: 0; color: #c9c8d8; font-size: 14px; }
.program-card--makers .program-card__title p { color: #343348; }
.program-card dl { margin: 8px 0 26px; }
.program-card dl div { display: grid; grid-template-columns: 95px 1fr; gap: 10px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.program-card--makers dl div { border-color: rgba(21,20,43,.18); }
.program-card dt { color: var(--periwinkle); font-family: var(--mono); font-size: 9px; }
.program-card--makers dt { color: #343348; }
.program-card dd { margin: 0; font-weight: 700; }
.program-card__action { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding: 14px 16px; background: var(--lime); color: var(--ink); border: 2px solid var(--ink); border-radius: 12px; box-shadow: 0 6px 0 var(--ink); font-weight: 800; text-decoration: none; transition: transform .16s ease, box-shadow .16s ease; }
.program-card__action:hover { transform: translateY(2px); box-shadow: 0 4px 0 var(--ink); }
.program-card__action:active { transform: translateY(6px); box-shadow: 0 0 0 var(--ink); }
.program-card__seat { display: flex; align-items: center; gap: 8px; margin: 14px 0 0; color: var(--periwinkle); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.program-card--makers .program-card__seat { color: var(--ink); }
.program-card__seat i { flex: 0 0 auto; width: 7px; height: 7px; background: var(--lime); border: 1px solid var(--ink); border-radius: 50%; }

.skills { background: white; }
.skills__headline { max-width: 1120px; }
.skill-list { margin-top: 45px; border-top: 1px solid var(--line); }
.skill-item { display: grid; grid-template-columns: 42px 1fr; gap: 5px 10px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.skill-item > span { grid-row: span 2; color: var(--violet); font-family: var(--mono); font-size: 10px; }
.skill-item h3 { margin: 0; font-size: 24px; }
.skill-item p { margin: 0; color: var(--muted); font-size: 14px; }

.partnership { background: var(--ink); color: white; }
.partnership__inner { display: grid; gap: 45px; }
.partnership__visual { min-height: 350px; display: grid; place-items: center; position: relative; margin-bottom: 45px; overflow: hidden; background: var(--cyan); color: var(--ink); border-radius: 26px; }
.partnership__visual > span { position: absolute; left: 50%; bottom: 24px; width: max-content; transform: translateX(-50%); font-family: var(--mono); font-size: 13px; font-weight: 700; text-align: center; }
.partnership__illustration { width: min(72%, 340px); height: auto; display: block; }
.partnership__copy > p:not(.eyebrow) { color: #c9c8d8; }
.partnership__copy ul { margin: 25px 0 32px; padding: 0; list-style: none; }
.partnership__copy li { padding: 13px 0 13px 25px; border-top: 1px solid rgba(255,255,255,.16); position: relative; }
.partnership__copy li::before { content: "✦"; position: absolute; left: 0; color: var(--cyan); }

.about { background: var(--ink); color: white; }
.about__inner { display: grid; gap: 55px; align-items: center; }
.about__media { position: relative; width: min(100%, 470px); aspect-ratio: 4 / 5; justify-self: center; padding: 7px; background: var(--ink); border: 2px solid var(--periwinkle); border-radius: 26px; box-shadow: 12px 13px 0 var(--cyan); }
.about__slides { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 18px; }
.about__slides video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .35s ease; }
.about__slides video.active { opacity: 1; visibility: visible; pointer-events: auto; }
.about__media-label { position: absolute; z-index: 3; top: 20px; left: 20px; padding: 8px 10px; background: var(--cloud); color: var(--ink); border: 1px solid var(--ink); border-radius: 7px; font-family: var(--mono); font-size: 9px; }
.about__arrow { position: absolute; z-index: 4; top: 50%; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; background: var(--lime); color: var(--ink); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 4px 5px 0 var(--violet); font-size: 24px; font-weight: 800; cursor: pointer; transform: translateY(-50%); }
.about__arrow img { width: 29px; height: auto; display: block; }
.about__arrow--prev { left: -24px; transform: translateY(-50%) rotate(-8deg); }
.about__arrow--prev img { transform: rotate(180deg); }
.about__arrow--next { right: -24px; transform: translateY(-50%) rotate(8deg); }
.about__arrow--next img { transform: rotate(-12deg); }
.about__counter { position: absolute; z-index: 3; right: 20px; bottom: 20px; padding: 7px 9px; background: var(--cyan); color: var(--ink); border: 1px solid var(--ink); border-radius: 7px; font-family: var(--mono); font-size: 9px; }
.about__copy h2 span { color: var(--lime); }
.about__copy p:not(.eyebrow) { max-width: 680px; color: #c9c8d8; }
.about__copy p a { color: white; font-weight: 800; text-underline-offset: 4px; }
.about__copy blockquote { max-width: 680px; margin: 30px 0; padding: 24px; background: var(--cyan); color: var(--ink); border: 2px solid var(--cloud); border-radius: 18px; box-shadow: 7px 8px 0 var(--violet); font-family: var(--display); font-size: clamp(25px, 5vw, 38px); line-height: 1.08; }
.text-link--light { color: white; }

.faq { background: white; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: grid; grid-template-columns: 1fr 35px; align-items: center; gap: 20px; padding: 22px 0; cursor: pointer; font-family: var(--display); font-size: 22px; line-height: 1.15; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { width: 32px; height: 32px; display: grid; place-items: center; background: var(--lime); border: 1px solid var(--ink); border-radius: 50%; font-family: var(--body); transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 720px; padding: 0 48px 22px 0; color: var(--muted); }

.final-cta { position: relative; padding: 92px 18px; overflow: hidden; background: var(--violet); color: white; text-align: center; }
.final-cta .eyebrow { justify-content: center; }
.final-cta__parent-note { max-width: 720px; margin: 0 auto 52px; color: rgba(255,255,255,.7); font-size: clamp(16px, 1.65vw, 20px); font-weight: 600; line-height: 1.45; }
.final-cta__parent-note span { display: block; }
.final-cta h2 { margin-bottom: 20px; font-size: clamp(45px, 11vw, 82px); line-height: .98; }
.final-cta h2 em { color: var(--lime); font-style: normal; }
.final-cta__inner > p:not(.eyebrow) { margin-bottom: 30px; }
.final-cta__spark { position: absolute; top: 20px; right: 16px; color: var(--orange); font-size: 55px; transform: rotate(14deg); }

.footer { padding: 35px 18px; background: var(--ink); color: white; }
.footer__inner { display: grid; justify-items: center; gap: 18px; text-align: center; }
.footer__logos { width: 100%; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 5vw, 56px); }
.brand--footer { width: auto; padding: 0; background: transparent; border-radius: 0; }
.brand--footer img,
.footer__partner-logo { width: clamp(135px, 28vw, 240px); height: auto; display: block; }
.footer p { margin: 0; color: #aaa9bc; font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.footer a { text-underline-offset: 4px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(36px, 11vw, 43px); }
  .hero h1 span { white-space: nowrap; }
  .pride-confetti i:nth-child(2) { top: auto; bottom: 24%; left: 7%; }
}

@media (max-width: 599px) {
  .site-header { min-height: 62px; padding: 7px 10px; }
  .site-header.mobile-hidden { transform: translateY(-110%); }
  .button.mobile-register { min-height: 36px; display: inline-flex; padding: 7px 13px; border-radius: 10px; font-size: 13px; }
  .menu-button { width: 36px; height: 36px; gap: 6px; }
  .menu-button span:not(.sr-only) { width: 16px; }
  .site-nav { inset-block-start: 62px; min-height: calc(100vh - 62px); padding-inline: 14px; }
  .hero-video__spark { right: -8px; }
}

@media (min-width: 700px) {
  .site-header { padding: 15px 30px; }
  .hero { padding: 140px 36px 90px; }
  .hero__actions { flex-direction: row; align-items: center; max-width: none; }
  .hero-video { width: min(70vw, 430px); }
  .section { padding: 110px 36px; }
  .video-story { min-height: 720px; padding: 130px 0; }
  .video-story .section-heading { padding: 0 36px; }
  .screen-time { padding: 120px 36px; }
  .screen-time__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .screen-time__detail { margin-inline: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { min-height: 460px; }
  .step h3 { margin-top: 280px; }
  .step__graphic { top: 90px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature--wide { grid-column: span 2; display: grid; grid-template-columns: 1fr .8fr; gap: 30px; align-items: end; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .partnership__inner { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .partnership__visual { margin-bottom: 0; min-height: 600px; }
  .about__inner { grid-template-columns: .8fr 1.2fr; align-items: center; }
  .footer__inner { grid-template-columns: 1fr; align-items: center; }
}

@media (min-width: 1000px) {
  .site-header { min-height: 74px; padding: 10px max(4vw, 28px); background: transparent; border: 0; backdrop-filter: none; }
  .site-header__inner { padding: 5px 12px 5px 16px; background: rgba(247,248,255,.97); border: 1px solid rgba(21,20,43,.16); border-radius: 19px; box-shadow: 0 8px 0 rgba(112,72,255,.18); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
  .site-header .brand img { width: 158px; }
  .site-header.scrolled .site-header__inner { background: rgba(247,248,255,.96); border-color: rgba(21,20,43,.28); box-shadow: 0 7px 0 rgba(112,72,255,.24); }
  .menu-button { display: none; }
  .site-nav { position: static; min-height: auto; padding: 0; display: flex; flex-direction: row; align-items: center; gap: clamp(12px, 1.45vw, 22px); background: transparent; }
  .site-nav > a:not(.button) { padding: 5px 0; border: 0; font-family: var(--body); font-size: 13px; font-weight: 700; white-space: nowrap; }
  .site-nav .button { margin: 0 0 0 8px; }
  .hero { min-height: 820px; padding: 135px max(6vw, 70px) 70px; }
  .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(330px, .65fr); gap: clamp(55px, 8vw, 130px); }
  .hero-video { width: min(31vw, 430px); justify-self: end; }
  .section { padding: 145px max(5vw, 60px); }
  .method .section-heading { max-width: 820px; }
  .method .section-heading h2, .skills__headline h2 span { white-space: nowrap; }
  .video-story { min-height: 760px; padding: 145px 0; }
  .video-story .section-heading { padding: 0 max(5vw, 60px); }
  .screen-time { min-height: 1350px; padding: 115px max(5vw, 60px); overflow: visible; }
  .screen-time__inner { min-height: 1120px; grid-template-columns: 1fr; align-content: center; justify-items: center; text-align: center; }
  .screen-time__copy { max-width: 850px; }
  .screen-time__detail { max-width: 660px; }
  .screen-time__copy, .screen-time__detail { position: relative; z-index: 3; }
  .screen-time__gallery { position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw; display: block; margin: 0; pointer-events: none; transform: translateX(-50%); }
  .screen-time__gallery figure { position: absolute; margin: 0; }
  .screen-time__gallery figure:nth-child(1) { --offset-y: 0px; --rotate: -7deg; top: -100px; left: 7%; width: 112px; height: 145px; }
  .screen-time__gallery figure:nth-child(2) { --offset-y: 0px; --rotate: 4deg; top: 80px; left: 25%; width: 178px; height: 132px; }
  .screen-time__gallery figure:nth-child(3) { --offset-y: 0px; --rotate: -6deg; top: 330px; left: -80px; width: 230px; height: 290px; }
  .screen-time__gallery figure:nth-child(4) { --offset-y: 0px; --rotate: 5deg; top: 90px; right: 25%; width: 118px; height: 150px; }
  .screen-time__gallery figure:nth-child(5) { --offset-y: 0px; --rotate: 7deg; top: -120px; right: 7%; width: 182px; height: 235px; }
  .screen-time__gallery figure:nth-child(6) { --offset-y: 0px; --rotate: 6deg; bottom: 70px; left: 8%; width: 245px; height: 190px; }
  .screen-time__gallery figure:nth-child(7) { --offset-y: 0px; --rotate: -5deg; bottom: 280px; left: -30px; width: 110px; height: 145px; }
  .screen-time__gallery figure:nth-child(8) { --offset-y: 0px; --rotate: 4deg; bottom: 60px; left: 44%; width: 182px; height: 138px; }
  .screen-time__gallery figure:nth-child(9) { --offset-y: 0px; --rotate: 6deg; right: -85px; bottom: 290px; width: 235px; height: 292px; }
  .screen-time__gallery figure:nth-child(10) { --offset-y: 0px; --rotate: -6deg; right: 8%; bottom: 65px; width: 180px; height: 136px; }
  .steps { gap: 22px; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .step { padding: 24px; }
  .feature-grid { grid-template-columns: repeat(12, 1fr); }
  .feature { grid-column: span 5; min-height: 360px; padding: 28px; }
  .feature--wide { grid-column: span 7; }
  .feature h3 { font-size: 38px; }
  .program-card { padding: 30px; }
  .skill-item { grid-template-columns: 65px minmax(310px, 1fr) 1fr; align-items: center; padding: 28px 0; }
  .skill-item > span { grid-row: auto; }
  .skill-item h3 { font-size: 31px; }
  .partnership { min-height: 850px; }
  .partnership__visual { min-height: 650px; }
  .about__copy h2 { font-size: 58px; }
  .faq > .container { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
  .final-cta { padding: 145px 40px; }
  .footer { padding: 45px 4vw; }
}

@media (max-width: 599px) {
  .step { min-height: 0; display: flex; flex-direction: column; padding: 20px; }
  .step__graphic { position: relative; inset: auto; width: 100%; height: 210px; margin: 4px 0 24px; }
  .step h3 { margin: 0 0 10px; }
  .step p { margin: 0; }
  .about__media { width: calc(100% - 40px); }
  .about__arrow { width: 42px; height: 42px; }
  .about__arrow--prev { left: -18px; }
  .about__arrow--next { right: -18px; }
  .screen-time__gallery figure {
    animation: none !important;
    transform: translate3d(0, var(--offset-y), 0) rotate(var(--rotate));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .screen-time__gallery figure { animation: none !important; }
}
