:root {
  --cream: #fff8ef;
  --cream-2: #fff3e7;
  --soft-green: #d8e4de;
  --mint: #eaf4ef;
  --green: #4f8f6f;
  --green-dark: #26493b;
  --green-deep: #12382a;
  --orange: #e76a3d;
  --orange-dark: #d9582a;
  --yellow: #f5c86c;
  --pink: #f2a7a9;
  --red-soft: #fde8e8;
  --red: #cf4343;
  --text: #24342e;
  --muted: #68746f;
  --white: #ffffff;
  --border: rgba(38, 73, 59, 0.10);
  --shadow: 0 22px 60px rgba(38, 73, 59, 0.12);
  --shadow-soft: 0 14px 40px rgba(38, 73, 59, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fffdf8;
}

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

img {
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: 0.25s ease;
}

.site-header.scrolled {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(38, 73, 59, 0.08);
}

.navbar {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.logo strong {
  color: var(--orange);
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #70b889, #f28b61);
  position: relative;
}

.logo-mark span {
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 60% 40% 55% 45%;
  transform: rotate(-35deg);
}

.logo-text {
  font-size: 18px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: #1d2f28;
  opacity: 0.86;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta,
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta {
  padding: 13px 22px;
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(231, 106, 61, 0.23);
}

.btn {
  padding: 17px 24px;
  font-size: 15px;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), #ff8255);
  box-shadow: 0 16px 30px rgba(231, 106, 61, 0.23);
}

.btn-secondary {
  color: var(--green-dark);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(231, 106, 61, 0.25);
}

.play-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(38,73,59,0.16);
  font-size: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-self: end;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-dark);
  border-radius: 3px;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(216, 228, 222, .96) 0%, transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 231, 216, .94) 0%, transparent 35%),
    var(--cream);
}

.hero {
  min-height: 720px;
  padding: 140px 0 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--green);
  font-weight: 900;
}

.orange-text {
  color: var(--orange);
}

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

h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  margin-bottom: 28px;
  color: var(--green-dark);
}

h1 span {
  color: var(--orange);
}

.hero-content p {
  max-width: 560px;
  color: #4e5c56;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.blob {
  position: absolute;
  border-radius: 45% 55% 60% 40%;
  filter: blur(0);
  opacity: .76;
}

.blob-one {
  width: 560px;
  height: 560px;
  right: -140px;
  top: -90px;
  background: #dfe9e4;
}

.blob-two {
  width: 260px;
  height: 260px;
  left: 30px;
  bottom: 20px;
  background: #fff0e4;
}

.phone-mockup {
  position: relative;
  z-index: 3;
  width: 268px;
  height: 540px;
  padding: 12px;
  border-radius: 42px;
  background: #111;
  box-shadow: 0 34px 80px rgba(31, 53, 44, .32);
}

.phone-top {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 86px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #111;
  z-index: 5;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background: #fbfaf6;
  padding: 18px 16px;
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  font-size: 12px;
  margin-bottom: 18px;
}

.product-card-mini {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(38,73,59,.08);
  margin-bottom: 14px;
}

.product-card-mini span,
.product-card-mini small,
.mini-block p {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin: 3px 0 0;
}

.product-image {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eaf4ef;
  font-size: 28px;
}

.status-card {
  border-radius: 22px;
  text-align: center;
  padding: 22px 12px;
  margin-bottom: 14px;
}

.status-card strong {
  display: block;
  font-size: 25px;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.status-card span {
  font-size: 11px;
}

.permitted {
  background: #e5f6eb;
  color: #2f8f56;
}

.blocked {
  background: var(--red-soft);
  color: var(--red);
}

.mini-block {
  padding: 14px 0;
  border-bottom: 1px solid rgba(38,73,59,.08);
  font-size: 12px;
}

.bottom-nav {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  height: 48px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 -8px 24px rgba(38,73,59,.08);
}

.bottom-nav .active {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--green);
}

.floating-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
  animation: float 4.5s ease-in-out infinite;
}

.floating-card strong,
.floating-card span,
.floating-card small {
  display: block;
}

.floating-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.card-profile {
  left: 12px;
  top: 86px;
}

.card-status {
  right: -20px;
  top: 160px;
  animation-delay: .7s;
}

.card-community {
  right: 8px;
  bottom: 112px;
  animation-delay: 1.2s;
}

.avatar,
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff2e8;
}

.icon.green {
  background: #e2f4e8;
  color: #2f8f56;
}

.icon.orange {
  background: #fff0e4;
  color: var(--orange);
}

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

.problem,
.features,
.parents,
.faq {
  padding: 86px 0;
}

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.section-copy h2,
.section-title h2,
.preview-copy h2,
.promise-card h2,
.signup-copy h2 {
  color: #142b22;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-copy p,
.promise-card p,
.signup-copy p {
  color: #53615b;
  line-height: 1.8;
  font-size: 17px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.question-card {
  min-height: 128px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.question-card span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--cream);
  font-size: 26px;
}

.section-mint {
  background:
    radial-gradient(circle at top left, rgba(216, 228, 222, .85), transparent 35%),
    var(--mint);
}

.how {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.step-card {
  position: relative;
  min-height: 170px;
  padding: 28px;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.step-card h3,
.feature-card h3 {
  margin-bottom: 9px;
}

.step-card p,
.feature-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 20px;
  background: #e8f3ec;
  color: var(--green);
  font-size: 24px;
}

.step-number {
  position: absolute;
  left: 68px;
  top: 68px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(38,73,59,.15);
  font-size: 12px;
  font-weight: 900;
  color: var(--green);
}

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

.feature-card {
  padding: 28px;
  min-height: 250px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 14px 38px rgba(38,73,59,.07);
  transition: .25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
  font-size: 26px;
}

.green-bg { background: #e4f3e9; }
.orange-bg { background: #ffe9dd; }
.yellow-bg { background: #fff3d2; }
.pink-bg { background: #ffe7e8; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chips span,
.verified-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef7f1;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.chips span:nth-child(2) { background: #fff2d7; color: #bb7a14; }
.chips span:nth-child(3) { background: #ffe8ea; color: #c05258; }
.chips span:nth-child(4) { background: #f5e8ff; color: #8d5aac; }

.verified-pill {
  margin-top: 20px;
}

.mini-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  color: var(--orange);
}

.avatars {
  display: flex;
  margin-top: 18px;
}

.avatars span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-left: -5px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--cream);
  font-size: 13px;
}

.stars {
  color: #f5b942;
  margin-top: 18px;
  letter-spacing: 2px;
}

.app-preview {
  padding: 88px 0;
  overflow: hidden;
}

.preview-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 50px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 22px;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.check-list strong {
  display: block;
}

.check-list span,
.check-list.compact li {
  color: var(--muted);
}

.phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 460px;
}

.small-phone {
  width: 210px;
  height: 410px;
  padding: 10px;
  border-radius: 34px;
  background: #111;
  box-shadow: 0 24px 60px rgba(38,73,59,.24);
}

.small-screen {
  height: 100%;
  padding: 22px 16px;
  border-radius: 26px;
  background: #fffdf8;
  overflow: hidden;
  text-align: center;
}

.small-screen h4 {
  margin: 0 0 22px;
}

.big-avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #eaf4ef;
  font-size: 38px;
}

.small-screen small {
  display: block;
  color: var(--muted);
}

.small-screen button {
  width: 100%;
  margin-top: 22px;
  padding: 12px;
  border: 0;
  border-radius: 999px;
  color: var(--green-dark);
  background: #eaf4ef;
  font-weight: 800;
}

.center { justify-content: center; }

.rotate-left { transform: rotate(-7deg) translateY(20px); }
.rotate-right { transform: rotate(7deg) translateY(22px); }
.center-phone { width: 235px; height: 455px; }

.product-row,
.list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(38,73,59,.07);
  text-align: left;
}

.ingredients {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  text-align: left;
}

.parents {
  background: #fff9f1;
}

.parents-grid {
  display: grid;
  grid-template-columns: .95fr .55fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.family-card {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  margin: auto;
  font-size: 92px;
  border-radius: 44px;
  background: linear-gradient(135deg, #fff, #fff0e4);
  box-shadow: var(--shadow-soft);
}

.promise-card {
  position: relative;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #e7f3eb, #f7fbf8);
  border: 1px solid rgba(79, 143, 111, .14);
}

.promise-card h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.shield {
  position: absolute;
  right: 28px;
  bottom: 28px;
  opacity: .7;
  font-size: 56px;
}

.signup {
  padding: 88px 0;
}

.signup-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 60px;
  align-items: center;
}

.signup-form {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(231,106,61,.10);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label,
legend {
  font-weight: 800;
  color: var(--green-dark);
  font-size: 14px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(231,106,61,.22);
  border-radius: 14px;
  outline: none;
  font: inherit;
  background: #fffdfa;
}

input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(231,106,61,.12);
}

fieldset {
  border: 0;
  padding: 0;
  margin: 22px 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 18px;
  margin-top: 14px;
}

.checkbox-grid label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  color: #53615b;
}

input[type="checkbox"] {
  accent-color: var(--orange);
}

.full-width {
  width: 100%;
  border-radius: 16px;
}

.form-note,
.form-success {
  text-align: center;
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 13px;
}

.form-success {
  color: var(--green);
  font-weight: 800;
}

.faq {
  padding-top: 68px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  box-shadow: 0 8px 24px rgba(38,73,59,.05);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--green);
}

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

details p {
  color: var(--muted);
  line-height: 1.7;
  padding: 0 22px 20px;
}

.footer {
  color: white;
  background: linear-gradient(135deg, #103827, #1f513c);
  padding: 48px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr .8fr .6fr;
  gap: 34px;
}

.footer .logo {
  color: white;
}

.footer p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
}

.footer a:not(.logo) {
  display: block;
  color: rgba(255,255,255,.72);
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid !important;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}

.copyright {
  width: min(var(--container), calc(100% - 40px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
  font-size: 13px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 980px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

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

  .nav-links.open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow-soft);
  }

  .hero-grid,
  .two-col,
  .preview-grid,
  .signup-grid,
  .parents-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-visual {
    min-height: 590px;
  }

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

  .parents-grid {
    text-align: left;
  }

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

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

  .hero {
    padding-bottom: 44px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-visual {
    transform: scale(.88);
    margin: -24px 0;
  }

  .floating-card {
    min-width: 170px;
    padding: 13px;
  }

  .card-profile { left: -4px; }
  .card-status { right: -22px; }
  .card-community { right: -10px; }

  .question-grid,
  .steps,
  .feature-grid,
  .faq-grid,
  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .phone-row {
    flex-direction: column;
    min-height: auto;
  }

  .small-phone,
  .center-phone {
    width: 235px;
    height: 455px;
    transform: none;
  }

  .family-card {
    width: 170px;
    height: 170px;
    font-size: 70px;
  }

  .signup-form {
    padding: 22px;
  }

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