:root {
  --ink: #17222b;
  --ink-soft: #53616a;
  --paper: #f7f5ef;
  --paper-deep: #eeebe2;
  --white: #fffdf9;
  --coral: #f06f5f;
  --coral-dark: #d9584c;
  --coral-soft: #fbd8cf;
  --mint: #71b9a7;
  --mint-dark: #377f70;
  --mint-soft: #dcefe9;
  --blue: #6e95bf;
  --blue-dark: #355f89;
  --blue-soft: #dce8f3;
  --sun: #f3c668;
  --sand: #ead9b9;
  --line: rgba(23, 34, 43, 0.11);
  --shadow-sm: 0 12px 34px rgba(37, 43, 47, 0.08);
  --shadow-lg: 0 30px 80px rgba(31, 39, 45, 0.16);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

.svg-sprite {
  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: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-shell {
  overflow: clip;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(247, 245, 239, 0.88);
  box-shadow: 0 1px 0 rgba(23, 34, 43, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
}

.brand-mark > span {
  position: absolute;
  width: 26px;
  height: 24px;
  border: 2.8px solid var(--ink);
  border-radius: 15px 15px 12px 12px;
  border-top: 0;
  transform-origin: 50% 100%;
}

.brand-mark > span:nth-child(1) {
  left: 0;
  bottom: 3px;
  transform: rotate(34deg) scale(0.65);
}

.brand-mark > span:nth-child(2) {
  right: 0;
  bottom: 3px;
  transform: rotate(-34deg) scale(0.65);
}

.brand-mark > span:nth-child(3) {
  bottom: 3px;
}

.brand-mark svg {
  position: absolute;
  z-index: 2;
  bottom: 7px;
  left: 11px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--coral);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  font-size: 23px;
  letter-spacing: -1.1px;
}

.brand-name span {
  color: var(--coral);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #37434b;
  font-size: 14px;
  font-weight: 650;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1.5px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 19px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 890px;
  padding: 154px 0 52px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background:
    linear-gradient(rgba(23, 34, 43, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 34, 43, 0.026) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black 5%, transparent 88%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 170px;
  right: -160px;
  width: 530px;
  height: 530px;
  background: rgba(113, 185, 167, 0.16);
}

.hero-glow-two {
  top: 60px;
  left: -230px;
  width: 480px;
  height: 480px;
  background: rgba(240, 111, 95, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 42px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--coral-soft);
  place-items: center;
}

.eyebrow-dot svg {
  width: 13px;
  height: 13px;
  fill: var(--coral);
  stroke: var(--coral);
  stroke-width: 1.5;
}

.hero h1,
.section-heading h2,
.steps-copy h2,
.download-content h2 {
  margin: 23px 0 22px;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.058em;
}

.hero h1 span,
.section-heading h2 span,
.steps-copy h2 span {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 580px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: white;
  background: var(--coral);
  box-shadow: 0 14px 28px rgba(217, 88, 76, 0.22);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 18px 36px rgba(217, 88, 76, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.72);
}

.button-secondary:hover {
  background: white;
}

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

.button-dark:hover {
  background: #273640;
  box-shadow: var(--shadow-sm);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 23px;
  color: #68747b;
  font-size: 12px;
  font-weight: 650;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-notes i {
  display: grid;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--mint-soft);
  place-items: center;
}

.hero-notes svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--mint-dark);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  height: 595px;
}

.hero-visual::before {
  position: absolute;
  top: 54px;
  left: 72px;
  width: 468px;
  height: 468px;
  border-radius: 50%;
  background: linear-gradient(145deg, #dfeee7, #efdcc8);
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(23, 34, 43, 0.12);
  border-radius: 50%;
}

.orbit::before {
  position: absolute;
  top: 16%;
  right: 4%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(240, 111, 95, 0.15);
  content: "";
}

.orbit-one {
  top: 14px;
  left: 27px;
  width: 552px;
  height: 552px;
}

.orbit-two {
  top: 85px;
  left: 99px;
  width: 410px;
  height: 410px;
}

.orbit-two::before {
  top: auto;
  right: auto;
  bottom: 13%;
  left: 1%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(113, 185, 167, 0.15);
}

.phone {
  position: absolute;
  z-index: 2;
  width: 246px;
  height: 500px;
  filter: drop-shadow(0 28px 35px rgba(27, 34, 39, 0.23));
}

.phone-parent {
  top: 12px;
  left: 67px;
  transform: rotate(-7deg);
}

.phone-child {
  top: 74px;
  right: 40px;
  transform: rotate(6deg);
}

.phone-frame {
  height: 100%;
  padding: 8px;
  border: 2px solid #141d22;
  border-radius: 40px;
  background: #1c252b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.phone-island {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 76px;
  height: 19px;
  border-radius: 99px;
  background: #141b20;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
}

.parent-screen {
  padding: 17px 14px 0;
  background: #faf8f3;
}

.child-screen {
  padding: 17px 14px 0;
  color: white;
  background: linear-gradient(165deg, #ef7c68 0 28%, #f7f2e9 28.1%);
}

.mock-status {
  display: flex;
  height: 26px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 5px;
  color: #27343b;
  font-size: 7px;
  font-weight: 800;
}

.mock-status.light {
  color: white;
}

.mock-greeting,
.kid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-greeting div,
.kid-header > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.mock-greeting small,
.kid-header small {
  color: #8a9295;
  font-size: 7px;
}

.mock-greeting strong {
  max-width: 125px;
  margin-top: 1px;
  font-size: 12px;
  line-height: 1.15;
}

.mock-avatar,
.kid-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 10px;
  font-weight: 800;
  place-items: center;
  box-shadow: 0 4px 12px rgba(217, 88, 76, 0.2);
}

.progress-card {
  margin-top: 14px;
  padding: 13px;
  border-radius: 17px;
  color: white;
  background: linear-gradient(135deg, #263740, #40545e);
}

.progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress-top > span {
  display: flex;
  flex-direction: column;
}

.progress-top small {
  opacity: 0.66;
  font-size: 6px;
}

.progress-top b {
  margin-top: 1px;
  font-size: 10px;
}

.progress-top em {
  color: #ffd782;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
}

.progress-track,
.kid-progress {
  height: 4px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.17);
}

.progress-track span {
  display: block;
  width: 67%;
  height: 100%;
  border-radius: inherit;
  background: #f6c967;
}

.tiny-avatars {
  display: flex;
  align-items: center;
  margin-top: 9px;
}

.tiny-avatars i {
  display: grid;
  width: 17px;
  height: 17px;
  margin-right: -4px;
  border: 1px solid #40515a;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 5px;
  font-style: normal;
  place-items: center;
}

.tiny-avatars i:nth-child(2) {
  background: var(--mint);
}

.tiny-avatars small {
  margin-left: 10px;
  opacity: 0.65;
  font-size: 5px;
}

.mock-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 2px 7px;
}

.mock-section-title b {
  font-size: 9px;
}

.mock-section-title small {
  color: var(--coral-dark);
  font-size: 5px;
  font-weight: 700;
}

.mission-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  padding: 7px;
  border-radius: 11px;
  background: white;
  box-shadow: 0 3px 10px rgba(28, 38, 44, 0.05);
}

.mission-icon {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  place-items: center;
}

.mission-icon.sunshine {
  color: #aa7720;
  background: #fff0c7;
}

.mission-icon.mint {
  color: var(--mint-dark);
  background: var(--mint-soft);
}

.mission-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.mission-row b {
  font-size: 7px;
}

.mission-row small {
  color: #9aa0a2;
  font-size: 5px;
}

.mission-row em {
  color: var(--coral-dark);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.child-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.child-mini-grid > div {
  display: grid;
  grid-template-columns: 24px 1fr;
  padding: 7px;
  border-radius: 11px;
  background: #efece5;
}

.child-mini-grid span {
  display: grid;
  grid-row: 1 / 3;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 6px;
  place-items: center;
}

.child-mini-grid > div:nth-child(2) span {
  background: var(--blue);
}

.child-mini-grid b {
  font-size: 6px;
}

.child-mini-grid small {
  color: #858d91;
  font-size: 5px;
}

.mock-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 43px;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid rgba(23, 34, 43, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.mock-nav i {
  width: 13px;
  height: 13px;
  border: 1.5px solid #a9afb2;
  border-radius: 4px;
}

.mock-nav i:first-child {
  border-color: var(--coral);
  background: var(--coral-soft);
}

.kid-header {
  justify-content: flex-start;
  gap: 8px;
  margin: 4px 0 11px;
}

.kid-avatar {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.65);
  background: #f5c262;
}

.kid-header small {
  color: rgba(255, 255, 255, 0.72);
}

.kid-header b {
  max-width: 135px;
  font-size: 9px;
  line-height: 1.15;
}

.points-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.points-pill svg {
  width: 10px;
  height: 10px;
  fill: #ffd87f;
  stroke: #ffd87f;
}

.points-pill b {
  font-size: 9px;
}

.points-pill small {
  opacity: 0.7;
  font-size: 5px;
}

.kid-card {
  margin-top: 25px;
  padding: 13px;
  border-radius: 18px;
  color: var(--ink);
  background: white;
  box-shadow: 0 10px 30px rgba(74, 50, 45, 0.12);
}

.kid-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
}

.kid-card-head em {
  color: var(--coral);
  font-size: 7px;
  font-style: normal;
}

.kid-progress {
  height: 4px;
  margin: 7px 0 11px;
  background: #eeeae2;
}

.kid-progress i {
  display: block;
  width: 67%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}

.kid-task {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 1px;
  border-bottom: 1px solid #eeeae2;
}

.kid-task:last-child {
  border: 0;
}

.kid-task > i {
  display: grid;
  width: 20px;
  height: 20px;
  border: 1px solid #d9d5ce;
  border-radius: 7px;
  place-items: center;
}

.kid-task.done > i {
  border-color: var(--mint);
  background: var(--mint);
}

.kid-task svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: white;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kid-task > span {
  display: flex;
  flex-direction: column;
}

.kid-task b {
  font-size: 7px;
}

.kid-task small {
  color: #a2a4a5;
  font-size: 5px;
}

.kid-task.done b {
  color: #92989b;
  text-decoration: line-through;
}

.reward-teaser {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 10px;
  padding: 9px;
  border-radius: 13px;
  color: var(--ink);
  background: #fff0c9;
}

.reward-teaser > span {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #b87c1b;
  background: #ffdf8e;
  place-items: center;
}

.reward-teaser svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reward-teaser div {
  display: flex;
  flex-direction: column;
}

.reward-teaser small {
  color: #9a8258;
  font-size: 5px;
}

.reward-teaser b {
  font-size: 7px;
}

.child-nav {
  background: #fffdf9;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  animation: float 4.5s ease-in-out infinite;
}

.floating-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card b {
  font-size: 9px;
}

.floating-card small {
  color: #8b9498;
  font-size: 7px;
}

.floating-icon {
  display: grid;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  place-items: center;
}

.floating-icon.coral {
  color: var(--coral-dark);
  background: var(--coral-soft);
}

.floating-icon.blue {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.floating-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-task {
  top: 35px;
  left: -8px;
}

.floating-safe {
  right: -8px;
  bottom: 32px;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-proof > div {
  display: flex;
  min-height: 95px;
  align-items: center;
  gap: 13px;
  padding: 20px 30px;
  border-right: 1px solid var(--line);
}

.quick-proof > div:last-child {
  border: 0;
}

.quick-proof b {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 33px;
  font-style: italic;
}

.quick-proof svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-proof > div:nth-child(4) svg {
  stroke: var(--mint-dark);
}

.quick-proof span {
  color: #69757b;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.steps-copy h2 {
  margin: 19px 0 21px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.05;
}

.section-heading p,
.steps-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading.centered p {
  margin-inline: auto;
}

.apps-section {
  background: var(--white);
}

.app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 57px;
}

.app-card {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.app-card-parent {
  background: #f6dfd6;
}

.app-card-child {
  background: #dcece6;
}

.app-card-copy {
  position: relative;
  z-index: 2;
  width: 57%;
  padding: 50px 0 44px 44px;
}

.app-label {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(23, 34, 43, 0.1);
  border-radius: 99px;
  color: #725f59;
  background: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-card-child .app-label {
  color: #477268;
}

.app-card h3 {
  margin: 18px 0 13px;
  font-size: 33px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.app-card p {
  margin: 0;
  color: #616b6f;
  font-size: 14px;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 25px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 12px;
  font-weight: 650;
}

.check-list li span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--coral-dark);
  background: rgba(255, 255, 255, 0.6);
  place-items: center;
}

.app-card-child .check-list li span {
  color: var(--mint-dark);
}

.check-list svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
}

.app-card-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
}

.art-circle {
  position: absolute;
  top: 80px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.art-phone {
  position: absolute;
  top: 115px;
  right: -24px;
  width: 226px;
  height: 448px;
  padding: 33px 15px 20px;
  border: 7px solid #243039;
  border-radius: 36px;
  background: #faf8f3;
  box-shadow: -18px 25px 45px rgba(55, 45, 42, 0.14);
  transform: rotate(-5deg);
}

.art-phone-top {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 66px;
  height: 14px;
  border-radius: 20px;
  background: #243039;
  transform: translateX(-50%);
}

.art-profile {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
}

.art-profile span {
  display: grid;
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 10px;
  font-weight: 800;
  place-items: center;
}

.art-profile i,
.art-row i,
.art-row span {
  height: 7px;
  border-radius: 10px;
  background: #d8d6d0;
}

.art-profile i:last-child {
  width: 55%;
}

.art-chart {
  display: flex;
  height: 112px;
  align-items: flex-end;
  gap: 10px;
  justify-content: center;
  padding: 15px;
  border-radius: 18px;
  background: #24343d;
}

.art-chart i {
  width: 18px;
  border-radius: 6px 6px 2px 2px;
  background: #e5b75f;
}

.art-chart i:nth-child(1) { height: 40%; }
.art-chart i:nth-child(2) { height: 65%; }
.art-chart i:nth-child(3) { height: 53%; }
.art-chart i:nth-child(4) { height: 83%; }
.art-chart i:nth-child(5) { height: 72%; }

.art-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
  border-radius: 13px;
  background: white;
}

.art-row span {
  width: 34px;
  height: 34px;
  background: var(--coral-soft);
}

.art-row i {
  width: 75%;
}

.art-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 14px;
  background: white;
  box-shadow: var(--shadow-sm);
  font-size: 10px;
  font-weight: 800;
}

.art-badge svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--coral);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-points {
  top: 236px;
  left: -42px;
}

.kid-art-phone {
  background: linear-gradient(180deg, var(--coral) 0 27%, #faf8f3 27.2%);
  transform: rotate(5deg);
}

.art-kid-star {
  display: grid;
  width: 53px;
  height: 53px;
  margin: 19px auto 10px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: white;
  background: #f7c867;
  place-items: center;
}

.art-kid-star svg {
  width: 23px;
  height: 23px;
  fill: white;
  stroke: white;
}

.art-kid-title {
  width: 55%;
  height: 7px;
  margin: 0 auto 35px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
}

.art-task {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  padding: 11px;
  border-radius: 13px;
  background: white;
  box-shadow: 0 4px 15px rgba(39, 45, 48, 0.06);
}

.art-task span {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid #ddd8cf;
  border-radius: 9px;
  place-items: center;
}

.art-task.checked span {
  border-color: var(--mint);
  background: var(--mint);
}

.art-task svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: white;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.art-task i {
  width: 70%;
  height: 7px;
  border-radius: 8px;
  background: #d8d6d0;
}

.badge-gift {
  top: 196px;
  left: -52px;
}

.badge-gift svg {
  stroke: var(--mint-dark);
}

.features-section {
  background: #f1eee6;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
}

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

.split-heading > p {
  padding-bottom: 5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  position: relative;
  min-height: 345px;
  overflow: hidden;
  padding: 34px;
  border-radius: 32px;
  background: white;
}

.feature-wide {
  grid-column: span 7;
}

.feature-card:not(.feature-wide) {
  grid-column: span 5;
}

.feature-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 43px;
  border-radius: 14px;
  color: var(--coral-dark);
  background: rgba(255, 255, 255, 0.52);
  place-items: center;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-number {
  color: rgba(23, 34, 43, 0.34);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.feature-card h3 {
  max-width: 360px;
  margin: 8px 0 11px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 355px;
  margin: 0;
  color: #5c686e;
  font-size: 13px;
  line-height: 1.65;
}

.feature-coral {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 15px;
  background: var(--coral-soft);
}

.feature-coral .feature-icon,
.feature-blue .feature-icon {
  position: absolute;
  top: 34px;
  left: 34px;
}

.feature-coral > div:nth-child(2),
.feature-blue > div:nth-child(2) {
  padding-top: 83px;
}

.mini-missions {
  align-self: center;
  padding: 15px;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.58);
  transform: rotate(2deg);
}

.mini-missions > div {
  display: grid;
  grid-template-columns: 31px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 10px;
  border-bottom: 1px solid rgba(23, 34, 43, 0.08);
}

.mini-missions > div:last-child {
  border: 0;
}

.mini-check {
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(23, 34, 43, 0.14);
  border-radius: 9px;
  place-items: center;
}

.mini-check.done {
  border-color: var(--mint);
  color: white;
  background: var(--mint);
}

.mini-check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-missions b,
.mini-missions em {
  font-size: 10px;
}

.mini-missions em {
  color: var(--coral-dark);
  font-style: normal;
  font-weight: 800;
}

.feature-mint {
  background: #d7ebe4;
}

.feature-mint .feature-icon {
  color: var(--mint-dark);
}

.reward-bubble {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 38px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.reward-bubble > span {
  display: grid;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  color: #a57319;
  background: #f8dda3;
  place-items: center;
}

.reward-bubble svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reward-bubble div {
  display: flex;
  flex-direction: column;
}

.reward-bubble small {
  color: #77817e;
  font-size: 8px;
}

.reward-bubble b {
  font-size: 11px;
}

.reward-bubble em {
  color: var(--mint-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.feature-sand {
  background: #eadfc9;
}

.feature-sand .feature-icon {
  color: #916a2e;
}

.control-stack {
  position: absolute;
  right: 28px;
  bottom: 27px;
  left: 28px;
  display: grid;
  gap: 7px;
}

.control-stack > div {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 11px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.control-stack span {
  display: grid;
  width: 33px;
  height: 33px;
  border-radius: 10px;
  color: #83642e;
  background: rgba(255, 255, 255, 0.58);
  place-items: center;
}

.control-stack svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-stack b {
  font-size: 10px;
}

.control-stack i {
  position: relative;
  width: 28px;
  height: 17px;
  border-radius: 20px;
  background: var(--mint);
}

.control-stack i::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: white;
  content: "";
}

.feature-blue {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  background: var(--blue-soft);
}

.feature-blue .feature-icon {
  color: var(--blue-dark);
}

.chat-preview {
  display: grid;
  grid-template-columns: 43px 1fr 28px;
  gap: 11px;
  align-items: center;
  align-self: center;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  transform: rotate(-1.5deg);
}

.chat-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 12px;
  font-weight: 800;
  place-items: center;
}

.chat-preview div {
  display: flex;
  flex-direction: column;
}

.chat-preview small {
  color: #7a858c;
  font-size: 7px;
}

.chat-preview b {
  font-size: 9px;
}

.chat-preview i {
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--coral);
  background: var(--coral-soft);
  place-items: center;
}

.chat-preview svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  stroke: currentColor;
}

.steps-section {
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.steps-copy .button {
  margin-top: 29px;
}

.steps-list {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list::before {
  position: absolute;
  z-index: 0;
  top: 52px;
  bottom: 52px;
  left: 37px;
  width: 1px;
  background: rgba(23, 34, 43, 0.12);
  content: "";
}

.steps-list li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  align-items: center;
  padding: 27px 30px 27px 12px;
  border: 1px solid rgba(23, 34, 43, 0.08);
  border-radius: 24px;
  background: #f6f3ec;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.steps-list li:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.steps-list li > span {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  font-size: 12px;
  font-weight: 850;
  place-items: center;
  box-shadow: 0 0 0 8px #f6f3ec;
}

.steps-list li:nth-child(2) > span {
  background: var(--mint);
}

.steps-list li:nth-child(3) > span {
  background: var(--blue);
}

.steps-list h3 {
  margin: 0 0 5px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.steps-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.download-section {
  padding-top: 30px;
  background: var(--white);
}

.download-panel {
  position: relative;
  display: grid;
  min-height: 550px;
  overflow: hidden;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 45px;
  color: white;
  background: #1d2c34;
}

.download-content {
  position: relative;
  z-index: 3;
  max-width: 660px;
  padding: 75px 0 68px 70px;
}

.section-kicker.light {
  color: #f7cbbf;
}

.download-content h2 {
  margin: 19px 0 20px;
  font-size: clamp(40px, 4.9vw, 65px);
}

.download-content > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.store-button {
  display: flex;
  min-width: 200px;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: #0b1013;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.store-button:hover,
.store-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: #121a1f;
  transform: translateY(-3px);
}

.play-icon {
  width: 28px;
  height: 32px;
  flex: 0 0 auto;
}

.store-button > span {
  display: grid;
  grid-template-columns: 1fr auto;
  min-width: 0;
}

.store-button small,
.store-button b {
  grid-column: 1 / 3;
}

.store-button small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 7px;
  line-height: 1.1;
  text-transform: uppercase;
}

.store-button b {
  font-size: 18px;
  line-height: 1.2;
}

.store-button em {
  color: #f0b9ad;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.store-note {
  margin-top: 13px !important;
  color: rgba(255, 255, 255, 0.46) !important;
  font-size: 10px !important;
}

.download-art {
  position: relative;
  z-index: 2;
}

.download-orbit {
  position: absolute;
  top: 40px;
  right: -130px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025), 0 0 0 160px rgba(255, 255, 255, 0.018);
}

.download-phone {
  position: absolute;
  display: flex;
  width: 190px;
  height: 390px;
  flex-direction: column;
  align-items: center;
  border: 6px solid #10191e;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.download-phone::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 60px;
  height: 14px;
  border-radius: 20px;
  background: #10191e;
  content: "";
  transform: translateX(-50%);
}

.download-phone.back {
  top: 58px;
  right: 22px;
  justify-content: center;
  color: white;
  background: linear-gradient(160deg, #6f9bc4, #dbe9f4);
  transform: rotate(9deg);
}

.download-phone.front {
  top: 104px;
  left: 3px;
  justify-content: center;
  color: var(--ink);
  background: linear-gradient(160deg, #f5d6cc, #fffaf3);
  transform: rotate(-7deg);
}

.download-phone > span {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 20px;
  border-radius: 25px;
  color: white;
  background: var(--coral);
  place-items: center;
  box-shadow: 0 15px 25px rgba(217, 88, 76, 0.25);
}

.download-phone.back > span {
  background: var(--blue-dark);
}

.download-phone svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-phone b {
  font-size: 14px;
}

.download-phone small {
  margin-top: 5px;
  color: #7f888c;
  font-size: 8px;
}

.download-spark {
  position: absolute;
  color: #f4cb78;
  font-size: 29px;
}

.spark-one {
  top: 79px;
  left: 30px;
}

.spark-two {
  right: 31px;
  bottom: 65px;
  color: #f3a998;
  font-size: 22px;
}

.download-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shape-one {
  top: -160px;
  left: -190px;
  width: 430px;
  height: 430px;
  background: rgba(240, 111, 95, 0.08);
}

.shape-two {
  right: 15%;
  bottom: -250px;
  width: 480px;
  height: 480px;
  background: rgba(113, 185, 167, 0.08);
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 77px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 3px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f1eee7;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  margin: -4px 45px 24px 3px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.site-footer {
  padding: 75px 0 24px;
  color: rgba(255, 255, 255, 0.75);
  background: #17242b;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  padding-bottom: 55px;
}

.footer-brand {
  color: white;
}

.footer-brand .brand-mark > span {
  border-color: white;
}

.footer-top > div:first-child p {
  max-width: 360px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links b {
  margin-bottom: 5px;
  color: white;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f1a99c;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(240, 111, 95, 0.42);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .main-nav { gap: 20px; }
  .hero-grid { gap: 10px; }
  .hero-visual { transform: scale(0.88); transform-origin: center right; }
  .app-card-copy { width: 60%; padding-left: 32px; }
  .app-card-art { width: 43%; }
  .feature-coral, .feature-blue { grid-template-columns: 1fr; }
  .feature-coral > div:nth-child(2), .feature-blue > div:nth-child(2) { padding-top: 75px; }
  .mini-missions, .chat-preview { display: none; }
  .download-content { padding-left: 50px; }
  .faq-grid { gap: 60px; }
}

@media (max-width: 900px) {
  .site-header { padding: 13px 0; }
  .js .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 43px;
    height: 43px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.9);
    place-items: center;
  }
  .nav-toggle > span:not(.sr-only) {
    position: absolute;
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }
  .nav-toggle > span:nth-child(2) { transform: translateY(-3px); }
  .nav-toggle > span:nth-child(3) { transform: translateY(3px); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: rotate(-45deg); }
  .js .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 90px 30px;
    background: rgba(247, 245, 239, 0.98);
    font-size: 22px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .js .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-cta { padding: 12px 24px; font-size: 16px; }
  .hero { padding-top: 126px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { max-width: 680px; padding-bottom: 0; text-align: center; margin-inline: auto; }
  .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-notes { justify-content: center; }
  .hero-visual { width: 620px; max-width: 100%; margin: 20px auto -20px; transform: scale(0.92); transform-origin: center; }
  .quick-proof { grid-template-columns: 1fr 1fr; }
  .quick-proof > div:nth-child(2) { border-right: 0; }
  .quick-proof > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .app-cards { grid-template-columns: 1fr; }
  .app-card { min-height: 525px; }
  .app-card-copy { width: 56%; padding-left: 46px; }
  .app-card-art { width: 46%; }
  .feature-wide, .feature-card:not(.feature-wide) { grid-column: span 6; }
  .feature-card { min-height: 370px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 54px; }
  .steps-copy { max-width: 650px; }
  .download-panel { grid-template-columns: 1fr; }
  .download-content { max-width: 720px; padding-right: 50px; }
  .download-art { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .footer-top { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-name { font-size: 21px; }
  .brand-mark { width: 35px; height: 35px; transform: scale(0.92); }
  .hero { min-height: 0; padding: 113px 0 45px; }
  .hero h1 { margin-top: 19px; font-size: clamp(43px, 13.5vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-notes { align-items: center; gap: 8px 15px; }
  .hero-visual {
    left: auto;
    width: 610px;
    max-width: none;
    height: 355px;
    margin: 16px 0 0 calc((100% - 610px) / 2);
    scale: 0.59;
    transform-origin: top center;
  }
  .quick-proof { margin-top: 25px; }
  .quick-proof > div { min-height: 78px; gap: 9px; padding: 13px 10px; }
  .quick-proof b { font-size: 27px; }
  .quick-proof svg { width: 26px; height: 26px; }
  .quick-proof span { font-size: 9px; }
  .section { padding: 80px 0; }
  .section-heading h2, .steps-copy h2 { font-size: 42px; }
  .section-heading p, .steps-copy > p { font-size: 15px; }
  .app-cards { margin-top: 40px; }
  .app-card { min-height: 690px; border-radius: 31px; }
  .app-card-copy { width: 100%; padding: 35px 28px 0; }
  .app-card h3 { font-size: 30px; }
  .app-card-art { top: auto; width: 100%; height: 315px; }
  .art-circle { top: 0; right: -90px; width: 330px; height: 330px; }
  .art-phone { top: 10px; right: 23px; width: 190px; height: 380px; }
  .badge-points, .badge-gift { top: 120px; left: 44px; }
  .feature-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
  .feature-wide, .feature-card:not(.feature-wide) { grid-column: auto; }
  .feature-card { min-height: 360px; padding: 28px; border-radius: 26px; }
  .feature-card h3 { font-size: 23px; }
  .feature-coral, .feature-blue { display: block; }
  .feature-coral .feature-icon, .feature-blue .feature-icon { top: 28px; left: 28px; }
  .feature-coral > div:nth-child(2), .feature-blue > div:nth-child(2) { padding-top: 75px; }
  .feature-mint .feature-icon, .feature-sand .feature-icon { margin-bottom: 34px; }
  .reward-bubble { margin-top: 34px; }
  .control-stack { right: 22px; bottom: 22px; left: 22px; }
  .steps-list li { grid-template-columns: 47px 1fr; gap: 16px; padding: 21px 18px 21px 10px; }
  .steps-list li > span { width: 46px; height: 46px; }
  .steps-list::before { left: 33px; }
  .steps-list h3 { font-size: 16px; }
  .steps-list p { font-size: 12px; }
  .download-section { padding-top: 5px; }
  .download-panel { min-height: 0; border-radius: 30px; }
  .download-content { padding: 55px 26px; text-align: center; }
  .download-content h2 { font-size: 41px; }
  .download-content > p { font-size: 14px; }
  .store-buttons { flex-direction: column; }
  .store-button { justify-content: flex-start; text-align: left; }
  .faq-list summary { font-size: 14px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

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