:root {
  color-scheme: light;
  --cream: #fcf8f4;
  --cream-deep: #f5eee7;
  --paper: #fffdfb;
  --navy: #172b50;
  --navy-soft: #2d4267;
  --body: #667085;
  --muted: #89909d;
  --sage: #8c9a7b;
  --sage-dark: #78876a;
  --sage-deep: #667659;
  --sage-light: #eef2ea;
  --sage-wash: #f5f7f2;
  --peach: #e8baa7;
  --peach-wash: #fbede6;
  --blue-wash: #eaf1f5;
  --border: #e9e2da;
  --border-strong: #d9d4ca;
  --shadow: 0 28px 70px rgba(74, 55, 45, 0.12);
  --soft-shadow: 0 18px 44px rgba(83, 63, 52, 0.08);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--navy);
  background:
    radial-gradient(circle at 4% 10%, rgba(226, 235, 218, 0.5), transparent 28rem),
    radial-gradient(circle at 95% 30%, rgba(246, 224, 214, 0.42), transparent 30rem),
    var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
  content: "";
  pointer-events: none;
}

img {
  max-width: 100%;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

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

h1,
h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.2rem, 6.2vw, 5.7rem);
}

h2 {
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

p {
  color: var(--body);
}

.page-shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.site-art {
  position: fixed;
  z-index: -2;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.36;
  pointer-events: none;
}

.site-art-cloud {
  top: -140px;
  left: -180px;
  width: min(760px, 65vw);
  aspect-ratio: 1;
  background-image: url("assets/home-watercolor-cloud.png");
  filter: saturate(0.72);
}

.site-art-sparkles {
  top: 22vh;
  right: -32px;
  width: 210px;
  aspect-ratio: 1;
  background-image: url("assets/home-watercolor-sparkles.png");
  opacity: 0.22;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 68px;
  margin-top: 16px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(233, 226, 218, 0.88);
  border-radius: 24px;
  background: rgba(255, 253, 251, 0.83);
  box-shadow: 0 14px 42px rgba(74, 55, 45, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(74, 55, 45, 0.12);
}

.brand .brand-logo {
  width: 178px;
  height: auto;
  max-height: 48px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: var(--navy-soft);
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--sage);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.primary-button,
.waitlist-controls button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: var(--sage);
  box-shadow: 0 12px 24px rgba(102, 118, 89, 0.2);
  font-weight: 750;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 19px;
  font-size: 0.88rem;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.header-actions .header-cta {
  white-space: nowrap;
}

.header-cta-secondary {
  border: 1px solid rgba(140, 154, 123, 0.34);
  color: var(--sage-deep);
  background: var(--sage-light);
  box-shadow: none;
}

.primary-button {
  min-height: 56px;
  padding: 0 25px;
}

.header-cta:hover,
.primary-button:hover,
.waitlist-controls button:hover {
  background: var(--sage-dark);
  box-shadow: 0 16px 30px rgba(102, 118, 89, 0.25);
  transform: translateY(-2px);
}

.header-cta-secondary:hover {
  color: var(--sage-deep);
  background: #e3eadf;
  box-shadow: 0 10px 20px rgba(102, 118, 89, 0.13);
}

.header-cta:active,
.primary-button:active,
.waitlist-controls button:active {
  background: var(--sage-dark);
  transform: translateY(0) scale(0.985);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(140, 154, 123, 0.42);
  outline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(46px, 6vw, 88px);
  align-items: center;
  min-height: min(810px, calc(100svh - 84px));
  padding: clamp(78px, 9vw, 124px) 0 clamp(70px, 8vw, 104px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: 0 0 0 6px rgba(140, 154, 123, 0.13);
}

.hero h1 {
  max-width: 700px;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--body);
  font-size: clamp(1.1rem, 1.55vw, 1.27rem);
  line-height: 1.68;
}

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

.text-button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  color: var(--navy);
  font-weight: 750;
}

.text-button span {
  transition: transform 180ms ease;
}

.text-button:hover span {
  transform: translateY(3px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 26px;
  color: var(--body);
  font-size: 0.88rem;
  font-weight: 650;
}

.trust-row span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.trust-row i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--sage-light);
  font-size: 0.7rem;
  font-style: normal;
}

.hero-product {
  position: relative;
  min-height: 630px;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.95), transparent 30%),
    radial-gradient(circle, rgba(222, 231, 213, 0.88), rgba(246, 226, 216, 0.28) 58%, transparent 72%);
  filter: blur(4px);
  transform: translate(-50%, -50%);
}

.product-card {
  border: 1px solid rgba(217, 212, 202, 0.95);
  background: rgba(255, 253, 251, 0.94);
  box-shadow: var(--shadow);
}

.care-card-preview {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: min(410px, 72%);
  min-height: 590px;
  overflow: hidden;
  padding: 24px;
  border-radius: 38px;
  transform: rotate(-2.25deg);
}

.care-card-preview::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 253, 251, 0.54), rgba(245, 247, 242, 0.76));
  content: "";
}

.care-card-art {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  pointer-events: none;
}

.care-card-topline,
.handoff-preview-header,
.timeline-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.care-card-topline {
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.private-pill,
.time-pill {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--sage-deep);
  background: rgba(238, 242, 234, 0.9);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.child-summary {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin: 38px 0 26px;
  text-align: center;
}

.child-photo {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 6px solid rgba(214, 225, 204, 0.9);
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 30%, #f1ccb6 0 18%, transparent 19%),
    radial-gradient(ellipse at 50% 75%, #9d6a4e 0 33%, transparent 34%),
    linear-gradient(145deg, #d9b9a8, #7891a1);
  box-shadow: 0 8px 24px rgba(63, 47, 39, 0.15);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.child-summary h2 {
  margin-bottom: 2px;
  font-size: 2.2rem;
}

.child-summary p {
  margin-bottom: 0;
  color: var(--body);
  font-size: 0.82rem;
  font-weight: 650;
}

.child-summary b {
  margin: 0 3px;
  color: var(--sage);
}

.care-card-sections {
  overflow: hidden;
  border: 1px solid rgba(217, 212, 202, 0.88);
  border-radius: 25px;
  background: rgba(255, 253, 251, 0.86);
  box-shadow: 0 12px 30px rgba(71, 54, 44, 0.07);
  backdrop-filter: blur(10px);
}

.care-card-sections > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 8px 13px;
  border-bottom: 1px solid rgba(233, 226, 218, 0.92);
}

.care-card-sections > div:last-child {
  border-bottom: 0;
}

.care-card-sections strong {
  font-size: 0.85rem;
}

.care-card-sections small {
  color: var(--sage-deep);
  font-size: 0.68rem;
  font-weight: 700;
}

.section-symbol,
.update-icon,
.timeline-mark,
.step-icon,
.link-symbol {
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-weight: 800;
}

.mock-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.section-symbol {
  width: 36px;
  height: 36px;
  color: var(--sage-deep);
  background: var(--sage-light);
  font-size: 0.7rem;
}

.handoff-preview {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 16px;
  width: min(365px, 64%);
  padding: 20px;
  border-radius: 30px;
  transform: rotate(2.4deg);
}

.handoff-preview-header {
  gap: 10px;
  margin-bottom: 16px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border: 3px solid rgba(140, 154, 123, 0.26);
  border-radius: 999px;
  background: var(--sage);
  box-sizing: content-box;
}

.handoff-preview-header div {
  display: grid;
  flex: 1;
}

.handoff-preview-header small,
.timeline-header small {
  color: var(--sage-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.handoff-preview-header strong {
  font-size: 0.84rem;
}

.handoff-note {
  margin-bottom: 9px;
  padding: 13px;
  border-radius: 17px;
  background: var(--sage-wash);
}

.handoff-note small {
  color: var(--sage-deep);
  font-size: 0.67rem;
  font-weight: 750;
}

.handoff-note p {
  margin: 3px 0 0;
  color: var(--navy-soft);
  font-size: 0.74rem;
  line-height: 1.45;
}

.update-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
}

.update-row:last-child {
  border-bottom: 0;
}

.update-icon {
  width: 36px;
  height: 36px;
  font-size: 0.69rem;
}

.caregiver-avatar {
  border: 2px solid rgba(255, 253, 251, 0.92);
  background:
    radial-gradient(circle at 50% 36%, #ecc5ad 0 18%, transparent 19%),
    radial-gradient(circle at 50% 32%, #b6aaa1 0 28%, transparent 29%),
    radial-gradient(ellipse at 50% 86%, #d4937b 0 35%, transparent 36%),
    linear-gradient(145deg, #f8e5dc, #d8b3a2);
  box-shadow: 0 5px 14px rgba(83, 63, 52, 0.14);
}

.sage {
  color: var(--sage-deep);
  background: var(--sage-light);
}

.peach {
  color: #a46f58;
  background: var(--peach-wash);
}

.blue {
  color: #527089;
  background: var(--blue-wash);
}

.update-row div {
  display: grid;
}

.update-row strong {
  font-size: 0.75rem;
}

.update-row small,
.update-row time {
  color: var(--body);
  font-size: 0.64rem;
}

.update-row time {
  white-space: nowrap;
}

.shared-chip {
  position: absolute;
  z-index: 5;
  top: 13%;
  right: -14px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 11px 15px;
  border: 1px solid rgba(233, 226, 218, 0.9);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.92);
  box-shadow: var(--soft-shadow);
  font-size: 0.78rem;
  font-weight: 750;
  backdrop-filter: blur(15px);
  animation: gentle-float 5s ease-in-out infinite;
}

.shared-chip span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--sage-light);
}

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

.clarity-strip {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 19px 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 253, 251, 0.78);
  box-shadow: 0 12px 34px rgba(74, 55, 45, 0.055);
}

.clarity-strip p {
  margin: 0;
  color: var(--body);
}

.clarity-strip p strong {
  color: var(--navy);
}

.clarity-strip > span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--sage-light);
  font-size: 0.76rem;
  font-weight: 750;
}

.clarity-strip > i {
  color: var(--sage);
  font-style: normal;
}

.how-section {
  padding: clamp(100px, 11vw, 150px) 0 clamp(90px, 10vw, 130px);
}

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

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

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.step-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 251, 0.78);
  box-shadow: var(--soft-shadow);
}

.step-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--sage-light);
  content: "";
  opacity: 0.55;
}

.step-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: rgba(140, 154, 123, 0.42);
  font-family: var(--serif);
  font-size: 2rem;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  border: 1px solid rgba(140, 154, 123, 0.2);
  color: var(--sage-deep);
  background: var(--sage-light);
  font-size: 1.15rem;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.22rem;
}

.step-card p {
  margin-bottom: 0;
  line-height: 1.65;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
  padding: clamp(78px, 9vw, 112px) 0;
  border-top: 1px solid rgba(217, 212, 202, 0.72);
}

.feature-copy p {
  font-size: 1.03rem;
  line-height: 1.72;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--navy-soft);
  font-weight: 650;
}

.feature-list span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--sage-light);
  font-size: 0.72rem;
}

.theme-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  column-gap: 16px;
  row-gap: 32px;
  padding: 18px;
  border: 1px solid rgba(217, 212, 202, 0.88);
  border-radius: 38px;
  background: rgba(255, 253, 251, 0.64);
  box-shadow: var(--soft-shadow);
}

.theme-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border: 1px solid rgba(217, 212, 202, 0.82);
  border-radius: 26px;
  box-shadow: 0 12px 28px rgba(74, 55, 45, 0.08);
}

.theme-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.theme-card > div {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 17px;
  color: var(--navy);
  background: rgba(255, 253, 251, 0.82);
  backdrop-filter: blur(12px);
}

.theme-card small {
  color: var(--body);
  font-size: 0.7rem;
}

.theme-botanical {
  background: #f1f4ed;
}

.theme-bloom {
  margin-top: 30px;
  background: #faece9;
}

.theme-adventure {
  margin-top: -30px;
  background: #f5e6d2;
}

.theme-night {
  background: #e7ecf2;
}

.updates-feature {
  grid-template-columns: minmax(480px, 1.14fr) minmax(0, 0.86fr);
}

.timeline-preview {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: 38px;
  background:
    radial-gradient(circle at 100% 0, rgba(232, 186, 167, 0.19), transparent 15rem),
    rgba(255, 253, 251, 0.9);
  box-shadow: var(--shadow);
}

.timeline-header {
  margin-bottom: 26px;
}

.timeline-header h3 {
  margin: 2px 0 0;
  font-size: 1.32rem;
}

.timeline-header > span {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--sage-light);
  font-size: 0.72rem;
  font-weight: 750;
}

.timeline-header i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sage);
}

.timeline-date {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-date::after {
  flex: 1;
  height: 1px;
  background: var(--border);
  content: "";
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-mark {
  width: 44px;
  height: 44px;
  font-size: 0.76rem;
}

.timeline-mark .mock-icon {
  width: 21px;
  height: 21px;
}

.timeline-item div {
  display: grid;
}

.timeline-item p {
  margin: 2px 0 0;
  font-size: 0.82rem;
}

.timeline-item time {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.message-item {
  margin-top: 10px;
  padding: 16px;
  border: 0;
  border-radius: 20px;
  background: var(--peach-wash);
}

.timeline-compose {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  margin-top: 16px;
  padding: 0 8px 0 16px;
  border: 1px solid var(--border);
  border-radius: 17px;
  color: var(--muted);
  background: #fff;
  font-size: 0.82rem;
}

.timeline-compose b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--sage);
}

.caregiver-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 253, 251, 0.72);
}

.link-symbol {
  width: 48px;
  height: 48px;
  color: var(--sage-deep);
  background: var(--sage-light);
  font-size: 1rem;
}

.caregiver-callout p {
  margin: 2px 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.beta-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  overflow: hidden;
  margin: clamp(76px, 10vw, 130px) 0;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(115deg, rgba(238, 242, 234, 0.93), rgba(255, 253, 251, 0.82) 55%),
    var(--paper);
  box-shadow: var(--soft-shadow);
}

.beta-promo::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(232, 186, 167, 0.2);
  content: "";
}

.beta-promo-copy,
.beta-promo-action {
  position: relative;
  z-index: 1;
}

.beta-promo h2 {
  max-width: 680px;
}

.beta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.beta-benefits span,
.beta-facts span {
  padding: 8px 11px;
  border: 1px solid rgba(140, 154, 123, 0.24);
  border-radius: 999px;
  color: var(--sage-deep);
  background: rgba(255, 253, 251, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
}

.beta-promo-action {
  padding: 24px;
  border: 1px solid rgba(217, 212, 202, 0.86);
  border-radius: 27px;
  background: rgba(255, 253, 251, 0.86);
  box-shadow: 0 14px 34px rgba(74, 55, 45, 0.07);
}

.reward-chip {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #9c654f;
  background: var(--peach-wash);
  font-size: 0.76rem;
  font-weight: 750;
}

.beta-promo-action p {
  line-height: 1.65;
}

.beta-promo-action .primary-button {
  width: 100%;
}

.beta-promo-action small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
  margin-bottom: 60px;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 110%, rgba(226, 235, 218, 0.8), transparent 22rem),
    rgba(255, 253, 251, 0.82);
  box-shadow: var(--soft-shadow);
}

.closing-cta h2 {
  max-width: 680px;
}

.closing-cta > div > p:last-child {
  margin-bottom: 0;
}

.waitlist-form {
  width: 100%;
}

.waitlist-label {
  margin-bottom: 8px;
  color: var(--navy-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.waitlist-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(74, 55, 45, 0.06);
}

.waitlist-controls input {
  min-width: 0;
  min-height: 52px;
  padding: 0 13px;
  border: 0;
  outline: none;
  color: var(--navy);
  background: transparent;
}

.waitlist-controls input::placeholder {
  color: var(--muted);
}

.waitlist-controls button {
  min-height: 52px;
  padding: 0 18px;
  cursor: pointer;
}

.waitlist-controls button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-message {
  min-height: 24px;
  margin: 8px 4px 0;
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 650;
}

.form-message.is-error {
  color: #a85050;
}

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px 0 38px;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
}

.site-footer p:last-child {
  text-align: right;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  color: var(--body);
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-brand {
  font-size: 1rem;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  position: static;
}

.legal-main {
  width: min(780px, 100%);
  margin: 72px auto 96px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 251, 0.92);
  box-shadow: var(--soft-shadow);
}

.legal-main h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
}

.legal-main h2 {
  margin-top: 38px;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
}

.legal-main li,
.legal-main p {
  color: var(--body);
}

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

.legal-effective {
  font-size: 0.88rem;
}

.disclosure-box {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid #d9e2d2;
  border-radius: var(--radius-sm);
  background: var(--sage-wash);
}

.legal-link {
  color: var(--sage-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.proof-main {
  width: min(880px, 100%);
}

.proof-steps {
  padding-left: 24px;
  color: var(--body);
}

.proof-steps li {
  padding-left: 5px;
}

.proof-frame {
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background: #f4f1ed;
  box-shadow: var(--soft-shadow);
}

.proof-browser-bar {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  background: #fffdfb;
}

.proof-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}

.proof-browser-bar small {
  margin-left: 8px;
  color: var(--muted);
  font-weight: 650;
}

.proof-card {
  margin: clamp(18px, 4vw, 38px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(74, 55, 45, 0.08);
}

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

.proof-heading h2 {
  margin: 0 0 4px;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.proof-heading p {
  margin: 0;
  font-size: 0.92rem;
}

.proof-phone {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--sage-deep);
  background: var(--sage-light);
  font-size: 1.45rem;
  font-weight: 800;
}

.proof-form {
  display: grid;
  gap: 18px;
}

.proof-form label:not(.proof-consent) {
  display: grid;
  gap: 7px;
  color: var(--navy-soft);
  font-size: 0.88rem;
  font-weight: 750;
}

.proof-form input[type="tel"] {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  color: var(--navy);
  background: #fffdfb;
  opacity: 1;
}

.proof-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  color: var(--navy-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.proof-consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--sage);
  opacity: 1;
}

.proof-form button {
  min-height: 50px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: var(--sage);
  font-weight: 800;
  opacity: 0.52;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.74, 0.2, 1);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Beta page */
.beta-page .page-shell {
  width: min(1040px, calc(100% - 44px));
}

.beta-hero {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(90px, 11vw, 130px) 0 clamp(64px, 8vw, 92px);
  text-align: center;
}

.beta-hero .eyebrow {
  justify-content: center;
}

.beta-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 6vw, 5rem);
}

.beta-hero-lede {
  max-width: 700px;
  margin: 0 auto 13px;
  color: var(--navy-soft);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  font-weight: 650;
}

.beta-hero-intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.72;
}

.beta-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 27px 0;
}

.beta-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.beta-info-card,
.beta-reward,
.beta-form-card,
.beta-alternative {
  border: 1px solid var(--border);
  background: rgba(255, 253, 251, 0.84);
  box-shadow: var(--soft-shadow);
}

.beta-info-card {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
}

.beta-info-card h2,
.beta-reward h2,
.beta-form-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--navy-soft);
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--sage-light);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 800;
}

.card-note {
  margin-bottom: 0;
  padding: 15px;
  border-radius: 17px;
  background: var(--sage-wash);
  font-size: 0.86rem;
  line-height: 1.6;
}

.beta-reward {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin: 22px 0 clamp(80px, 10vw, 120px);
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(251, 237, 230, 0.9), transparent 24rem),
    rgba(255, 253, 251, 0.88);
}

.reward-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 22px;
  color: #a46f58;
  background: var(--peach-wash);
  font-size: 1.5rem;
}

.beta-reward h2 {
  margin-bottom: 9px;
}

.beta-reward p {
  margin-bottom: 8px;
}

.beta-reward small {
  color: var(--muted);
}

.beta-application {
  padding-bottom: 30px;
}

.beta-form-heading {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

.beta-form-heading .eyebrow {
  justify-content: center;
}

.google-form-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.google-form-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(238, 242, 234, 0.72);
}

.google-form-identity {
  display: flex;
  gap: 11px;
  align-items: center;
}

.google-form-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
}

.google-form-mark img {
  width: 100%;
  height: 100%;
}

.google-form-identity > span:last-child {
  display: grid;
}

.google-form-identity small {
  color: var(--body);
  font-size: 0.7rem;
}

.google-form-bar > a {
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 750;
}

.google-form-canvas {
  min-height: 730px;
  background: #fff;
}

.google-form-embed {
  display: block;
  width: 100%;
  height: 730px;
  border: 0;
}

.beta-alternative {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 24px 0 60px;
  padding: 22px;
  border-radius: var(--radius-md);
}

.beta-alternative p {
  margin: 0;
}

.beta-alternative a {
  color: var(--sage-deep);
  font-weight: 750;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 34px;
  }

  .hero-product {
    min-height: 580px;
  }

  .care-card-preview {
    width: 74%;
    min-height: 550px;
  }

  .feature-section,
  .updates-feature {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 46px;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 86px;
  }

  .hero-copy {
    max-width: 700px;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-product {
    width: min(620px, 100%);
    min-height: 610px;
    margin: 0 auto;
  }

  .clarity-strip {
    grid-template-columns: 1fr auto auto auto auto auto;
  }

  .clarity-strip p {
    grid-column: 1 / -1;
    margin-bottom: 5px;
    text-align: center;
  }

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

  .step-card {
    min-height: 220px;
  }

  .step-icon {
    margin-bottom: 32px;
  }

  .feature-section,
  .updates-feature {
    grid-template-columns: 1fr;
  }

  .care-card-feature .feature-copy {
    order: 1;
  }

  .care-card-feature .theme-showcase {
    order: 2;
  }

  .updates-feature .timeline-preview {
    order: 2;
  }

  .updates-feature .feature-copy {
    order: 1;
  }

  .beta-promo,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .beta-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-shell,
  .beta-page .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 10px;
    gap: 12px;
    min-height: 60px;
    margin-top: 10px;
    padding: 8px 9px 8px 11px;
    border-radius: 20px;
  }

  .brand {
    font-size: 1.08rem;
  }

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

  .brand .brand-logo {
    width: 150px;
    height: auto;
    max-height: 42px;
    border-radius: 0;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 0.78rem;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .header-cta {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.7rem;
  }

  .hero {
    gap: 44px;
    padding: 70px 0 72px;
  }

  h1 {
    font-size: clamp(2.75rem, 13.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .hero-lede {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
  }

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

  .text-button {
    justify-content: center;
  }

  .trust-row {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-product {
    min-height: 530px;
  }

  .care-card-preview {
    width: 82%;
    min-height: 500px;
    padding: 18px;
    border-radius: 31px;
    transform: rotate(-1.5deg);
  }

  .child-summary {
    margin: 28px 0 19px;
  }

  .child-photo {
    width: 68px;
    height: 68px;
  }

  .child-summary h2 {
    font-size: 1.85rem;
  }

  .care-card-sections > div {
    min-height: 52px;
    padding: 7px 10px;
  }

  .care-card-sections small {
    display: none;
  }

  .handoff-preview {
    right: -2px;
    bottom: 0;
    width: 70%;
    padding: 15px;
    border-radius: 25px;
    transform: rotate(1.5deg);
  }

  .handoff-note {
    display: none;
  }

  .handoff-preview-header {
    margin-bottom: 7px;
  }

  .time-pill {
    display: none;
  }

  .shared-chip {
    top: 12%;
    right: -2px;
    padding: 9px 11px;
    font-size: 0.7rem;
  }

  .clarity-strip {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    padding: 17px 14px;
  }

  .clarity-strip > span {
    padding: 6px 7px;
    text-align: center;
    font-size: 0.66rem;
  }

  .how-section {
    padding: 84px 0 72px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .step-card {
    padding: 22px;
  }

  .feature-section {
    gap: 34px;
    padding: 70px 0;
  }

  .theme-showcase {
    column-gap: 10px;
    row-gap: 24px;
    padding: 10px;
    border-radius: 28px;
  }

  .theme-card {
    min-height: 180px;
    border-radius: 20px;
  }

  .theme-bloom {
    margin-top: 20px;
  }

  .theme-adventure {
    margin-top: -20px;
  }

  .theme-card > div {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 9px 10px;
    border-radius: 13px;
    font-size: 0.78rem;
  }

  .theme-card small {
    display: none;
  }

  .timeline-preview {
    padding: 19px;
    border-radius: 28px;
  }

  .timeline-item {
    gap: 9px;
  }

  .timeline-item p {
    font-size: 0.74rem;
  }

  .timeline-item time {
    font-size: 0.65rem;
  }

  .message-item {
    padding: 13px;
  }

  .beta-promo,
  .closing-cta {
    margin: 70px 0;
    padding: 25px;
    border-radius: 30px;
  }

  .waitlist-controls {
    grid-template-columns: 1fr;
  }

  .waitlist-controls button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p:last-child {
    text-align: center;
  }

  .beta-hero {
    padding-top: 80px;
  }

  .beta-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .beta-info-card {
    padding: 24px;
  }

  .beta-reward {
    grid-template-columns: 1fr;
  }

  .google-form-bar {
    align-items: flex-start;
  }

  .google-form-identity small {
    display: none;
  }

  .beta-alternative {
    display: grid;
    text-align: center;
  }
}

@media (max-width: 420px) {
  body:not(.beta-page) .site-header .brand span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
