:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-soft: #ede9fe;
  --green: #5bb448;
  --green-dark: #2d7d32;
  --green-soft: #ddf0cd;
  --coral: #ff7a59;
  --coral-soft: #ffe2d8;
  --coin: #ffb627;
  --coin-soft: #fff2d5;
  --danger: #ff6b4a;
  --blue: #5b8df3;
  --sky: #bfe8ff;
  --ink: #202124;
  --muted: #61656d;
  --paper: #fffdf7;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --line: rgba(32, 33, 36, 0.12);
  --shadow: 0 18px 48px rgba(49, 56, 70, 0.14);
  color-scheme: light;
  font-family:
    ui-rounded,
    "SF Pro Rounded",
    "Nunito",
    "Avenir Next Rounded Std",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  min-width: 320px;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.86);
  border-bottom: 1px solid rgba(45, 125, 50, 0.1);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  font-size: 15px;
  font-weight: 800;
  color: var(--muted);
}

.nav-links a,
.site-footer a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: var(--primary);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(124, 58, 237, 0.24);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  min-height: calc(88vh - 72px);
  max-height: 860px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px) clamp(20px, 5vw, 76px) clamp(42px, 6vw, 68px);
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 182, 39, 0.32), transparent 24%),
    linear-gradient(180deg, #d5f2ff 0%, #eff9eb 61%, #fffdf7 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -88px;
  height: 180px;
  background:
    radial-gradient(45% 82% at 20% 25%, rgba(91, 180, 72, 0.22), transparent 70%),
    radial-gradient(45% 82% at 75% 15%, rgba(255, 122, 89, 0.14), transparent 70%),
    #fffdf7;
  border-radius: 50% 50% 0 0;
}

.hero-copy,
.hero-stage {
  position: relative;
}

.hero-copy {
  z-index: 3;
  max-width: 680px;
}

.hero-stage {
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  font-weight: 1000;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 20px;
  color: #41464d;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.28;
  font-weight: 650;
}

.hero-actions,
.approval-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button,
.approval-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover,
.approval-actions button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button.primary,
.approval-actions button:first-child {
  color: white;
  background: var(--primary);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.24);
}

.button.primary.dark {
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 16px 32px rgba(45, 125, 50, 0.2);
}

.button.secondary,
.approval-actions button:last-child {
  color: var(--green-dark);
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px rgba(45, 125, 50, 0.08);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.trust-points li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(45, 125, 50, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #3b4540;
  font-size: 14px;
  font-weight: 850;
}

.hero-stage {
  min-height: 500px;
}

.hero-tree {
  position: absolute;
  z-index: 1;
  right: -32px;
  bottom: 4px;
  width: min(58vw, 690px);
  opacity: 0.94;
  filter: drop-shadow(0 26px 40px rgba(45, 125, 50, 0.22));
}

.avatar {
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(32, 33, 36, 0.12));
}

.hero-avatar {
  position: absolute;
  z-index: 2;
  width: clamp(86px, 10vw, 132px);
  pointer-events: none;
  animation: bob 5.4s ease-in-out infinite;
}

.avatar-one {
  top: 82px;
  right: clamp(36px, 6vw, 82px);
}

.avatar-two {
  top: 220px;
  right: 4%;
  animation-delay: 0.8s;
}

.avatar-three {
  display: none;
}

.phone-shell {
  position: absolute;
  z-index: 4;
  left: 6%;
  bottom: 18px;
  width: min(330px, 45vw);
  min-width: 290px;
  padding: 18px;
  border: 10px solid #292b31;
  border-radius: 38px;
  background: #f7fbf5;
  box-shadow:
    0 34px 70px rgba(38, 48, 64, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.phone-status,
.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kid-greeting {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.avatar-bubble {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: white;
  background: #5b8df3;
  font-size: 28px;
  font-weight: 1000;
}

.kid-greeting span,
.level-card span,
.garden-mini span,
.chore-list small,
.approval-card span,
.approval-card small,
.stat-row span,
.site-footer span,
.site-footer p {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.kid-greeting strong {
  font-size: 26px;
  font-weight: 1000;
}

.level-card,
.garden-mini,
.chore-list article,
.approval-card {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 9px 22px rgba(32, 33, 36, 0.07);
}

.level-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 16px 0;
  padding: 16px;
  border-radius: 22px;
}

.level-card strong {
  display: block;
  margin-top: 4px;
  font-size: 19px;
  font-weight: 1000;
}

.level-card img {
  width: 54px;
  height: 54px;
}

.chore-list {
  display: grid;
  gap: 10px;
}

.chore-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
}

.task-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: white;
  background: var(--green);
  font-size: 20px;
  font-weight: 1000;
}

.chore-list article:nth-child(2) .task-icon {
  background: var(--primary);
}

.garden-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, #d8f3ff, #ecf8de);
}

.garden-mini img {
  width: 72px;
}

.section,
.split-section,
.parent-section,
.launch-section {
  position: relative;
  padding: clamp(70px, 8vw, 112px) clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.intro-band {
  background: var(--paper);
}

.steps-grid,
.safety-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.steps-grid article,
.safety-grid article,
.faq-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 12px 30px rgba(32, 33, 36, 0.06);
}

.step-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: white;
  background: var(--coral);
  font-size: 22px;
  font-weight: 1000;
}

.steps-grid article:nth-child(2) .step-number {
  background: var(--green);
}

.steps-grid article:nth-child(3) .step-number {
  background: var(--blue);
}

.split-section,
.parent-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
}

.split-section {
  background: #f8fbf3;
}

.split-copy {
  max-width: 620px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(91, 180, 72, 0.18);
  color: var(--green-dark);
  font-weight: 900;
  text-transform: capitalize;
}

.avatar-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.avatar-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 12px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), transparent 48%),
    linear-gradient(135deg, #e9f8dd, #fff6dc);
  border: 1px solid rgba(45, 125, 50, 0.11);
  box-shadow: 0 18px 34px rgba(40, 79, 49, 0.12);
}

.avatar-gallery img:nth-child(2n) {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.88), transparent 48%),
    linear-gradient(135deg, #ede9fe, #dff3ff);
}

.avatar-gallery img:nth-child(3n) {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9), transparent 48%),
    linear-gradient(135deg, #ffe2d8, #fff2d5);
}

.parent-section {
  background:
    linear-gradient(115deg, #fff9ec 0%, #f7fbf5 54%, #f0f7ff 100%);
}

.dashboard-preview {
  max-width: 620px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 34px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.parent-app-header {
  display: grid;
  grid-template-columns: 58px 1fr 42px;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.parent-app-header span,
.parent-app-header small,
.kid-summary-preview span,
.activity-preview span,
.parent-stat-tile small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.parent-app-header strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-weight: 1000;
}

.parent-app-header b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--surface-alt);
  font-size: 20px;
  box-shadow: 0 5px 14px rgba(32, 33, 36, 0.06);
}

.parent-avatar {
  width: 58px;
  height: 58px;
  font-size: 26px;
  background: var(--primary);
}

.parent-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.parent-stat-tile {
  min-height: 118px;
  padding: 14px 10px;
  border-radius: 18px;
  background: white;
  text-align: center;
  box-shadow: 0 8px 22px rgba(32, 33, 36, 0.06);
}

.parent-stat-tile .stat-icon,
.parent-stat-tile img {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 19px;
  font-weight: 1000;
}

.parent-stat-tile img {
  object-fit: contain;
  background: var(--coin-soft);
}

.parent-stat-tile.urgent .stat-icon {
  background: var(--danger);
}

.parent-stat-tile strong {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  font-weight: 1000;
}

.parent-section-label {
  margin: 14px 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.kid-summary-preview,
.approval-summary-preview,
.activity-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 22px rgba(32, 33, 36, 0.06);
}

.kid-summary-preview img,
.activity-preview img {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.kid-summary-preview strong,
.approval-summary-preview strong,
.activity-preview strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 1000;
}

.mini-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.mini-stat-row small {
  padding: 6px 8px;
  border-radius: 10px;
  color: var(--muted);
  background: var(--surface-alt);
  font-size: 12px;
  font-weight: 900;
}

.approval-summary-preview {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 122, 89, 0.22);
  background: #fff8f5;
}

.approval-summary-preview span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #3f4741;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 720;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 14px;
  font-weight: 1000;
}

.safety-section {
  background: var(--paper);
}

.safety-grid article {
  text-align: center;
}

.safety-grid h3 {
  text-transform: capitalize;
}

.safety-grid img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.faq-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(91, 180, 72, 0.12), transparent 28%),
    #fffdf7;
}

.faq-grid article {
  min-height: auto;
}

.faq-grid h3 {
  color: var(--green-dark);
}

.launch-section {
  padding-top: clamp(44px, 4vw, 62px);
  padding-bottom: clamp(44px, 4vw, 62px);
  background:
    radial-gradient(circle at 17% 20%, rgba(255, 182, 39, 0.34), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(255, 255, 255, 0.26), transparent 22%),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
}

.launch-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 58px);
  max-width: 1180px;
  margin: 0 auto;
}

.launch-copy {
  max-width: 740px;
}

.launch-section .eyebrow,
.launch-section p {
  color: rgba(255, 255, 255, 0.82);
}

.launch-section h2 {
  color: white;
  font-size: clamp(38px, 5vw, 72px);
}

.launch-panel {
  display: none;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(22, 74, 36, 0.25);
}

@media (min-width: 1041px) {
  .launch-panel {
    display: grid;
  }
}

.launch-panel img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: -58px auto 2px;
  filter: drop-shadow(0 14px 20px rgba(18, 55, 27, 0.24));
}

.launch-mini-card {
  min-width: 260px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.launch-mini-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-mini-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 1000;
}

.site-footer {
  padding: clamp(36px, 6vw, 64px) clamp(20px, 5vw, 76px) 24px;
  background: #203b2a;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 1000;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-brand span {
  color: white;
  font-size: 22px;
  font-weight: 1000;
}

.footer-brand-block p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.footer-column {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: #e8f8df;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.footer-column span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  max-width: 1180px;
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.legal-page {
  background: #fffdf7;
}

.legal-main {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) clamp(20px, 5vw, 56px);
}

.legal-main h1 {
  margin-bottom: 14px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.95;
}

.legal-updated {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.legal-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 12px 30px rgba(32, 33, 36, 0.06);
}

.legal-card + .legal-card {
  margin-top: 18px;
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.05;
}

.legal-card p,
.legal-card li {
  color: #4f5660;
  font-size: 17px;
  line-height: 1.55;
}

.legal-card ul {
  padding-left: 22px;
  margin: 0;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-card a {
  color: var(--primary-dark);
  font-weight: 900;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    max-height: none;
    padding-bottom: 42px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-tree {
    right: 3%;
    width: min(88vw, 620px);
  }

  .phone-shell {
    left: 4%;
    width: min(340px, 58vw);
  }

  .hero-avatar {
    display: none;
  }

  .steps-grid,
  .safety-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article,
  .safety-grid article,
  .faq-grid article {
    min-height: auto;
  }

  .split-section,
  .parent-section {
    grid-template-columns: 1fr;
  }

  .parent-copy {
    order: -1;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    gap: 12px;
  }

  .brand-mark span {
    display: none;
  }

  .brand-mark img {
    width: 46px;
    height: 46px;
  }

  .nav-links {
    gap: 10px;
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 42px;
    overflow: hidden;
  }

  h1 {
    font-size: clamp(50px, 16vw, 76px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stage {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    min-height: 0;
    margin-top: 24px;
    pointer-events: none;
  }

  .phone-shell {
    display: none;
  }

  .hero-tree {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(92vw, 390px);
  }

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

  .trust-points {
    justify-content: center;
    gap: 8px;
  }

  .trust-points li {
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .trust-points li:nth-child(3) {
    display: none;
  }

  .stat-row {
    gap: 8px;
  }

  .stat-row div {
    min-height: 92px;
    padding: 12px 8px;
  }

  .launch-section {
    padding-top: clamp(70px, 12vw, 92px);
  }

  .launch-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .launch-section .button {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .nav-links {
    gap: 8px;
    font-size: 12px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .trust-points {
    flex-direction: column;
    align-items: center;
  }

  .trust-points li {
    width: min(100%, 260px);
  }

  p {
    font-size: 16px;
  }

  .phone-shell {
    padding: 14px;
    border-width: 8px;
    border-radius: 32px;
  }

  .kid-greeting strong {
    font-size: 22px;
  }

  .level-card strong,
  .chore-list strong {
    font-size: 15px;
  }
}
