@font-face {
  font-family: "InterVariable";
  src: url("./inter-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "InterVariable";
  src: url("./inter-latin-wght-italic.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #17332d;
  --slate: #415a77;
  --muted: #65756f;
  --teal: #3d7a6f;
  --teal-dark: #1e4b43;
  --teal-hover: #2a5f55;
  --linen: #f8f3ec;
  --cream: #fbf9f5;
  --paper: #ffffff;
  --line: #e4dac9;
  --line-strong: #c9c1b4;
  --terracotta: #cd6a4f;
  --terracotta-ink: #a34a33;
  --terracotta-soft: #f7e5db;
  --yellow: #ffcf70;
  --lavender: #cab8ff;
  --sage: #c7d8c6;
  --blue: #9eb9c7;
  --danger: #9c3f38;
  --danger-bg: #fff3f1;
  --focus: rgba(30, 75, 67, 0.24);
  --shadow: 0 18px 48px rgba(23, 51, 45, 0.1);
  --shadow-small: 0 8px 24px rgba(23, 51, 45, 0.08);
  font-family: "InterVariable", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--linen);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--linen);
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
}

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

a {
  color: var(--teal-dark);
  text-underline-offset: 0.18em;
}

button {
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--teal-dark);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.funnel-shell {
  width: 100%;
  min-height: 100dvh;
  overflow: clip;
  background: var(--cream);
}

.public-header {
  width: min(100%, 1120px);
  min-height: 82px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 720;
  letter-spacing: -0.045em;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(30, 75, 67, 0.2);
}

.sign-in-link {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 580;
  white-space: nowrap;
}

.screen {
  display: none;
  border: 0;
  min-inline-size: 0;
  margin: 0;
  padding: 0;
}

.screen.is-active {
  display: block;
  animation: screen-in 320ms ease both;
}

@keyframes screen-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-screen {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 42px 24px 84px;
}

.landing-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta-ink);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 720;
  letter-spacing: -0.048em;
  line-height: 1.05;
}

h1[tabindex="-1"]:focus,
h2[tabindex="-1"]:focus {
  outline: none;
}

.landing-copy h1 {
  max-width: 17ch;
  font-size: clamp(3rem, 8vw, 5.7rem);
}

.lede {
  margin: 26px 0 0;
  max-width: 44rem;
  color: #354744;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.55;
}

.primary-button,
.secondary-button {
  min-height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-weight: 680;
  line-height: 1.2;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.primary-button {
  width: 100%;
  margin-top: 30px;
  padding: 15px 20px;
  color: white;
  background: var(--teal-dark);
  box-shadow: 0 9px 22px rgba(30, 75, 67, 0.18);
}

.primary-button:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
}

.primary-button:active {
  transform: translateY(0);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.secondary-button {
  padding: 12px 16px;
  color: var(--teal-dark);
  background: var(--paper);
  border: 1px solid var(--line);
}

.secondary-button:hover {
  border-color: var(--teal);
  background: #f6faf8;
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.back-button:focus-visible,
.choice-card:has(input:focus-visible),
.plan-card:has(input:focus-visible),
.consent-box:has(input:focus-visible),
input:focus-visible,
select:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.button-note,
.price-note {
  margin: 13px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.93rem;
  text-align: center;
}

.price-note {
  margin-top: 14px;
  color: var(--ink);
}

.price-note i {
  color: var(--teal-dark);
  font-size: 1.22rem;
}

.landing-legal {
  margin: 13px 0 0;
  display: flex;
  justify-content: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.75rem;
}

.coordination-proof,
.text-proof {
  margin-top: 50px;
}

.caregiver-feed {
  position: relative;
  display: grid;
  gap: 12px;
}

.caregiver-feed::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 21px;
  bottom: -18px;
  left: 21px;
  width: calc(50% - 21px);
  border-left: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-bottom-left-radius: 12px;
  opacity: 0.7;
}

.caregiver-message {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
}

.caregiver-message > div {
  min-width: 0;
}

.caregiver-message strong,
.message-copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 0.9rem;
}

.caregiver-message p,
.message-copy p {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: #2c403c;
  box-shadow: var(--shadow-small);
}

.caregiver-message small {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.69rem;
}

.person-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #eff6f2;
  border: 1px solid #cae0d7;
  font-size: 1.35rem;
}

.caregiver-nana .person-icon {
  color: #6a588e;
  background: #f5f1fb;
  border-color: #ddd2f3;
}

.caregiver-other .person-icon {
  color: #9a6840;
  background: #fff8e8;
  border-color: #f0d7a5;
}

.caregiver-nana p {
  background: #fbf8fe;
  border-color: #e4dbf2;
}

.caregiver-other p {
  background: #fffaf1;
  border-color: #efdfbd;
}

.landing-report-card {
  position: relative;
  margin-top: 34px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.landing-report-card::before {
  content: "";
  position: absolute;
  top: -35px;
  left: 50%;
  width: 1px;
  height: 34px;
  background: linear-gradient(to bottom, transparent, var(--line-strong));
}

.landing-report-card::after {
  content: "";
  position: absolute;
  top: -5px;
  left: calc(50% - 4px);
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  transform: rotate(45deg);
}

.landing-report-header {
  margin: -20px -20px 0;
  padding: 18px 20px;
  background: var(--terracotta-soft);
  border-radius: 21px 21px 0 0;
  border-bottom: 1px solid #ebcfc0;
}

.landing-report-header .eyebrow {
  margin-bottom: 7px;
  font-size: 0.65rem;
}

.landing-report-header h2 {
  font-size: 1.55rem;
  letter-spacing: -0.035em;
}

.landing-report-card .weekly-report-story {
  margin-top: 20px;
}

.landing-report-card .report-story-step {
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
}

.landing-report-card .report-story-step:not(:last-child) {
  padding-bottom: 14px;
}

.landing-report-card .report-story-step:not(:last-child)::after {
  top: 32px;
  left: 15px;
}

.landing-report-card .report-step-marker {
  width: 32px;
  height: 32px;
  font-size: 0.82rem;
}

.landing-report-card .report-story-body {
  padding: 4px 0 14px;
}

.landing-report-card .report-moment-summary {
  margin-top: 10px;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
}

.landing-report-card .report-moment-summary img {
  width: 84px;
  height: 68px;
  aspect-ratio: auto;
  border-radius: 10px;
}

.landing-report-card .report-stat strong {
  font-size: 0.95rem;
}

.landing-report-card .report-stat span {
  font-size: 0.75rem;
}

.landing-report-card .report-story-body blockquote {
  margin-top: 10px;
  font-size: 0.9rem;
}

.landing-report-card .report-inference,
.landing-report-card .report-next {
  margin-top: 7px;
  font-size: 0.85rem;
}

.landing-domain-chips {
  margin-top: 18px;
  padding-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.62rem;
  line-height: 1.25;
}

.landing-domain-chips span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  white-space: nowrap;
}

.landing-domain-chips i {
  color: var(--teal);
  font-size: 0.76rem;
}

.privacy-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--muted);
  background: #faf8f3;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 0.84rem;
}

.privacy-note i {
  color: var(--teal-dark);
  font-size: 1.35rem;
}

.privacy-note strong {
  display: block;
  color: var(--ink);
}

.landing-proof-cta {
  display: none;
  margin-top: 24px;
}

.text-proof {
  padding: 22px 0;
}

.message-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 13px;
  align-items: end;
  margin-top: 18px;
}

.message-row-you {
  grid-template-columns: minmax(0, 1fr) 52px;
  padding-left: 50px;
}

.message-row-you .message-copy p {
  background: #f0f5f7;
  border-color: #cedde4;
}

.message-row-dakota img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.message-row-dakota .message-copy p {
  background: #f2f8f4;
  border-color: #cfe1d6;
}

.proof-caption {
  margin: 24px 0 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-caption i {
  color: #6a588e;
  font-size: 1.35rem;
}

.onboarding-form {
  margin: 0;
}

.step-screen,
.reveal-screen,
.paywall-screen,
.build-screen {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.demo-screen,
.report-screen,
.curriculum-evidence-screen {
  width: min(100%, 780px);
}

.demo-controls {
  margin: -8px 0 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.text-button {
  min-height: 44px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  background: transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 650;
}

.text-button:hover {
  background: #eff6f2;
}

.text-button:disabled {
  cursor: default;
  opacity: 0.48;
  background: transparent;
}

.text-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.ios-thread {
  overflow: hidden;
  color: #111111;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(20, 31, 29, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.ios-thread-header {
  min-height: 84px;
  padding: 8px 18px 7px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #d8d8dc;
}

.ios-back {
  color: #1687f8;
  font-size: 2rem;
}

.ios-contact {
  grid-column: 2;
  display: grid;
  justify-items: center;
  gap: 2px;
}

.ios-contact img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.ios-contact strong {
  display: flex;
  align-items: center;
  color: #111111;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1;
}

.ios-contact strong i {
  color: #a6a6aa;
  font-size: 0.75rem;
}

.ios-thread-body {
  height: min(560px, 66dvh);
  min-height: 500px;
  padding: 10px 12px 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  background: #ffffff;
}

.ios-thread-body::-webkit-scrollbar {
  display: none;
}

.ios-service {
  margin: 0 0 9px;
  color: #8e8e93;
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: center;
}

.ios-bubble {
  position: relative;
  width: fit-content;
  max-width: 79%;
  margin: 5px 0;
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 0.91rem;
  letter-spacing: -0.012em;
  line-height: 1.25;
}

.ios-bubble span {
  display: inline;
}

.ios-incoming {
  margin-right: auto;
  color: #111111;
  background: #e9e9eb;
  border-bottom-left-radius: 5px;
}

.ios-outgoing {
  margin-left: auto;
  color: #ffffff;
  background: #34c759;
  border-bottom-right-radius: 5px;
}

.ios-time-divider {
  margin: 14px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8e8e93;
  font-size: 0.68rem;
  text-align: center;
}

.ios-time-divider::before,
.ios-time-divider::after {
  height: 1px;
  flex: 1;
  content: "";
  background: #dedee2;
}

.ios-time-divider span {
  white-space: nowrap;
}

.ios-mms {
  width: min(66%, 310px);
  margin: 6px 0 6px auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px 18px 5px 18px;
}

.ios-composer {
  min-height: 48px;
  padding: 6px 10px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  gap: 7px;
  align-items: center;
  color: #b0b0b4;
  background: #ffffff;
  border-top: 1px solid #eeeeef;
}

.ios-composer > i:first-child {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #606064;
  background: #eeeeef;
  border-radius: 50%;
  font-size: 1.05rem;
}

.ios-composer span {
  min-height: 34px;
  padding: 6px 11px;
  display: flex;
  align-items: center;
  border: 1px solid #d3d3d7;
  border-radius: 18px;
  font-size: 0.86rem;
}

.ios-composer > i:last-child {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #d3d3d7;
  border-radius: 50%;
  font-size: 0.9rem;
}

.demo-message {
  opacity: 1;
}

.ios-thread.is-playing .demo-message {
  opacity: 0;
  animation: message-reveal 280ms ease forwards;
  animation-delay: calc(var(--message-order) * 760ms);
}

@keyframes message-reveal {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.demo-proof {
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  list-style: none;
  color: var(--ink);
  font-size: 0.78rem;
}

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

.demo-proof i {
  color: var(--teal-dark);
  font-size: 1rem;
}

.example-boundary {
  margin: 13px 0 0;
  display: flex;
  gap: 7px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.75rem;
}

.example-boundary i {
  color: var(--teal-dark);
  font-size: 1rem;
}

.conversation-boundary {
  margin-top: 24px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.conversation-boundary > div,
.conversation-boundary > p {
  margin: 0;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.conversation-boundary > header {
  padding: 17px 15px;
  background: #f7fbf9;
}

.conversation-boundary > header span {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.conversation-boundary > header strong {
  display: block;
  color: var(--ink);
  font-size: 0.88rem;
}

.conversation-boundary > header p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.report-recipients {
  display: grid;
  gap: 11px;
}

.report-recipient-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.report-recipient-heading strong,
.report-recipient-heading small {
  display: block;
}

.report-recipient-heading strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.report-recipient-heading small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.report-recipient-heading > span {
  flex: none;
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 700;
}

.additional-recipient-list {
  display: grid;
  gap: 10px;
}

.additional-recipient-row {
  position: relative;
}

.additional-recipient-row input {
  padding-right: 46px;
}

.remove-recipient {
  position: absolute;
  right: 10px;
  bottom: 11px;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.add-recipient-button {
  justify-self: start;
}

.activation-note {
  padding: 16px;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  background: #f0f7f4;
  border: 1px solid #cfe1da;
  border-radius: 16px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.activation-note i {
  color: var(--teal-dark);
  font-size: 1.25rem;
}

.activation-note strong {
  display: block;
  color: var(--ink);
}

.conversation-boundary > * + * {
  border-top: 1px solid var(--line);
}

.conversation-boundary > p {
  background: #f0f7f4;
}

.conversation-boundary i {
  color: var(--teal-dark);
  font-size: 1.25rem;
}

.conversation-boundary strong {
  display: block;
  color: var(--ink);
}

.curriculum-evidence-map {
  margin-top: 20px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.curriculum-evidence-map > header {
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  background: #f0f7f4;
  border-bottom: 1px solid #cfe1da;
  font-size: 0.8rem;
}

.curriculum-evidence-map > header > i {
  color: #91a19c;
}

.curriculum-evidence-map > header strong {
  color: var(--ink);
}

.curriculum-domain {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--teal-dark);
  font-weight: 750;
}

.curriculum-domain i {
  font-size: 1.1rem;
}

.curriculum-progression {
  margin: 0;
  padding: 6px 18px;
  list-style: none;
}

.curriculum-step {
  position: relative;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
}

.curriculum-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 53px;
  bottom: -18px;
  left: 17px;
  width: 1px;
  background: #cfe1da;
}

.curriculum-step + .curriculum-step {
  border-top: 1px solid var(--line);
}

.curriculum-step-marker {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: #eaf5f1;
  border: 1px solid #cfe1da;
  border-radius: 50%;
}

.curriculum-step.is-current .curriculum-step-marker {
  color: #ffffff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 5px #eaf5f1;
}

.curriculum-step.is-next .curriculum-step-marker {
  color: #788984;
  background: #ffffff;
  border-color: #b9c5c1;
}

.curriculum-step small,
.curriculum-step strong {
  display: block;
}

.curriculum-step small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.curriculum-step.is-current small {
  color: var(--teal-dark);
}

.curriculum-step strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.35;
}

.curriculum-scope {
  width: fit-content;
  margin-top: 7px;
  padding: 4px 8px;
  display: block;
  color: var(--teal-dark);
  background: #eaf5f1;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.curriculum-step .curriculum-step-evidence {
  margin: 10px 0 0;
  padding: 10px 12px;
  color: var(--ink);
  background: #eaf5f1;
  border-radius: 10px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.curriculum-step-evidence > span {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--teal-dark);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.curriculum-step-evidence q {
  margin-top: 4px;
  display: block;
  font-weight: 620;
  quotes: none;
}

.assessment-boundary {
  margin: 14px 0 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  color: var(--muted);
  background: #f5f4ef;
  border-radius: 14px;
  font-size: 0.76rem;
  line-height: 1.5;
}

.assessment-boundary i {
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.assessment-boundary strong {
  display: block;
  color: var(--ink);
}

.curriculum-explanation {
  margin-top: 24px;
  padding: 19px;
  background: #f0f7f4;
  border: 1px solid #cfe1da;
  border-radius: 16px;
}

.curriculum-explanation .eyebrow {
  margin-bottom: 12px;
  font-size: 0.7rem;
}

.curriculum-path {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  color: var(--ink);
  font-size: 0.84rem;
}

.curriculum-path i {
  color: #91a19c;
}

.curriculum-explanation > p:last-child {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.weekly-report-story {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.report-story-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
}

.report-story-step:not(:last-child) {
  padding-bottom: 22px;
}

.report-story-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 44px;
  bottom: 0;
  left: 20px;
  width: 1px;
  background: var(--line);
}

.report-step-marker {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--teal-dark);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 720;
}

.report-story-body {
  min-width: 0;
  padding: 9px 0 24px;
  border-bottom: 1px solid var(--line);
}

.report-story-step:last-child .report-story-body {
  padding-bottom: 0;
  border-bottom: 0;
}

.report-step-label {
  display: block;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.report-moment-summary {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.report-moment-summary img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.report-stat strong,
.report-stat span {
  display: block;
}

.report-stat strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.report-stat span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.report-story-body blockquote {
  margin: 18px 0 0;
  color: #324a45;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.5;
}

.report-inference,
.report-next {
  margin: 13px 0 0;
  line-height: 1.5;
}

.report-inference {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 680;
}

.report-next {
  color: var(--muted);
  font-size: 0.9rem;
}

.step-header {
  position: sticky;
  z-index: 5;
  top: 0;
  margin: 0 -24px;
  padding: 10px 24px 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid rgba(228, 218, 201, 0.72);
}

.back-button {
  grid-column: 1;
  min-height: 40px;
  margin-left: -8px;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--teal-dark);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 620;
}

.step-meta {
  grid-column: 2 / 4;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 620;
}

.progress-track {
  grid-column: 1 / -1;
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
  background: #e3e6df;
  border-radius: 999px;
}

.progress-track span {
  display: block;
  height: 100%;
  background: var(--teal-dark);
  border-radius: inherit;
  transition: width 220ms ease;
}

.step-body {
  padding-top: 42px;
}

.step-body h2,
.build-content h2 {
  max-width: 17ch;
  font-size: clamp(2.1rem, 7vw, 3.35rem);
}

.step-help {
  margin: 18px 0 24px;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.child-list {
  display: grid;
  gap: 14px;
}

.child-row {
  position: relative;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.child-row h3 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.83rem;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.remove-child {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.field {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 650;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 450;
}

.field input::placeholder {
  color: #8a9691;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px var(--focus);
}

.field input[readonly] {
  color: var(--muted);
  background: #f4f2ed;
}

.field small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 450;
}

.add-child-button {
  margin-top: 14px;
}

.choice-list {
  display: grid;
  gap: 11px;
}

.choice-card {
  position: relative;
  min-height: 60px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #2f433f;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  font-weight: 520;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.choice-card:hover {
  border-color: #a8c9c1;
}

.choice-card:has(input:checked) {
  background: #f0f7f4;
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 1px var(--teal-dark);
}

.choice-card input,
.plan-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-indicator {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  border: 1.5px solid #aeb8b4;
  border-radius: 50%;
}

.choice-list-multiple .choice-indicator {
  border-radius: 6px;
}

.choice-card:has(input:checked) .choice-indicator {
  color: white;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.preference-list {
  display: grid;
  gap: 20px;
}

.child-preferences {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.child-preferences h3 {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.child-preferences .choice-card {
  min-height: 52px;
  font-size: 0.92rem;
}

.field-error {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 0.86rem;
  font-weight: 620;
}

.data-explanation {
  margin: 18px 0 0;
  padding: 13px 14px;
  display: flex;
  gap: 10px;
  color: var(--muted);
  background: #f5f4ef;
  border-radius: 12px;
  font-size: 0.78rem;
}

.data-explanation i {
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.step-continue {
  margin-top: 26px;
}

.build-screen {
  min-height: calc(100dvh - 82px);
}

.build-content {
  min-height: calc(100dvh - 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.build-content > img {
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border-radius: 50%;
}

.build-checks {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
  color: var(--muted);
}

.build-checks li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.build-checks i {
  color: var(--teal-dark);
  font-size: 1.2rem;
}

.save-status {
  margin: 24px 0 0;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 650;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 620;
}

.profile-summary {
  display: grid;
  gap: 12px;
}

.summary-card {
  padding: 17px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.summary-card span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 680;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.summary-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 1rem;
}

.summary-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.preference-summary {
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.preference-summary li {
  display: grid;
  gap: 2px;
}

.preference-summary li strong,
.preference-summary li b {
  margin: 0;
  font-size: 0.9rem;
}

.preference-summary li b {
  color: var(--muted);
  font-weight: 480;
}

.family-boundary,
.canceled-notice {
  margin-top: 16px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f0f7f4;
  border: 1px solid #cfe1da;
  border-radius: 14px;
}

.family-boundary i,
.canceled-notice i {
  color: var(--teal-dark);
  font-size: 1.4rem;
}

.family-boundary p,
.canceled-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.family-boundary strong,
.canceled-notice strong {
  color: var(--ink);
}

.fine-print,
.checkout-fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.checkout-lock {
  margin: 12px 0 0;
  padding: 12px 14px;
  display: flex;
  gap: 9px;
  color: var(--muted);
  background: #f5f4ef;
  border-radius: 12px;
  font-size: 0.8rem;
}

.checkout-lock i {
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.field-grid {
  display: grid;
  gap: 17px;
}

.phone-row {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 10px;
}

.consent-box {
  position: relative;
  margin-top: 22px;
  padding: 15px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  font-size: 0.76rem;
  line-height: 1.52;
}

.consent-box input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--teal-dark);
}

.guarantee-screen .step-body h2 {
  max-width: 13ch;
}

.guarantee-promise {
  margin-top: 26px;
  padding: 22px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  color: var(--ink);
  background: #eaf5f1;
  border: 1px solid #bddbd1;
  border-radius: 20px;
}

.guarantee-seal {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--teal-dark);
  border-radius: 50%;
}

.guarantee-seal i {
  font-size: 1.75rem;
}

.guarantee-promise strong {
  display: block;
  font-size: 1.05rem;
}

.guarantee-promise p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.guarantee-path {
  margin: 28px 0 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.guarantee-path li {
  padding: 18px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
}

.guarantee-path li + li {
  border-top: 1px solid var(--line);
}

.guarantee-path li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: #eaf5f1;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 750;
}

.guarantee-path strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}

.guarantee-path p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.5;
}

.guarantee-terms {
  margin-top: 16px;
  padding: 14px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  color: var(--muted);
  background: #f5f4ef;
  border-radius: 14px;
  font-size: 0.74rem;
  line-height: 1.5;
}

.guarantee-terms i {
  color: var(--teal-dark);
  font-size: 1.1rem;
}

.guarantee-terms p {
  margin: 0;
}

.guarantee-terms a {
  color: var(--teal-dark);
  font-weight: 650;
}

.guarantee-reminder {
  margin-top: 20px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  color: var(--muted);
  background: #f0f7f4;
  border: 1px solid #cfe1da;
  border-radius: 13px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.guarantee-reminder i {
  color: var(--teal-dark);
  font-size: 1.15rem;
}

.guarantee-reminder strong {
  color: var(--ink);
}

.plan-picker {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  border: 0;
}

.plan-picker legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 680;
}

.plan-card {
  position: relative;
  padding: 17px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
}

.plan-card:hover {
  border-color: #a8c9c1;
}

.plan-card:has(input:checked) {
  background: #f0f7f4;
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 1px var(--teal-dark);
}

.plan-radio {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  border: 2px solid #aeb8b4;
  border-radius: 50%;
}

.plan-card:has(input:checked) .plan-radio {
  border: 6px solid var(--teal-dark);
}

.plan-copy {
  min-width: 0;
}

.plan-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.plan-heading strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.plan-heading em {
  padding: 4px 8px;
  color: #5d4a1f;
  background: #fff2c9;
  border: 1px solid #ecd17e;
  border-radius: 999px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-copy > b,
.plan-copy > small {
  display: block;
}

.plan-copy > b {
  margin-top: 7px;
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.plan-copy > small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.included-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
  color: var(--muted);
  font-size: 0.85rem;
}

.included-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.included-list i {
  color: var(--teal-dark);
  font-size: 1.15rem;
}

.canceled-notice {
  background: #fff8e9;
  border-color: #ead5a1;
}

.canceled-notice i {
  color: #926f26;
}

.checkout-button {
  margin-top: 24px;
}

.paywall-details {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.8rem;
}

.paywall-details summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 650;
}

.paywall-details p {
  margin: 7px 0 0;
}

.success-shell {
  width: min(100%, 720px);
  margin: 0 auto;
}

.legal-page {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.legal-page h1 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 8vw, 5rem);
}

.legal-effective {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 620;
}

.legal-page > .lede {
  margin-bottom: 48px;
  font-size: 1.15rem;
}

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

.legal-page section h2 {
  max-width: none;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-page section p,
.legal-page section li {
  color: #43534f;
  line-height: 1.72;
}

.legal-page section p {
  margin: 13px 0 0;
}

.legal-page section ul {
  margin: 14px 0 0;
  padding-left: 1.2rem;
}

.legal-footer {
  margin-top: 32px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.success-card {
  min-height: calc(100dvh - 82px);
  padding: 64px 24px 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.success-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--teal-dark);
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: var(--shadow-small);
}

.success-card h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 8vw, 4rem);
}

.guarantee-date {
  margin: 24px 0 0;
  padding: 14px 16px;
  display: flex;
  gap: 9px;
  color: var(--ink);
  background: #f0f7f4;
  border-radius: 12px;
  font-size: 0.86rem;
}

.link-button {
  text-decoration: none;
}

.support-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (min-width: 760px) {
  body {
    background: var(--linen);
  }

  .funnel-shell {
    background: var(--cream);
  }

  .landing-copy .primary-button {
    width: auto;
    min-width: 330px;
    padding-inline: 32px;
  }

  .button-note,
  .price-note {
    justify-content: flex-start;
    margin-left: 0;
  }

  .landing-legal {
    justify-content: flex-start;
  }

  .step-screen,
  .reveal-screen,
  .paywall-screen,
  .build-screen {
    padding-bottom: 110px;
  }

  .step-header {
    padding-top: 18px;
  }

  .step-body {
    padding-top: 64px;
  }

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

@media (min-width: 960px) {
  .landing-screen.is-active {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.78fr);
    gap: 72px;
    align-items: start;
    padding-top: 64px;
  }

  .landing-copy {
    position: sticky;
    top: 48px;
  }

  .landing-copy h1 {
    font-size: clamp(3rem, 4.6vw, 4.35rem);
  }

  .coordination-proof,
  .text-proof {
    margin-top: 0;
  }

}

@media (max-width: 640px) {
  .landing-copy h1 {
    max-width: 20ch;
    font-size: clamp(1.95rem, 8.8vw, 2.05rem);
    line-height: 1.08;
  }

  .caregiver-message {
    width: 100%;
  }

  .landing-report-card {
    padding: 16px;
    border-radius: 18px;
  }

  .landing-report-header {
    margin: -16px -16px 0;
    padding: 16px;
    border-radius: 17px 17px 0 0;
  }

  .landing-proof-cta {
    display: inline-flex;
  }
}

@media (max-width: 430px) {
  .public-header {
    min-height: 72px;
    padding: 14px 20px;
  }

  .brand {
    gap: 10px;
    font-size: 1.45rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .sign-in-link {
    text-align: right;
    font-size: 0.82rem;
  }

  .sign-in-prefix {
    display: none;
  }

  .landing-screen {
    padding: 32px 24px 64px;
  }

  .landing-copy .lede {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .landing-copy .primary-button {
    margin-top: 22px;
  }

  .coordination-proof,
  .text-proof {
    margin-top: 40px;
  }

  .button-note,
  .price-note {
    flex-wrap: wrap;
    font-size: 0.79rem;
  }

  .landing-report-card .report-moment-summary {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .landing-report-card .report-moment-summary img {
    width: 76px;
    height: 62px;
  }

  .landing-report-card .report-stat {
    margin-top: 0;
  }

  .report-screen .step-body {
    padding-top: 28px;
  }

  .report-screen .step-body h2 {
    max-width: 11ch;
  }

  .weekly-report-story {
    margin-top: 24px;
  }

  .report-story-step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }

  .report-story-step:not(:last-child) {
    padding-bottom: 18px;
  }

  .report-story-step:not(:last-child)::after {
    top: 36px;
    left: 16px;
  }

  .report-step-marker {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .report-story-body {
    padding: 6px 0 20px;
  }

  .report-step-label {
    font-size: 0.66rem;
  }

  .report-moment-summary {
    margin-top: 13px;
    display: block;
  }

  .report-moment-summary img {
    max-width: 220px;
    border-radius: 14px;
  }

  .report-stat {
    margin-top: 13px;
  }

  .report-stat strong {
    font-size: 1.02rem;
  }

  .report-story-body blockquote {
    margin-top: 15px;
    font-size: 0.98rem;
  }

  .report-inference,
  .report-next {
    margin-top: 10px;
  }

  .child-row {
    grid-template-columns: minmax(0, 1fr) 112px;
    padding: 15px;
  }

  .phone-row {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .step-body h2,
  .build-content h2 {
    font-size: 2.25rem;
  }

  .demo-screen .step-body h2 {
    font-size: 2rem;
  }

  .step-body {
    padding-top: 32px;
  }

  .guarantee-promise {
    padding: 18px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
  }

  .guarantee-seal {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 350px) {
  .public-header,
  .landing-screen,
  .step-screen,
  .reveal-screen,
  .paywall-screen,
  .build-screen,
  .success-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .step-header {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .child-row,
  .phone-row {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
