:root {
  --bg: #fbfaf1;
  --bg-soft: #f1f0e7;
  --surface: #fffdf5;
  --surface-strong: #ffffff;
  --ink: #11251b;
  --ink-soft: #506052;
  --muted: #748075;
  --green: #1f7f4d;
  --green-deep: #16613a;
  --green-soft: #e9f5ec;
  --gold: #f4bd45;
  --gold-soft: #fff4cc;
  --line: rgba(22, 45, 30, 0.12);
  --shadow: 0 24px 70px rgba(20, 42, 28, 0.12);
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 189, 69, 0.22), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(38, 151, 88, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf5 0%, var(--bg) 36%, #f6f5ed 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
summary {
  font: inherit;
}

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

.narrow {
  max-width: 720px;
}

.center {
  text-align: center;
}

.section-band {
  padding: clamp(72px, 9vw, 118px) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 245, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 32px), 1240px);
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--green);
}

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

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  justify-content: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a,
.whatsapp-link {
  transition: color 160ms ease;
}

.nav-links a:hover,
.whatsapp-link:hover {
  color: var(--green);
}

.nav-actions {
  justify-content: flex-end;
  gap: 18px;
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(31, 127, 77, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--green-deep);
  box-shadow: 0 18px 34px rgba(31, 127, 77, 0.28);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 0.86rem;
}

.button-quiet {
  background: var(--green-soft);
  color: var(--green-deep);
  border-color: rgba(31, 127, 77, 0.18);
  box-shadow: none;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  background: #ddefe2;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  padding-top: clamp(64px, 8vw, 112px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 2%;
  width: 46vw;
  height: 46vw;
  pointer-events: none;
  background: radial-gradient(circle, rgba(69, 185, 114, 0.18), transparent 62%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 7px 12px;
  border: 1px solid rgba(244, 189, 69, 0.38);
  border-radius: 999px;
  background: rgba(255, 248, 222, 0.78);
  color: #916b07;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  font-weight: 800;
}

h1 span,
.hero h1 span {
  color: var(--green);
}

h2 {
  max-width: 860px;
  font-size: clamp(2.2rem, 4.8vw, 4.55rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  font-weight: 800;
  line-height: 1.12;
}

p,
li,
blockquote {
  line-height: 1.72;
}

.hero-lede {
  max-width: 58ch;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-badges-center {
  justify-content: center;
}

.store-badge {
  width: 194px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: #050505;
  color: #fff;
  box-shadow: 0 12px 26px rgba(17, 37, 27, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  background: #111;
  box-shadow: 0 16px 32px rgba(17, 37, 27, 0.22);
}

.store-badge svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: currentColor;
}

.store-badge span {
  display: grid;
  gap: 1px;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.store-badge small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0;
}

.store-badge .play-cyan {
  fill: #00a0ff;
}

.store-badge .play-green {
  fill: #00e676;
}

.store-badge .play-yellow {
  fill: #ffea00;
}

.store-badge .play-red {
  fill: #ff3d00;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-list li::before,
.audience-card li::before,
.price-card li::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 42%, #fff 43% 56%, transparent 57%),
    var(--green);
}

.hero-visual {
  position: relative;
  max-width: 520px;
  justify-self: end;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.parent-love {
  position: absolute;
  top: 24px;
  right: -24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(22, 45, 30, 0.16);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.parent-love span {
  color: var(--gold);
}

.progress-card {
  position: absolute;
  left: -36px;
  bottom: 34px;
  width: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(22, 45, 30, 0.16);
}

.progress-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.progress-card strong {
  display: block;
  font-size: 0.93rem;
}

.progress-card span {
  display: inline-block;
  margin-top: 13px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 800;
}

.progress-bar {
  height: 8px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eef1e9;
}

.progress-bar span {
  display: block;
  width: 72%;
  height: 100%;
  margin: 0;
  background: linear-gradient(90deg, var(--green), #55b978);
}

.partner-strip {
  padding: 22px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 245, 0.82);
  overflow: hidden;
}

.partner-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.partner-shell > p {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.school-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.school-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: school-scroll 34s linear infinite;
}

.school-track span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  padding: 9px 14px 9px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.school-track strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
}

@keyframes school-scroll {
  to {
    transform: translateX(-50%);
  }
}

.worry {
  background: var(--bg-soft);
}

.worry .narrow p:not(.section-kicker),
.pricing .narrow p,
.final-panel p,
.split-heading > p,
.trust article p,
.faq p {
  color: var(--ink-soft);
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.worry-card,
.step-card,
.audience-card,
.price-card,
.trust article,
.faq details,
.testimonial-grid figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(24, 42, 28, 0.06);
}

.worry-card {
  padding: 26px;
  min-height: 235px;
}

.icon-chip {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #b08008;
  background: var(--gold-soft);
  font-weight: 800;
}

.worry-card blockquote {
  margin: 24px 0 20px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.worry-card p {
  margin: 0;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.48fr);
  gap: 48px;
  align-items: end;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.app-showcase {
  background: var(--bg-soft);
}

.proof-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(2, minmax(0, 0.72fr));
  gap: 20px;
  margin-top: 46px;
  align-items: stretch;
}

.proof-photo {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0f2619;
  box-shadow: 0 18px 54px rgba(24, 42, 28, 0.14);
}

.proof-photo-large {
  min-height: 520px;
}

.proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.proof-photo:nth-child(1) img {
  object-position: 44% center;
}

.proof-photo:nth-child(2) img {
  object-position: 42% center;
}

.proof-photo:nth-child(3) img {
  object-position: 62% center;
}

.proof-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(10, 28, 18, 0.82));
}

.proof-photo div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}

.proof-photo span {
  display: inline-flex;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-photo h3 {
  max-width: 420px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.product-focus {
  background: #fffdf5;
}

.product-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.product-focus-grid p:not(.section-kicker) {
  max-width: 56ch;
  color: var(--ink-soft);
}

.phone-pair {
  position: relative;
  min-height: 570px;
}

.phone-shot {
  position: absolute;
  object-fit: cover;
  object-position: top center;
  border: 10px solid #111;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 28px 70px rgba(17, 37, 27, 0.22);
}

.phone-shot-front {
  right: 8%;
  top: 0;
  width: min(310px, 50%);
  height: 560px;
  z-index: 2;
}

.phone-shot-back {
  left: 4%;
  bottom: 24px;
  width: min(430px, 64%);
  height: 330px;
  border-radius: 24px;
  transform: rotate(-4deg);
}

.screen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.62fr));
  gap: 22px;
  margin-top: 46px;
  align-items: stretch;
}

.screen-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 16px 44px rgba(24, 42, 28, 0.08);
}

.screen-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  background: #eef1e9;
}

.screen-featured {
  grid-row: span 2;
}

.screen-featured img {
  height: 520px;
}

.screen-card div {
  padding: 22px;
}

.screen-card span,
.blog-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.screen-card h3,
.blog-grid h3 {
  font-size: 1.14rem;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.step-card {
  padding: 30px;
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.step-card p,
.audience-card p,
.price-card p,
.testimonial-grid blockquote {
  color: var(--ink-soft);
}

.audiences {
  background: #fffdf5;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.audience-card {
  padding: 30px;
}

.audience-featured {
  background: linear-gradient(180deg, #eff8f0, #fffdf5);
  border-color: rgba(31, 127, 77, 0.24);
}

.audience-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.audience-top strong,
.popular {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
}

.audience-card ul,
.price-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.audience-card li,
.price-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.testimonials {
  background: var(--bg-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 26px;
}

.testimonial-grid blockquote {
  margin: 0;
  font-size: 1rem;
}

.testimonial-grid figcaption {
  margin-top: 22px;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 34px;
}

.price-featured {
  border-color: rgba(31, 127, 77, 0.3);
  background: linear-gradient(180deg, #f2faf3, #fffdf5);
}

.popular {
  position: absolute;
  top: 22px;
  right: 22px;
}

.price {
  margin: 18px 0 14px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
}

.price-card .button {
  width: 100%;
  margin-top: 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.trust article {
  padding: 28px;
}

.trust h3 {
  font-size: 1.2rem;
}

.faq {
  background: var(--bg-soft);
}

.download {
  background: #fffdf5;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 34px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(31, 127, 77, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef8f0, #fffdf5);
  box-shadow: var(--shadow);
}

.download-panel p {
  max-width: 720px;
  color: var(--ink-soft);
}

.download-actions {
  display: grid;
  gap: 12px;
}

.download-store-badges {
  justify-content: flex-end;
  margin-top: 0;
}

.blog-section {
  background: var(--bg-soft);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.blog-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(24, 42, 28, 0.06);
}

.blog-grid a:hover,
.blog-grid a:focus-visible {
  color: var(--green);
}

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

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin-top: 44px;
}

.faq details {
  padding: 0 24px;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 22px 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: -4px 0 24px;
}

.final-cta {
  padding-bottom: 86px;
}

.final-panel {
  padding: clamp(44px, 7vw, 86px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 16%, rgba(244, 189, 69, 0.24), transparent 32%),
    linear-gradient(135deg, #154d31, #1f7f4d);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-panel h2 {
  max-width: 980px;
  margin: 0 auto;
}

.final-panel p {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.final-panel .hero-actions {
  justify-content: center;
}

.final-panel .button {
  background: #fff;
  border-color: #fff;
  color: var(--green-deep);
}

.final-panel .button-quiet {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.small-note {
  font-size: 0.9rem;
}

.site-footer {
  padding: 62px 0 34px;
  background: #0f2619;
  color: rgba(255, 255, 255, 0.78);
}

.article-page {
  min-height: 100vh;
  padding: 54px 0 78px;
  background: var(--bg);
}

.article-shell {
  max-width: 860px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.article-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-deep);
  font-weight: 800;
}

.article-shell h1 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.article-shell h2 {
  margin-top: 42px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.article-shell img {
  width: 100%;
  max-height: 520px;
  margin-top: 34px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.article-shell p {
  color: var(--ink-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(160px, 0.5fr));
  gap: 42px;
}

.footer-brand {
  color: #fff;
}

.site-footer p {
  max-width: 440px;
}

.site-footer a {
  display: table;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .screen-grid,
  .blog-grid,
  .proof-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-panel,
  .product-focus-grid,
  .partner-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 60px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    width: 38px;
    height: 38px;
    padding: 9px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-shell.is-open {
    grid-template-columns: auto auto;
  }

  .nav-shell.is-open .nav-links,
  .nav-shell.is-open .nav-actions {
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero-grid,
  .split-heading,
  .steps-grid,
  .audience-grid,
  .pricing-grid,
  .screen-grid,
  .blog-grid,
  .proof-gallery,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: center;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-band {
    padding: 62px 0;
  }

  .hero {
    min-height: calc(100svh - 60px);
    padding-top: 14px;
    padding-bottom: 38px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-visual {
    order: -1;
    width: min(100%, 390px);
    max-width: none;
  }

  .hero-visual img {
    height: clamp(200px, 36svh, 300px);
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .hero-lede {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .store-badges {
    display: none;
  }

  .download-store-badges {
    display: flex;
  }

  .proof-list {
    margin-top: 14px;
    gap: 8px;
    font-size: 0.82rem;
  }

  .hero-actions,
  .proof-list,
  .store-badges,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .store-badge {
    width: 100%;
  }

  .parent-love {
    right: 10px;
  }

  .progress-card {
    left: 12px;
    bottom: 12px;
    width: min(220px, calc(100% - 28px));
    padding: 13px;
  }

  .worry-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .screen-card img,
  .screen-featured img {
    height: 420px;
  }

  .screen-card:not(.screen-featured) img {
    height: 300px;
  }

  .partner-strip {
    padding: 16px 0;
  }

  .partner-shell {
    gap: 12px;
  }

  .school-marquee {
    width: calc(100vw - 28px);
  }

  .proof-photo,
  .proof-photo-large {
    min-height: 290px;
  }

  .proof-photo:nth-child(1) img {
    object-position: 40% center;
  }

  .proof-photo:nth-child(2) img {
    object-position: 36% center;
  }

  .proof-photo:nth-child(3) img {
    object-position: 66% center;
  }

  .product-focus-grid {
    gap: 24px;
  }

  .phone-pair {
    min-height: 430px;
  }

  .phone-shot-front {
    right: 0;
    width: min(230px, 58%);
    height: 420px;
  }

  .phone-shot-back {
    left: 0;
    bottom: 42px;
    width: min(300px, 72%);
    height: 225px;
  }
}

@media (max-width: 560px) and (max-height: 720px) {
  .hero-lede {
    display: none;
  }

  .hero-actions .button-quiet {
    display: none;
  }

  .proof-list {
    display: none;
  }

  .hero-visual img {
    height: clamp(190px, 34svh, 250px);
  }
}
