:root {
  color-scheme: light;
  --ink: #172626;
  --muted: #5d6d6b;
  --paper: #fffdf9;
  --mist: #f5f8f5;
  --mint: #eaf5ef;
  --sky: #edf5f6;
  --lilac: #b640c8;
  --lilac-dark: #6c3a73;
  --teal: #267879;
  --coral: #cf735f;
  --honey: #f3c982;
  --line: #dbe5de;
  --shadow: 0 20px 50px rgba(37, 55, 50, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf9 0%, #f7fbf8 48%, #fffdf9 100%);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(219, 229, 222, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(108, 58, 115, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, #7f4388, #b640c8);
  box-shadow: 0 16px 28px rgba(108, 58, 115, 0.24);
}

.button.primary:hover {
  box-shadow: 0 20px 36px rgba(108, 58, 115, 0.3);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.92);
  border-color: rgba(255, 253, 249, 0.72);
  box-shadow: 0 10px 24px rgba(23, 38, 38, 0.12);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 0;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(15, 31, 32, 0.91) 0%, rgba(15, 31, 32, 0.8) 42%, rgba(15, 31, 32, 0.34) 78%, rgba(15, 31, 32, 0.16) 100%),
    image-set(url("assets/hero-nursery.webp") type("image/webp"));
  background-color: #1f3233;
  background-position: center right;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(0deg, var(--mist), rgba(245, 248, 245, 0));
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.hero-copy {
  max-width: 720px;
  color: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: #d9efe8;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 780px;
  font-size: 4.25rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  color: rgba(255, 253, 249, 0.94);
  font-size: 1.36rem;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  color: rgba(255, 253, 249, 0.92);
  font-size: 0.95rem;
  font-weight: 750;
}

.hero-proof span {
  border: 1px solid rgba(255, 253, 249, 0.26);
  border-radius: 8px;
  padding: 9px 11px;
  background: rgba(255, 253, 249, 0.11);
  backdrop-filter: blur(12px);
}

.band {
  padding: 82px 0;
}

.band.mist {
  background: linear-gradient(180deg, var(--mist), #fffdf9);
}

.band.mint {
  background: linear-gradient(180deg, var(--mint), #fffdf9);
}

.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-kicker {
  color: var(--teal);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: 3.1rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.66;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.phone-shot {
  overflow: hidden;
  border-radius: 8px;
  background: #172626;
  box-shadow: var(--shadow);
}

.phone-shot img {
  width: 100%;
  height: auto;
}

.bullets {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.bullets li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--honey));
  font-size: 0.95rem;
  font-weight: 900;
}

.feature-grid,
.faq-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.feature-card,
.faq-card,
.preview-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 14px 34px rgba(37, 55, 50, 0.08);
  padding: 22px;
}

.feature-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #143537;
  background: linear-gradient(135deg, #dff3ed, #f4d9ed);
  font-weight: 900;
}

.feature-card h3,
.faq-card h3,
.preview-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

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

.preview-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--lilac-dark);
  font-weight: 850;
  text-decoration: none;
}

.preview-card a:hover {
  text-decoration: underline;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(23, 38, 38, 0.96), rgba(73, 55, 83, 0.96)),
    image-set(url("assets/hero-nursery.webp") type("image/webp"));
  background-position: center right;
  background-size: cover;
  color: white;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  margin-bottom: 10px;
  font-size: 3rem;
  line-height: 1;
}

.cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.82);
  line-height: 1.6;
}

.site-footer {
  background: #101f20;
  color: rgba(255, 253, 249, 0.78);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: white;
  font-weight: 750;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .split,
  .cta {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .faq-grid,
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 3.35rem;
  }

  .section-heading,
  .cta h2 {
    font-size: 2.55rem;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 64px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(15, 31, 32, 0.88) 0%, rgba(15, 31, 32, 0.68) 48%, rgba(15, 31, 32, 0.18) 100%),
      image-set(url("assets/hero-nursery.webp") type("image/webp"));
    background-position: 76% center;
    background-size: cover;
  }

  .hero-inner {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 0.98;
  }

  .lead {
    font-size: 1.12rem;
  }

  .band {
    padding: 62px 0;
  }

  .section-heading,
  .cta h2 {
    font-size: 2.1rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    max-width: 360px;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
