:root {
  color-scheme: light;
  --ink: #070a4d;
  --muted: #4c5b82;
  --quiet: #697697;
  --page: #f7fbff;
  --band: #eef8ff;
  --surface: #ffffff;
  --aqua: #22d4df;
  --teal: #17c7c2;
  --blue: #1d6ef2;
  --line: #dcebf6;
  --soft: #e8f6ff;
  --mint-surface: #effcf9;
  --paper: #fbfdff;
  --shadow: rgba(7, 10, 77, 0.10);
  --deep-shadow: rgba(7, 10, 77, 0.18);
  --shell-max: 1180px;
  --shell-pad: max(20px, calc((100vw - var(--shell-max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f9fcff 0%, #f5fbff 32%, #ffffff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}

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

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(34, 212, 223, 0.55);
  outline-offset: 4px;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 10px var(--shell-pad);
  border-bottom: 1px solid rgba(220, 235, 246, 0.78);
  background: rgba(249, 252, 255, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-wordmark {
  display: block;
  width: 160px;
  height: auto;
}

.footer-wordmark {
  display: block;
  width: 166px;
  height: auto;
}

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

.primary-nav a:hover {
  color: var(--ink);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 780;
  text-align: center;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.header-cta,
.primary-button {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 16px 38px rgba(7, 10, 77, 0.18);
}

.secondary-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.primary-button:hover {
  box-shadow: 0 18px 42px rgba(29, 110, 242, 0.22);
}

.secondary-button:hover {
  border-color: rgba(34, 212, 223, 0.72);
  box-shadow: 0 14px 32px rgba(34, 212, 223, 0.13);
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: 92px;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: 4.9rem;
  line-height: 0.98;
}

h2 {
  max-width: 900px;
  font-size: 3.55rem;
  line-height: 1.05;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #007f91;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  min-height: 720px;
  padding: 54px var(--shell-pad) 72px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(244, 251, 255, 0.98) 52%, rgba(224, 249, 247, 0.86));
}

.hero::after {
  position: absolute;
  right: var(--shell-pad);
  bottom: 0;
  left: var(--shell-pad);
  height: 1px;
  content: "";
  background: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-copy::before {
  display: block;
  width: 74px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

.hero-text {
  max-width: 690px;
  margin-top: 20px;
  font-size: 1.2rem;
}

.supporting-line {
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 760;
}

.hero-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-line {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 720;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.helpi-banner {
  position: absolute;
  inset: 22px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(220, 235, 246, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 250, 255, 0.96) 54%, rgba(219, 247, 247, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(34, 212, 223, 0.1));
  box-shadow: 0 36px 90px rgba(7, 10, 77, 0.14);
}

.helpi-banner::before {
  position: absolute;
  right: -18%;
  bottom: -38%;
  width: 82%;
  height: 74%;
  content: "";
  background: linear-gradient(145deg, rgba(34, 212, 223, 0.25), rgba(29, 110, 242, 0.12));
  transform: rotate(-10deg);
}

.helpi-character {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: min(360px, 36vw);
  height: auto;
  filter: drop-shadow(0 28px 36px rgba(7, 10, 77, 0.16));
}

.helpi-card {
  position: absolute;
  z-index: 2;
  width: 238px;
  padding: 18px;
  border: 1px solid rgba(220, 235, 246, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 52px rgba(7, 10, 77, 0.11);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.moment-card {
  top: 58px;
  left: 34px;
}

.story-card {
  left: 34px;
  bottom: 82px;
}

.helpi-card span,
.inside-note span,
.value-point span,
.flow-panel span {
  color: #007f91;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.helpi-card strong,
.inside-note strong {
  display: block;
  line-height: 1.28;
}

.helpi-card strong {
  margin-top: 8px;
}

.pain-section,
.product-section,
.how-section,
.use-cases-section,
.inside-section,
.parent-value-section,
.pricing-section,
.growth-section,
.final-cta-section,
.faq-section {
  padding: 92px var(--shell-pad);
}

.pain-section,
.use-cases-section,
.growth-section,
.faq-section {
  background: linear-gradient(180deg, var(--band), #f7fbff);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.product-copy p,
.story-distance-copy p,
.inside-copy > p,
.growth-copy p,
.pricing-heading p,
.final-panel p:not(.eyebrow):not(.microcopy):not(.age-note) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.08rem;
}

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

.pain-card,
.situation-card,
.phrase-card,
.growth-item,
.step,
.plan-card,
.pack-card,
.value-point,
.flow-panel,
.final-panel,
details {
  border: 1px solid rgba(220, 235, 246, 0.94);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(7, 10, 77, 0.065);
}

.pain-card {
  grid-column: span 2;
  position: relative;
  min-height: 214px;
  padding: 26px;
  overflow: hidden;
}

.pain-card:first-child {
  grid-column: span 3;
  background:
    linear-gradient(135deg, #ffffff, #ecfbf8),
    #ffffff;
}

.pain-card.wide {
  grid-column: span 3;
}

.pain-card::before,
.situation-card::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  content: "";
  background: var(--aqua);
}

.pain-card p,
.situation-card p,
.step p,
.growth-item p,
.story-elements p {
  margin-top: 12px;
}

.story-distance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 104px var(--shell-pad);
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 54%, #edf9ff 100%);
}

.soft-line {
  color: var(--ink);
  font-weight: 760;
}

.distance-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  align-items: center;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(237, 249, 255, 0.84)),
    repeating-linear-gradient(90deg, rgba(34, 212, 223, 0.08) 0 1px, transparent 1px 42px);
  box-shadow: 0 28px 76px rgba(7, 10, 77, 0.09);
}

.distance-flow::before {
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 1px solid rgba(34, 212, 223, 0.2);
  border-radius: 8px;
  content: "";
  transform: rotate(-1.4deg);
}

.distance-flow::after {
  position: absolute;
  top: 50%;
  right: 16%;
  left: 16%;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--teal), var(--blue), transparent);
  background-size: 180% 100%;
  opacity: 0.72;
  pointer-events: none;
}

.flow-panel {
  position: relative;
  z-index: 2;
  min-height: 204px;
  padding: 26px;
  box-shadow: 0 18px 46px rgba(7, 10, 77, 0.07);
}

.flow-panel strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 520;
  line-height: 1.12;
}

.flow-panel.calm {
  background: linear-gradient(180deg, #ffffff, #ecfbf8);
}

.flow-bridge {
  position: relative;
  z-index: 3;
  height: 2px;
  background: var(--aqua);
}

.flow-bridge::after {
  position: absolute;
  top: -7px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--aqua);
  border-right: 2px solid var(--aqua);
  content: "";
  transform: rotate(45deg);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(180deg, #ffffff, #f8fcff);
}

.product-copy {
  max-width: 920px;
  margin-bottom: 0;
}

.value-strip {
  display: grid;
  gap: 14px;
}

.value-point {
  min-height: auto;
  padding: 24px 26px;
  box-shadow: none;
}

.value-point h3 {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 520;
}

.how-section {
  background:
    linear-gradient(135deg, #f7fbff, #ffffff);
}

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

.steps::before {
  position: absolute;
  top: 46px;
  right: 15%;
  left: 15%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(34, 212, 223, 0.18), rgba(34, 212, 223, 0.7), rgba(34, 212, 223, 0.18));
}

.step {
  position: relative;
  min-height: 228px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--ink);
  background: #e7fbf8;
  font-weight: 840;
  box-shadow: 0 0 0 8px #ffffff;
}

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

.situation-card {
  min-height: 206px;
  padding: 26px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.9);
}

.inside-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 44%, #eaf8ff 100%);
}

.inside-copy {
  grid-column: 1;
  grid-row: 1;
}

.inside-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  min-height: 690px;
}

.inside-phone {
  position: relative;
  z-index: 1;
  width: 310px;
  height: 674px;
  margin: 0 auto;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  background: #f8fcff;
  box-shadow: 0 38px 96px rgba(7, 10, 77, 0.24);
  transform: rotate(2deg);
}

.inside-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inside-note {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: 220px;
  padding: 14px;
  border: 1px solid rgba(220, 235, 246, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 52px rgba(7, 10, 77, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.inside-note-one {
  top: 64px;
  left: 0;
}

.inside-note-two {
  top: 238px;
  right: 0;
}

.inside-note-three {
  bottom: 88px;
  left: 10px;
}

.story-elements {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.story-elements article {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  border-left: 0;
}

.parent-value-section {
  background:
    linear-gradient(135deg, #f8fcff, #ecfbf8);
}

.phrase-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.phrase-card {
  position: relative;
  min-height: 128px;
  padding: 26px 22px 22px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.24;
}

.phrase-card::before {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 0.5;
}

.growth-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  background:
    linear-gradient(180deg, var(--band), #f8fcff);
}

.growth-list {
  counter-reset: growth;
  display: grid;
  gap: 12px;
}

.growth-item {
  display: grid;
  grid-template-columns: 46px minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  box-shadow: none;
}

.growth-item::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--ink);
  background: #e7fbf8;
  content: counter(growth);
  counter-increment: growth;
  font-weight: 850;
}

.growth-item p {
  margin-top: 0;
}

.pricing-section {
  background:
    linear-gradient(180deg, #ffffff, #f8fcff);
}

.pricing-heading {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.pricing-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

.pricing-heading p {
  margin-right: auto;
  margin-left: auto;
}

.support-system-panel {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 66px rgba(7, 10, 77, 0.07);
}

.support-system-panel h3 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.18rem;
}

.support-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
}

.support-feature {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
}

.support-feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(34, 212, 223, 0.26);
  border-radius: 999px;
  color: #007f91;
  background: linear-gradient(180deg, #f1fffd, #e8f6ff);
  font-size: 0.86rem;
  font-weight: 900;
}

.support-feature h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.support-feature p {
  font-size: 0.9rem;
  line-height: 1.52;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.plan-grid,
.situation-grid,
.phrase-cards {
  scroll-behavior: smooth;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 34px;
  text-align: center;
}

.featured-plan {
  border-color: rgba(34, 212, 223, 0.68);
  background: linear-gradient(180deg, #ffffff, #ecfbf8);
  box-shadow: 0 28px 68px rgba(7, 10, 77, 0.11);
  transform: none;
}

.featured-plan::before {
  display: none;
}

.value-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  box-shadow: 0 14px 30px rgba(34, 212, 223, 0.2);
  font-size: 0.76rem;
  font-weight: 880;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.plan-topline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.plan-topline h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.78rem;
  font-weight: 520;
}

.plan-badge {
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  color: #007f91;
  background: #e7fbf8;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

.price {
  margin: 22px 0 6px;
  color: var(--ink);
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.price-note {
  margin: 0;
  color: #007f91;
  font-weight: 850;
}

.plan-summary {
  max-width: 430px;
  min-height: 76px;
  margin: 22px auto 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.55;
}

.plan-card ul {
  display: grid;
  gap: 11px;
  padding-left: 22px;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.45;
  text-align: left;
}

.plan-card li::marker {
  color: #007f91;
}

.plan-button {
  width: 100%;
  margin-top: auto;
}

.first-moment-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 20px 54px rgba(7, 10, 77, 0.06);
}

.first-moment-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  font-weight: 520;
}

.first-moment-card .eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  background: #e7fbf8;
}

.first-moment-card > p {
  max-width: 450px;
  font-size: 0.98rem;
}

.first-moment-price {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 860;
}

.pack-section {
  max-width: 1120px;
  margin: 34px auto 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 58px rgba(7, 10, 77, 0.06);
}

.pack-section > div:first-child {
  padding: 26px 28px 0;
  text-align: center;
}

.pack-section h3 {
  max-width: 560px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 520;
  line-height: 1.08;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 28px 28px;
}

.pack-card {
  padding: 24px;
  box-shadow: none;
}

.pack-card span {
  color: #007f91;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.pack-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.18rem;
}

.pack-card p {
  margin-top: 12px;
}

.pricing-disclaimer {
  max-width: 960px;
  margin: 20px 0 0;
  color: var(--quiet);
  font-size: 0.95rem;
}

.pricing-disclaimer a {
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(34, 212, 223, 0.72);
  text-underline-offset: 4px;
}

.final-cta-section {
  background: #ffffff;
  padding-top: 0;
}

.final-panel {
  max-width: none;
  padding: 64px clamp(28px, 6vw, 76px);
  text-align: center;
  background:
    linear-gradient(135deg, #071044, #083e6d 62%, #007f91);
  border-color: rgba(7, 10, 77, 0.04);
  box-shadow: 0 32px 86px rgba(7, 10, 77, 0.16);
}

.final-panel h2,
.final-panel p,
.final-panel .eyebrow {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: #ffffff;
}

.final-panel p:not(.eyebrow):not(.microcopy):not(.age-note) {
  color: rgba(255, 255, 255, 0.82);
}

.final-panel .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.final-panel .primary-button {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.final-panel .primary-button {
  margin-top: 28px;
}

.microcopy,
.age-note {
  margin-top: 14px;
  color: var(--quiet);
  font-size: 0.95rem;
}

.final-panel .microcopy {
  color: rgba(255, 255, 255, 0.72);
}

.age-note {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

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

summary::after {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--soft);
  content: "+";
}

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

details p {
  padding: 0 22px 22px;
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(7, 10, 77, 0.24);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-sticky-cta span {
  font-weight: 820;
}

.mobile-sticky-cta small {
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 44px var(--shell-pad);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-top p {
  color: var(--ink);
  font-weight: 720;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 680;
}

.footer-note,
.footer-legal {
  color: var(--quiet);
  font-size: 0.92rem;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.motion-ready .helpi-character {
  animation: phoneFloat 6000ms ease-in-out infinite;
}

.motion-ready .helpi-card,
.motion-ready .inside-note {
  animation: noteFloat 6800ms ease-in-out infinite;
}

.motion-ready .distance-flow::after {
  animation: storyTrace 5200ms ease-in-out infinite;
}

.motion-ready .helpi-card:nth-of-type(2),
.motion-ready .inside-note-two {
  animation-delay: 900ms;
}

.motion-ready .inside-note-three {
  animation-delay: 1500ms;
}

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

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

@keyframes storyTrace {
  0%, 100% { background-position: 0% 0; opacity: 0.52; }
  50% { background-position: 100% 0; opacity: 0.9; }
}

@keyframes storyTraceVertical {
  0%, 100% { background-position: 0 0%; opacity: 0.52; }
  50% { background-position: 0 100%; opacity: 0.9; }
}

@media (min-width: 1081px) {
  .hero {
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
    min-height: clamp(680px, calc(100svh - 118px), 820px);
    overflow: hidden;
    padding-top: clamp(58px, 7vh, 92px);
    padding-bottom: clamp(64px, 7vh, 96px);
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 253, 255, 0.94) 42%, rgba(236, 250, 255, 0.5) 64%, rgba(224, 249, 247, 0.92) 100%);
  }

  .hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.34) 58%, rgba(255, 255, 255, 0) 78%),
      radial-gradient(circle at 80% 30%, rgba(34, 212, 223, 0.18), transparent 34%);
    pointer-events: none;
  }

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

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 0;
    max-width: none;
    pointer-events: none;
  }

  .helpi-banner {
    inset: 0;
    border: 0;
    border-radius: 0;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(236, 250, 255, 0.56) 48%, rgba(216, 248, 247, 0.92)),
      linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(34, 212, 223, 0.12));
    box-shadow: none;
  }

  .helpi-banner::before {
    right: -10vw;
    bottom: -24%;
    width: min(760px, 55vw);
    height: 72%;
    background:
      linear-gradient(145deg, rgba(34, 212, 223, 0.25), rgba(29, 110, 242, 0.13)),
      radial-gradient(circle at 40% 45%, rgba(255, 255, 255, 0.62), transparent 48%);
  }

  .helpi-character {
    right: max(42px, calc((100vw - var(--shell-max)) / 2));
    bottom: clamp(-28px, -2vw, -12px);
    width: clamp(430px, 39vw, 650px);
  }

  .helpi-card {
    width: clamp(220px, 18vw, 274px);
  }

  .moment-card {
    top: clamp(84px, 12vh, 130px);
    right: clamp(210px, 23vw, 440px);
    left: auto;
  }

  .story-card {
    right: clamp(70px, 9vw, 160px);
    bottom: clamp(98px, 15vh, 170px);
    left: auto;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
    max-width: 680px;
  }

  .helpi-character {
    width: 330px;
  }

  .story-card {
    bottom: 68px;
  }

  .pain-card,
  .pain-card.wide {
    grid-column: span 3;
  }

  .story-distance-section,
  .product-section,
  .growth-section {
    grid-template-columns: 1fr;
  }

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

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

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .plan-card {
    min-height: auto;
  }

  .featured-plan {
    transform: none;
  }

  .price-note {
    min-height: auto;
  }

  .plan-summary {
    min-height: auto;
  }

  .first-moment-card {
    grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  }

  .first-moment-card .secondary-button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .site-header {
    min-height: 68px;
  }

  .brand-wordmark {
    width: 142px;
  }

  .primary-nav {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
  }

  .hero,
  .pain-section,
  .product-section,
  .how-section,
  .use-cases-section,
  .inside-section,
  .parent-value-section,
  .pricing-section,
  .growth-section,
  .final-cta-section,
  .faq-section,
  .story-distance-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-text {
    font-size: 1.04rem;
  }

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

  .helpi-banner {
    inset: 0;
  }

  .helpi-character {
    right: 14px;
    bottom: 14px;
    width: 270px;
  }

  .helpi-card {
    width: 210px;
    padding: 16px;
  }

  .moment-card {
    top: 22px;
    left: 18px;
  }

  .story-card {
    right: auto;
    bottom: 26px;
    left: 18px;
  }

  .pain-cards,
  .value-strip,
  .steps,
  .inside-section,
  .pack-section,
  .phrase-cards {
    grid-template-columns: 1fr;
  }

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

  .support-system-panel {
    padding: 24px;
  }

  .support-feature-grid {
    grid-template-columns: 1fr;
  }

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

  .first-moment-card .secondary-button {
    justify-self: stretch;
  }

  .inside-copy,
  .inside-visual,
  .story-elements {
    grid-column: auto;
    grid-row: auto;
  }

  .pain-card,
  .pain-card:first-child,
  .pain-card.wide {
    grid-column: 1;
    min-height: auto;
  }

  .distance-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .distance-flow::after {
    top: 24%;
    bottom: 24%;
    left: 50%;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--teal), var(--blue), transparent);
    background-size: 100% 180%;
  }

  .motion-ready .distance-flow::after {
    animation-name: storyTraceVertical;
  }

  .flow-bridge {
    display: none;
  }

  .flow-panel {
    min-height: 148px;
  }

  .flow-panel strong {
    margin-top: 12px;
    font-size: 1.35rem;
  }

  .inside-phone {
    width: 300px;
    height: 653px;
  }

  .inside-visual {
    width: min(430px, 100%);
    min-height: 650px;
    margin: 0 auto;
  }

  .inside-note {
    width: 200px;
  }

  .inside-note-one {
    top: 28px;
    left: 0;
  }

  .inside-note-two {
    top: 182px;
    right: 0;
  }

  .inside-note-three {
    bottom: 54px;
    left: 0;
  }

  .growth-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .growth-item::before {
    margin-bottom: 4px;
  }

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

@media (max-width: 620px) {
  h1 {
    font-size: 2.36rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.05rem;
  }

  body.has-sticky-cta {
    padding-bottom: 82px;
  }

  body.has-sticky-cta .mobile-sticky-cta {
    display: flex;
  }

  body.show-mobile-cta .mobile-sticky-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    gap: 18px;
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .hero-copy::before {
    width: 58px;
    margin-bottom: 14px;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .supporting-line {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

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

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    flex: none;
    min-width: 0;
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .trust-line {
    display: none;
  }

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

  .helpi-banner {
    border-color: rgba(255, 255, 255, 0.92);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 250, 255, 0.97) 56%, rgba(220, 248, 247, 0.94)),
      linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(34, 212, 223, 0.12));
  }

  .helpi-banner::after {
    position: absolute;
    right: 18px;
    bottom: 26px;
    left: 18px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(34, 212, 223, 0.48), transparent);
  }

  .helpi-character {
    right: 12px;
    bottom: 10px;
    width: 202px;
  }

  .helpi-card {
    width: 168px;
    padding: 14px;
  }

  .helpi-card strong {
    font-size: 0.94rem;
  }

  .moment-card {
    top: 16px;
    left: 14px;
  }

  .story-card {
    bottom: 18px;
    left: 14px;
  }

  .pain-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 18px;
    border-left: 2px solid rgba(34, 212, 223, 0.44);
  }

  .pain-card,
  .pain-card:first-child,
  .pain-card.wide {
    position: relative;
    min-height: auto;
    padding: 0 0 28px 22px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pain-card::before,
  .pain-card:first-child::before,
  .pain-card.wide::before {
    position: absolute;
    top: 4px;
    left: -24px;
    width: 12px;
    height: 12px;
    margin: 0;
    border-radius: 999px;
    background: var(--aqua);
    box-shadow: 0 0 0 7px var(--band);
  }

  .pain-card p {
    margin-top: 10px;
  }

  .value-strip {
    counter-reset: value-step;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .value-point {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 14px;
    min-height: auto;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    counter-increment: value-step;
  }

  .value-point::before {
    display: grid;
    grid-row: 1 / span 2;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    color: var(--ink);
    background: #e7fbf8;
    content: counter(value-step);
    font-weight: 850;
  }

  .value-point span,
  .value-point h3 {
    grid-column: 2;
  }

  .value-point h3 {
    margin-top: 8px;
    font-size: 1.28rem;
  }

  .steps {
    gap: 0;
    padding-left: 18px;
  }

  .steps::before {
    top: 8px;
    bottom: 24px;
    left: 19px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(34, 212, 223, 0.7), rgba(34, 212, 223, 0.12));
  }

  .step {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    min-height: auto;
    padding: 0 0 30px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .step span {
    grid-row: 1 / span 2;
    margin: 0;
    box-shadow: 0 0 0 8px #ffffff;
  }

  .step h3,
  .step p {
    grid-column: 2;
  }

  .use-cases-section,
  .parent-value-section {
    overflow: hidden;
  }

  .situation-grid,
  .phrase-cards {
    display: grid;
    grid-template-columns: none;
    grid-template-rows: 1fr;
    grid-auto-flow: column;
    grid-auto-columns: minmax(258px, 82vw);
    gap: 14px;
    overflow-x: auto;
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px 10px;
    scroll-padding-left: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 38px), transparent);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 38px), transparent);
  }

  .situation-grid::-webkit-scrollbar,
  .phrase-cards::-webkit-scrollbar {
    display: none;
  }

  .situation-card,
  .phrase-card {
    scroll-snap-align: start;
  }

  .situation-card {
    padding: 22px;
    min-height: 244px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.92));
  }

  .phrase-card {
    padding: 22px;
    min-height: 178px;
  }

  .how-section .section-cta,
  .parent-value-section .section-cta {
    display: none;
  }

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

  .inside-phone {
    width: 250px;
    height: 544px;
    border-width: 8px;
    border-radius: 30px;
  }

  .inside-note {
    width: 164px;
    padding: 12px;
    font-size: 0.88rem;
  }

  .inside-note-one {
    top: 8px;
    left: 0;
  }

  .inside-note-two {
    top: 112px;
    right: 0;
  }

  .inside-note-three {
    bottom: 24px;
    left: 0;
  }

  .growth-list {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .growth-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 14px;
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .growth-item::before {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .growth-item h3,
  .growth-item p {
    grid-column: 2;
  }

  .pricing-section {
    overflow: hidden;
  }

  .pricing-heading {
    text-align: left;
  }

  .support-system-panel {
    margin-right: 0;
    margin-left: 0;
    padding: 22px;
  }

  .support-system-panel h3 {
    text-align: left;
  }

  .support-feature {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
  }

  .support-feature-icon {
    width: 40px;
    height: 40px;
  }

  .plan-grid {
    display: grid;
    grid-template-columns: none;
    grid-template-rows: 1fr;
    grid-auto-flow: column;
    grid-auto-columns: minmax(286px, 84vw);
    gap: 14px;
    overflow-x: auto;
    margin-right: -20px;
    margin-left: -20px;
    padding: 4px 20px 16px;
    scroll-padding-left: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent);
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent);
  }

  .plan-grid::-webkit-scrollbar {
    display: none;
  }

  .plan-card {
    min-height: 520px;
    scroll-snap-align: start;
    padding: 24px;
  }

  .featured-plan {
    order: -1;
    box-shadow: 0 26px 64px rgba(7, 10, 77, 0.15);
  }

  .featured-plan::before {
    margin: -22px -22px 22px;
  }

  .plan-topline h3 {
    font-size: 1.58rem;
  }

  .plan-summary {
    min-height: 96px;
  }

  .first-moment-card {
    margin-top: 20px;
    padding: 24px;
  }

  .pain-section,
  .product-section,
  .how-section,
  .use-cases-section,
  .inside-section,
  .parent-value-section,
  .pricing-section,
  .growth-section,
  .final-cta-section,
  .faq-section,
  .story-distance-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .story-elements article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .plan-card,
  .pack-card,
  .flow-panel {
    padding: 22px;
  }

  .mobile-sticky-cta small {
    display: none;
  }

  .price {
    font-size: 2.55rem;
  }

  .pack-section {
    padding: 0;
  }

  .pack-section h3 {
    font-size: 1.62rem;
  }

  .pack-section > div:first-child {
    padding: 24px 22px 0;
    text-align: left;
  }

  .pack-grid {
    padding: 20px 22px 22px;
  }
}

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

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