:root {
  --background: #15110f;
  --surface: #211a17;
  --surface-elevated: #2b221e;
  --text: #fff7f0;
  --muted: #cdbdb2;
  --border: #44362f;
  --accent: #c9785b;
  --accent-soft: #f0b39c;
  --sage: #9db17c;
  --warning: #d7b36a;
  --cream: #fbf4ed;
  --cream-card: #fff9f3;
  --ink: #2a211d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(201, 120, 91, 0.22), transparent 32rem),
    radial-gradient(circle at 85% 8%, rgba(157, 177, 124, 0.15), transparent 26rem),
    var(--background);
  color: var(--text);
}

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

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

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

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

.hero,
.section,
.split-section,
.social-proof,
.cta,
.legal {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: 56px;
  align-items: center;
  padding: 56px 0 86px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  font-weight: 900;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.05;
}

.lede,
.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 18px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 28px;
  font-size: 17px;
  font-weight: 900;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.button.ghost {
  background: rgba(255, 249, 243, 0.06);
  color: var(--text);
}

.microcopy {
  color: var(--muted);
  font-size: 15px;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(390px, 100%);
  min-height: 720px;
  border: 12px solid #0b0807;
  border-radius: 54px;
  background: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
  color: var(--ink);
  position: relative;
}

.phone-top {
  width: 128px;
  height: 32px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #0b0807;
}

.phone-screen {
  padding: 40px 26px 34px;
}

.avatar-row {
  display: flex;
  margin-bottom: 24px;
}

.avatar-row span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-right: -10px;
  border: 4px solid var(--cream);
  border-radius: 50%;
  background: var(--accent);
  font-weight: 900;
  font-size: 20px;
}

.avatar-row span + span {
  background: var(--sage);
}

.phone h2 {
  font-size: 44px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.app-card,
.tile-grid div,
.quote-card,
.feature-grid article,
.warm,
.cta {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 249, 243, 0.06);
}

.phone .app-card,
.phone .tile-grid div {
  border-color: #e6d7cc;
  background: var(--cream-card);
}

.baby-card {
  padding: 24px;
  margin-top: 28px;
}

.card-label {
  margin-bottom: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 900;
}

.activity-preview {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
}

.ring {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 45%, var(--sage) 45% 72%, var(--accent-soft) 72% 100%);
}

.ring-inner {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream-card);
  text-align: center;
  font-size: 25px;
  font-weight: 900;
}

.ring-inner small {
  display: block;
  color: #75655d;
  font-size: 13px;
  font-weight: 700;
}

.activity-preview strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.05;
}

.activity-preview p,
.connect-card h3 {
  color: #75655d;
}

.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}

.tile-grid div {
  padding: 18px;
  color: #75655d;
  font-size: 17px;
}

.tile-grid strong {
  color: var(--ink);
}

.connect-card {
  padding: 20px;
}

.scribble {
  width: 92px;
  height: 54px;
  margin-left: auto;
  border: 5px solid var(--accent);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 42% 58% 46% 54%;
  transform: rotate(-8deg);
}

.section,
.split-section,
.social-proof,
.cta,
.legal {
  padding: 82px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

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

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

.feature-grid article {
  padding: 28px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
}

.feature-grid p,
.split-section p,
.cta p,
.privacy-list p,
.legal p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.quote-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.quote-card img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid var(--accent);
}

.stars {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 22px;
}

blockquote {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
}

.social-proof {
  padding-top: 42px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.proof-photo-card,
.proof-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 249, 243, 0.06);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}

.proof-photo-card.large {
  grid-row: span 2;
  display: grid;
  grid-template-rows: 320px 1fr;
  overflow: hidden;
}

.proof-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-photo-card div {
  padding: 26px;
}

.proof-photo-card blockquote {
  font-size: 30px;
}

.proof-name {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.proof-card {
  min-height: 212px;
  padding: 24px;
}

.proof-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 750;
}

.proof-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.proof-person img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 2px solid var(--border);
  border-radius: 50%;
  object-fit: cover;
}

.proof-person strong {
  color: var(--text);
  font-size: 20px;
}

.warm-quote {
  background:
    linear-gradient(145deg, rgba(201, 120, 91, 0.24), rgba(157, 177, 124, 0.1)),
    rgba(255, 249, 243, 0.06);
}

.warm-quote .stars {
  margin-bottom: 18px;
}

.warm,
.cta {
  padding: 44px;
}

.privacy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0 28px;
}

.privacy-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}

.cta {
  margin-bottom: 72px;
  text-align: center;
}

.cta p,
.cta .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 28px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.legal {
  max-width: 850px;
}

.legal h1 {
  font-size: clamp(46px, 7vw, 86px);
}

.legal section {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.legal h2 {
  font-size: 28px;
  letter-spacing: -0.02em;
}

.legal a {
  color: var(--accent-soft);
  font-weight: 800;
}

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

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .phone {
    min-height: auto;
  }

  .feature-grid,
  .privacy-list,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-photo-card.large {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .quote-card {
    grid-template-columns: 1fr;
  }

  .quote-card img {
    width: 120px;
    height: 120px;
  }

  .activity-preview {
    grid-template-columns: 1fr;
  }

  .phone-screen {
    padding: 32px 20px 26px;
  }

  .warm,
  .cta {
    padding: 30px 22px;
  }
}
