:root {
  --primary: #8b7cff;
  --primary-deep: #7464ed;
  --primary-soft: #f0edff;
  --primary-tint: #f8f6ff;
  --ink: #2f2f38;
  --muted: #7e7d8d;
  --light: #aaa8b6;
  --page: #fbfaff;
  --card: #fff;
  --line: #eceaf2;
  --pink: #e58bb4;
  --pink-soft: #ffdce9;
  --blue: #6fa3e8;
  --blue-soft: #ddecff;
  --green: #5cb878;
  --green-soft: #dcf5df;
  --orange: #e5a44e;
  --orange-soft: #ffedce;
  --purple-soft: #e7e1ff;
  --teal: #45bfaa;
  --teal-soft: #d9f6f0;
  --coral: #ed9377;
  --coral-soft: #ffe4dc;
  --orchid: #c77fd9;
  --orchid-soft: #f3dcf7;
  --mint: #55ae8b;
  --mint-soft: #def4e4;
  --shadow-sm: 0 12px 32px rgba(47, 47, 56, .06);
  --shadow-md: 0 26px 70px rgba(81, 70, 135, .12);
  --shadow-lg: 0 40px 100px rgba(74, 61, 140, .18);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

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

button, input, textarea { font: inherit; }

button { color: inherit; }

svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

#icon-heart, #icon-wechat { fill: currentColor; stroke: none; }

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--primary);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  border-color: rgba(139, 124, 255, .1);
  background: rgba(251, 250, 255, .88);
  box-shadow: 0 10px 30px rgba(47, 47, 56, .04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-wrap { display: flex; align-items: center; height: 80px; }

.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }

.brand img { width: 44px; height: 44px; border-radius: 13px; box-shadow: 0 8px 18px rgba(229, 164, 78, .18); }

.brand-copy { display: flex; flex-direction: column; }

.brand-copy strong { font-size: 16px; line-height: 1.2; letter-spacing: .02em; }

.brand-copy small { margin-top: 3px; color: var(--light); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 32px; margin: 0 auto; }

.site-nav a { position: relative; color: #62616e; font-size: 14px; font-weight: 500; transition: color .2s ease; }

.site-nav a::after { position: absolute; right: 50%; bottom: -9px; left: 50%; height: 2px; border-radius: 99px; background: var(--primary); content: ""; transition: left .2s ease, right .2s ease; }

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

.site-nav a:hover::after { right: 0; left: 0; }

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 25px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 650;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease, background .2s ease;
}

.button svg { width: 21px; height: 21px; }

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

.button--small { min-height: 44px; padding: 0 19px; border-radius: 14px; font-size: 14px; }

.button--primary { color: #fff; background: linear-gradient(135deg, var(--primary), #a08cff); box-shadow: 0 14px 30px rgba(139, 124, 255, .28); }

.button--primary:hover { box-shadow: 0 18px 38px rgba(139, 124, 255, .36); }

.button--ghost { color: var(--ink); background: rgba(255, 255, 255, .72); box-shadow: inset 0 0 0 1px rgba(139, 124, 255, .14); }

.button--white { color: var(--primary-deep); background: #fff; box-shadow: 0 16px 32px rgba(72, 55, 161, .2); }

.hero {
  position: relative;
  min-height: 900px;
  padding: 142px 0 82px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 18%, #f2edff 0, transparent 34%), linear-gradient(180deg, #fdfcff 0%, #f8f6ff 62%, #fbfaff 100%);
}

.hero::before { position: absolute; top: 115px; left: -90px; width: 280px; height: 280px; border: 1px solid rgba(139, 124, 255, .12); border-radius: 50%; content: ""; }

.hero::after { position: absolute; right: 4%; bottom: 7%; width: 150px; height: 150px; border: 1px dashed rgba(229, 164, 78, .35); border-radius: 50%; content: ""; animation: slow-spin 20s linear infinite; }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }

.hero-glow--one { top: 26%; left: 6%; width: 10px; height: 10px; background: var(--orange); box-shadow: 0 0 32px 10px rgba(229, 164, 78, .2); }

.hero-glow--two { right: 7%; bottom: 28%; width: 12px; height: 12px; background: var(--pink); box-shadow: 0 0 36px 10px rgba(229, 139, 180, .2); }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 42px; }

.hero-copy { padding-top: 10px; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; border: 1px solid rgba(139, 124, 255, .13); border-radius: 999px; color: var(--primary-deep); background: rgba(255, 255, 255, .7); font-size: 12px; font-weight: 650; letter-spacing: .04em; box-shadow: 0 8px 24px rgba(80, 64, 160, .05); }

.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px var(--primary-soft); }

.hero h1 { margin: 25px 0 23px; font-size: clamp(48px, 5.1vw, 72px); line-height: 1.12; letter-spacing: -.055em; }

.hero h1 em { color: var(--primary); font-style: normal; }

.hero-lead { max-width: 590px; margin: 0; color: #6c6a79; font-size: 18px; line-height: 1.9; }

.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 27px; color: #777583; font-size: 13px; }

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

.check { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; color: var(--primary); background: var(--primary-soft); font-size: 11px; font-style: normal; font-weight: 800; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 680px; }

.hero-visual::before { position: absolute; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 124, 255, .13), rgba(139, 124, 255, .03) 56%, transparent 57%); content: ""; }

.orbit { position: absolute; border: 1px solid rgba(139, 124, 255, .14); border-radius: 50%; }

.orbit::before { position: absolute; top: 10%; left: 15%; width: 11px; height: 11px; border-radius: 50%; background: #f6c663; box-shadow: 0 0 0 8px rgba(246, 198, 99, .14); content: ""; }

.orbit--one { width: 610px; height: 610px; transform: rotate(-20deg); }

.orbit--two { width: 475px; height: 475px; border-style: dashed; transform: rotate(30deg); }

.orbit--two::before { top: auto; right: 3%; bottom: 18%; left: auto; background: var(--pink); box-shadow: 0 0 0 8px rgba(229, 139, 180, .13); }

.phone-frame { position: relative; z-index: 3; width: 326px; padding: 10px; border: 1px solid rgba(255, 255, 255, .75); border-radius: 50px; background: linear-gradient(145deg, #34323d, #16151a); box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.14); transform: rotate(1.2deg); }

.phone-speaker { position: absolute; z-index: 5; top: 18px; left: 50%; width: 82px; height: 21px; border-radius: 0 0 14px 14px; background: #19181d; transform: translateX(-50%); }

.phone-screen { position: relative; height: 650px; overflow: hidden; border-radius: 41px; background: #fafafc; }

.phone-status { display: flex; align-items: center; justify-content: space-between; height: 38px; padding: 0 22px; color: #35333c; font-size: 10px; font-weight: 800; }

.status-icons { letter-spacing: 2px; }

.app-head { display: flex; align-items: center; justify-content: space-between; padding: 13px 18px 16px; background: linear-gradient(180deg, #f0edff 0%, #fafafc 100%); }

.app-date { color: #8b8997; font-size: 9px; }

.app-head h3 { margin: 6px 0 0; font-size: 18px; }

.app-head h3 b { display: inline-block; margin-left: 5px; padding: 4px 7px; border-radius: 99px; color: var(--blue); background: var(--blue-soft); font-size: 8px; vertical-align: middle; }

.app-head button { width: 34px; height: 34px; border: 0; border-radius: 50%; color: #888694; background: #fff; box-shadow: 0 6px 16px rgba(47, 47, 56, .07); }

.summary-card { margin: 0 14px; padding: 15px; border-radius: 21px; background: #fff; box-shadow: 0 8px 28px rgba(47, 47, 56, .05); }

.summary-title { display: flex; justify-content: space-between; align-items: center; }

.summary-title strong { font-size: 12px; }

.summary-title span { color: #aaa8b6; font-size: 8px; }

.summary-data { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 14px; }

.summary-data > div { display: flex; align-items: center; flex-direction: column; gap: 6px; }

.summary-data span { display: flex; align-items: center; color: #8d8b99; font-size: 7px; white-space: nowrap; }

.summary-data strong { font-size: 11px; }

.summary-data small { color: #8d8b99; font-size: 7px; font-weight: 500; }

.dot { display: inline-block; flex: 0 0 auto; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; }

.dot--pink { background: var(--pink); }
.dot--blue { background: var(--blue); }
.dot--green { background: var(--green); }
.dot--purple { background: var(--primary); }

.quick-head { display: flex; align-items: center; justify-content: space-between; padding: 19px 17px 9px; }

.quick-head strong { font-size: 12px; }

.quick-head span { color: #aaa8b6; font-size: 7px; }

.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 14px; }

.quick-item { position: relative; display: flex; align-items: center; min-width: 0; padding: 12px 5px 10px; flex-direction: column; border-radius: 19px; background: #fff; box-shadow: 0 8px 22px rgba(47, 47, 56, .045); }

.quick-item > b { position: absolute; top: 6px; right: 7px; display: flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 50%; color: var(--primary); background: #f8f7fa; font-size: 10px; }

.app-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 12px; }

.app-icon svg { width: 17px; height: 17px; }

.app-icon--pink { color: var(--pink); background: var(--pink-soft); }
.app-icon--blue { color: var(--blue); background: var(--blue-soft); }
.app-icon--orange { color: var(--orange); background: var(--orange-soft); }

.quick-item strong { max-width: 100%; margin-top: 7px; overflow: hidden; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }

.quick-item small { max-width: 100%; margin-top: 4px; overflow: hidden; color: #aaa8b6; font-size: 6.5px; text-overflow: ellipsis; white-space: nowrap; }

.timeline-mini { padding: 17px 17px 55px; }

.timeline-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }

.timeline-label strong { font-size: 11px; }

.timeline-label span { color: var(--primary); font-size: 7px; }

.timeline-row { position: relative; display: grid; grid-template-columns: 34px 10px 1fr; align-items: center; gap: 7px; min-height: 48px; }

.timeline-row::before { position: absolute; top: 29px; bottom: -22px; left: 38px; width: 1px; background: #eceaf2; content: ""; }

.timeline-row:last-child::before { display: none; }

.timeline-row time { color: #aaa8b6; font-size: 7px; }

.line-dot { position: relative; z-index: 1; width: 7px; height: 7px; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px currentColor; }

.line-dot--purple { color: var(--primary); background: var(--primary); }
.line-dot--green { color: var(--green); background: var(--green); }

.timeline-row span { display: flex; flex-direction: column; gap: 3px; }

.timeline-row strong { font-size: 8px; }

.timeline-row small { color: #9a98a6; font-size: 7px; }

.app-tabbar { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); height: 55px; padding-top: 5px; border-top: 1px solid #f0eef3; background: rgba(255, 255, 255, .94); }

.app-tabbar span { display: flex; align-items: center; gap: 3px; flex-direction: column; color: #aaa8b6; font-size: 13px; }

.app-tabbar span.active { color: var(--primary); }

.app-tabbar small { font-size: 7px; }

.float-card { position: absolute; z-index: 6; display: flex; align-items: center; gap: 11px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.8); border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 20px 45px rgba(62, 50, 120, .14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.float-card > span:not(.float-icon) { display: flex; flex-direction: column; gap: 4px; }

.float-card small { color: var(--muted); font-size: 9px; }

.float-card strong { font-size: 11px; white-space: nowrap; }

.float-card--feed { top: 108px; left: -10px; animation: float 4.8s ease-in-out infinite; }

.float-card--feed > i { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; margin-left: 5px; border-radius: 50%; color: #fff; background: var(--green); font-size: 10px; font-style: normal; }

.float-icon { display: flex; align-items: center; justify-content: center; width: 39px; height: 39px; border-radius: 13px; }

.float-icon svg { width: 19px; height: 19px; }

.float-icon--pink { color: var(--pink); background: var(--pink-soft); }

.float-card--family { right: -20px; bottom: 105px; animation: float 5.4s 1s ease-in-out infinite; }

.avatar-stack { display: flex !important; flex-direction: row !important; }

.avatar-stack span { display: flex; align-items: center; justify-content: center; width: 31px; height: 31px; margin-left: -8px; border: 2px solid #fff; border-radius: 50%; color: #fff; background: var(--primary); font-size: 9px; font-weight: 700; }

.avatar-stack span:first-child { margin-left: 0; background: var(--pink); }
.avatar-stack span:last-child { background: var(--orange); }

.trust-bar { position: relative; z-index: 2; border-top: 1px solid rgba(139, 124, 255, .08); border-bottom: 1px solid rgba(139, 124, 255, .08); background: rgba(255,255,255,.72); }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 30px 0; }

.trust-grid div { display: flex; align-items: baseline; justify-content: center; gap: 10px; border-right: 1px solid var(--line); }

.trust-grid div:last-child { border: 0; }

.trust-grid strong { color: var(--primary); font-size: 20px; }

.trust-grid span { color: var(--muted); font-size: 13px; }

.section { position: relative; padding: 120px 0; }

.section--soft { background: #f6f4fb; }

.section-heading { max-width: 720px; margin: 0 auto 60px; text-align: center; }

.section-heading--row { display: flex; align-items: end; justify-content: space-between; max-width: none; text-align: left; }

.section-kicker { display: block; margin-bottom: 15px; color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: .19em; }

.section h2 { margin: 0; font-size: clamp(35px, 4vw, 50px); line-height: 1.25; letter-spacing: -.04em; }

.section-heading > p { max-width: 560px; margin: 20px auto 0; color: var(--muted); line-height: 1.9; }

.section-heading--row > p { max-width: 420px; margin: 0 0 4px 50px; }

.bento-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; }

.bento-card { position: relative; min-height: 410px; padding: 38px; overflow: hidden; border: 1px solid rgba(139, 124, 255, .07); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }

.bento-card--overview, .bento-card--baby { background: linear-gradient(145deg, #fff, #fbfaff); }

.bento-card--timeline { min-height: 455px; }

.bento-card--baby { min-height: 330px; }

.card-copy { position: relative; z-index: 2; max-width: 500px; }

.number-tag { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 26px; border-radius: 99px; color: var(--primary); background: var(--primary-soft); font-size: 10px; font-weight: 800; }

.card-copy h3 { margin: 16px 0 12px; font-size: 25px; letter-spacing: -.02em; }

.card-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.mini-records { position: absolute; right: 25px; bottom: -9px; left: 25px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; padding: 26px 22px 36px; border-radius: 30px 30px 0 0; background: #f8f7fb; transform: rotate(-1.3deg); }

.mini-record { position: relative; display: flex; align-items: center; justify-content: center; height: 112px; flex-direction: column; gap: 10px; border-radius: 23px; background: #fff; box-shadow: 0 10px 24px rgba(47,47,56,.05); }

.mini-record svg { width: 28px; height: 28px; }

.mini-record b { color: var(--ink); font-size: 12px; }

.mini-record i { position: absolute; top: 8px; right: 9px; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: #f6f5f8; font-size: 11px; font-style: normal; }

.mini-record--pink { color: var(--pink); }
.mini-record--blue { color: var(--blue); }
.mini-record--purple { color: var(--primary); }
.mini-record--green { color: var(--green); }

.donut-wrap { position: absolute; right: 28px; bottom: 32px; left: 28px; display: flex; align-items: center; justify-content: center; gap: 30px; }

.donut { display: grid; width: 140px; height: 140px; place-items: center; border-radius: 50%; background: conic-gradient(var(--pink) 0 35%, var(--blue) 35% 75%, var(--green) 75% 84%, #f0eef5 84%); }

.donut::after { grid-area: 1/1; width: 94px; height: 94px; border-radius: 50%; background: #fff; content: ""; }

.donut > span { position: relative; z-index: 1; grid-area: 1/1; display: flex; align-items: center; flex-direction: column; }

.donut strong { font-size: 27px; }

.donut small { color: var(--muted); font-size: 9px; }

.donut-legend { display: flex; flex-direction: column; gap: 13px; color: var(--muted); font-size: 11px; }

.donut-legend span { display: flex; align-items: center; }

.feature-timeline { position: absolute; right: 36px; bottom: 28px; left: 36px; padding: 12px 20px; border-radius: 27px; background: #f8f7fb; }

.feature-timeline > div, .large-timeline > div { position: relative; display: grid; grid-template-columns: 52px 46px 1fr; align-items: center; gap: 14px; min-height: 74px; }

.feature-timeline > div::before, .large-timeline > div::before { position: absolute; top: 49px; bottom: -25px; left: 74px; width: 1px; background: #e4e1eb; content: ""; }

.feature-timeline > div:last-child::before, .large-timeline > div:last-child::before { display: none; }

.feature-timeline time { color: var(--muted); font-size: 11px; }

.timeline-badge { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 15px; }

.timeline-badge svg { width: 21px; height: 21px; }

.timeline-badge--orange { color: var(--orange); background: var(--orange-soft); }
.timeline-badge--blue { color: var(--blue); background: var(--blue-soft); }
.timeline-badge--purple { color: var(--primary); background: var(--purple-soft); }
.timeline-badge--green { color: var(--green); background: var(--green-soft); }

.feature-timeline p, .large-timeline p { display: flex; margin: 0; flex-direction: column; gap: 6px; }

.feature-timeline p strong { font-size: 13px; }

.feature-timeline p small { color: var(--muted); font-size: 10px; }

.baby-switch { position: absolute; right: 35px; bottom: 40px; left: 35px; display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 25px; background: #f7f6fa; }

.baby-switch > div:nth-child(2) { display: flex; flex: 1; flex-direction: column; gap: 4px; }

.baby-switch strong { font-size: 14px; }

.baby-switch small { color: var(--muted); font-size: 10px; }

.baby-avatar { position: relative; display: flex; align-items: center; justify-content: center; width: 55px; height: 55px; border: 3px solid #fff; border-radius: 50%; background: var(--blue-soft); box-shadow: 0 0 0 2px var(--primary); }

.baby-avatar > i { position: absolute; right: -2px; bottom: -1px; display: flex; align-items: center; justify-content: center; width: 18px; height: 18px; border: 2px solid #fff; border-radius: 50%; color: #fff; background: var(--primary); font-size: 8px; font-style: normal; }

.switch-arrow { color: var(--primary); font-size: 23px; }

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

.record-card { position: relative; min-height: 288px; padding: 30px 27px; overflow: hidden; border: 1px solid rgba(139,124,255,.06); border-radius: 30px; background: #fff; box-shadow: 0 9px 30px rgba(47, 47, 56, .04); transition: transform .25s ease, box-shadow .25s ease; }

.record-card::after { position: absolute; right: -32px; bottom: -38px; width: 100px; height: 100px; border-radius: 50%; background: var(--primary-soft); opacity: .38; content: ""; transition: transform .35s ease; }

.record-card:hover { z-index: 1; box-shadow: var(--shadow-md); transform: translateY(-7px); }

.record-card:hover::after { transform: scale(1.35); }

.record-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 19px; }

.record-icon svg { width: 28px; height: 28px; }

.record-icon--pink { color: var(--pink); background: var(--pink-soft); }
.record-icon--green { color: var(--green); background: var(--green-soft); }
.record-icon--orchid { color: var(--orchid); background: var(--orchid-soft); }
.record-icon--blue { color: var(--blue); background: var(--blue-soft); }
.record-icon--purple { color: var(--primary); background: var(--purple-soft); }
.record-icon--teal { color: var(--teal); background: var(--teal-soft); }
.record-icon--mint { color: var(--mint); background: var(--mint-soft); }
.record-icon--coral { color: var(--coral); background: var(--coral-soft); }

.record-card h3 { margin: 20px 0 10px; font-size: 19px; }

.record-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.record-meta { position: absolute; z-index: 1; bottom: 25px; left: 27px; color: var(--light); font-size: 10px; letter-spacing: .04em; }

.showcase { overflow: hidden; }

.showcase::before { position: absolute; top: 6%; right: -250px; width: 570px; height: 570px; border-radius: 50%; background: radial-gradient(circle, var(--primary-soft), transparent 68%); content: ""; }

.showcase-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 70px; }

.showcase-copy > p { margin: 22px 0 30px; color: var(--muted); line-height: 1.85; }

.demo-tabs { display: flex; flex-direction: column; gap: 9px; }

.demo-tab { display: grid; grid-template-columns: 38px 1fr; padding: 15px 17px; border: 1px solid transparent; border-radius: 18px; text-align: left; background: transparent; cursor: pointer; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }

.demo-tab > span { grid-row: 1 / 3; align-self: center; color: var(--light); font-size: 10px; font-weight: 800; }

.demo-tab b { font-size: 14px; }

.demo-tab small { margin-top: 4px; color: var(--muted); font-size: 11px; }

.demo-tab.active { border-color: rgba(139,124,255,.12); background: #fff; box-shadow: var(--shadow-sm); }

.demo-tab.active > span, .demo-tab.active b { color: var(--primary); }

.demo-stage { position: relative; }

.demo-stage::before { position: absolute; top: 38px; right: -35px; bottom: -35px; left: 45px; border-radius: 38px; background: var(--primary-soft); content: ""; transform: rotate(3deg); }

.demo-window { position: relative; z-index: 1; min-height: 540px; overflow: hidden; border: 1px solid rgba(139,124,255,.1); border-radius: 34px; background: #fff; box-shadow: var(--shadow-lg); }

.demo-topbar { display: flex; align-items: center; height: 52px; padding: 0 20px; border-bottom: 1px solid var(--line); color: var(--light); font-size: 10px; }

.demo-topbar > span { margin: auto; }

.demo-lights { display: flex; gap: 6px; }

.demo-lights i { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); }
.demo-lights i:nth-child(2) { background: #f6c663; }
.demo-lights i:nth-child(3) { background: var(--green); }

.demo-panel { padding: 31px; animation: panel-in .35s ease both; }

.demo-panel-head { display: flex; align-items: center; justify-content: space-between; }

.demo-panel-head > span { display: flex; flex-direction: column; gap: 6px; }

.demo-panel-head small { color: var(--muted); font-size: 10px; }

.demo-panel-head strong { font-size: 22px; }

.demo-panel-head > em { padding: 7px 11px; border-radius: 99px; color: var(--primary); background: var(--primary-soft); font-size: 9px; font-style: normal; }

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }

.metric-row > div { display: flex; align-items: center; gap: 11px; padding: 16px; border: 1px solid #f1eff5; border-radius: 20px; }

.metric-icon { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 39px; height: 39px; border-radius: 13px; }

.metric-icon svg { width: 19px; height: 19px; }

.metric-icon--pink { color: var(--pink); background: var(--pink-soft); }
.metric-icon--blue { color: var(--blue); background: var(--blue-soft); }
.metric-icon--purple { color: var(--primary); background: var(--purple-soft); }

.metric-row p { display: flex; margin: 0; flex-direction: column; gap: 3px; }

.metric-row small { color: var(--muted); font-size: 9px; }

.metric-row strong { font-size: 18px; }

.metric-row strong i { color: var(--muted); font-size: 8px; font-style: normal; font-weight: 500; }

.chart-card { margin-top: 19px; padding: 20px 22px 16px; border-radius: 24px; background: #f8f7fb; }

.chart-head { display: flex; align-items: center; justify-content: space-between; }

.chart-head strong { font-size: 12px; }

.chart-head span { display: flex; align-items: center; color: var(--muted); font-size: 8px; }

.chart-head .dot + .dot { margin-left: 12px; }

.chart-bars { display: flex; align-items: end; justify-content: space-between; height: 180px; padding: 24px 6px 0; border-bottom: 1px solid #e5e2eb; background-image: linear-gradient(#ece9f1 1px, transparent 1px); background-size: 100% 45px; }

.chart-bars span { width: 16px; height: var(--h); border-radius: 7px 7px 2px 2px; background: var(--c); opacity: .84; }

.chart-axis { display: flex; justify-content: space-between; padding-top: 9px; color: var(--light); font-size: 7px; }

.large-timeline { margin-top: 22px; padding: 6px 17px; border-radius: 24px; background: #f8f7fb; }

.large-timeline > div { grid-template-columns: 60px 46px 1fr; min-height: 86px; }

.large-timeline > div::before { top: 55px; bottom: -30px; left: 82px; }

.large-timeline time { display: flex; color: var(--ink); flex-direction: column; gap: 5px; font-size: 11px; font-weight: 700; }

.large-timeline time small { color: var(--light); font-size: 7px; font-weight: 400; }

.large-timeline p strong { font-size: 13px; }

.large-timeline p strong i { margin-left: 8px; color: var(--primary); font-size: 10px; font-style: normal; }

.large-timeline p small { color: var(--muted); font-size: 9px; }

.online { display: inline-flex; align-items: center; gap: 5px; color: var(--green) !important; background: var(--green-soft) !important; }

.online i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.family-preview-card { margin-top: 23px; padding: 18px; border-radius: 25px; background: #f8f7fb; }

.family-baby, .member-list > div, .invite-row { display: flex; align-items: center; gap: 13px; }

.family-baby { padding: 7px 5px 18px; }

.family-baby > span { display: grid; width: 51px; height: 51px; place-items: center; border-radius: 17px; background: var(--blue-soft); font-size: 24px; }

.family-baby p, .member-list p, .invite-row p { display: flex; flex: 1; margin: 0; flex-direction: column; gap: 4px; }

.family-baby strong, .member-list strong, .invite-row strong { font-size: 12px; }

.family-baby small, .member-list small, .invite-row small { color: var(--muted); font-size: 8px; }

.family-baby > em { padding: 6px 9px; border-radius: 99px; color: var(--primary); background: var(--primary-soft); font-size: 8px; font-style: normal; }

.member-list { padding: 4px 15px; border-radius: 20px; background: #fff; }

.member-list > div { min-height: 68px; border-bottom: 1px solid var(--line); }

.member-list > div:last-child { border: 0; }

.member-avatar { display: grid; flex: 0 0 auto; width: 35px; height: 35px; place-items: center; border: 2px solid #fff; border-radius: 50%; color: #fff; font-size: 9px; font-weight: 700; box-shadow: 0 4px 12px rgba(47,47,56,.1); }

.member-avatar--mom { background: linear-gradient(135deg, #e58bb4, #efaecc); }
.member-avatar--dad { background: linear-gradient(135deg, #6fa3e8, #91bcef); }
.member-avatar--grandma { background: linear-gradient(135deg, #e5a44e, #efc171); }

.member-list strong i { display: inline-block; margin-left: 5px; padding: 3px 7px; border-radius: 99px; color: var(--primary); background: var(--primary-soft); font-size: 7px; font-style: normal; }

.member-list > div > em { color: var(--light); font-size: 7px; font-style: normal; }

.invite-row { margin-top: 12px; padding: 13px 12px; }

.invite-row > span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px dashed var(--primary); border-radius: 50%; color: var(--primary); }

.invite-row > b { color: var(--primary); font-size: 9px; }

.family-section { overflow: hidden; background: linear-gradient(180deg, #f8f6ff, #fbfaff); }

.family-blob { position: absolute; top: 12%; left: -190px; width: 480px; height: 480px; border-radius: 43% 57% 65% 35% / 45% 43% 57% 55%; background: #efebff; transform: rotate(20deg); }

.family-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; }

.collab-card { position: relative; max-width: 500px; padding: 25px; border: 1px solid rgba(139,124,255,.1); border-radius: 36px; background: #fff; box-shadow: var(--shadow-lg); }

.collab-card::before { position: absolute; z-index: -1; top: -25px; right: -25px; width: 100px; height: 100px; border-radius: 26px; background: var(--orange-soft); content: ""; transform: rotate(12deg); }

.collab-head { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }

.collab-head p, .message p { display: flex; flex: 1; margin: 0; flex-direction: column; gap: 4px; }

.collab-head strong { font-size: 15px; }

.collab-head small { color: var(--muted); font-size: 10px; }

.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px var(--green-soft); }

.message { display: flex; align-items: center; gap: 12px; max-width: 88%; margin-top: 17px; padding: 14px; border-radius: 20px; background: #f8f7fb; }

.message--right { margin-left: auto; background: var(--primary-soft); }

.message strong { font-size: 11px; }

.message p span { color: var(--muted); font-size: 10px; }

.message > i { align-self: end; color: var(--light); font-size: 8px; font-style: normal; }

.sync-pill { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 22px; padding: 10px; border-radius: 99px; color: var(--green); background: var(--green-soft); font-size: 10px; }

.family-copy > p { margin: 23px 0 28px; color: var(--muted); line-height: 1.9; }

.feature-list { display: flex; margin: 0; padding: 0; flex-direction: column; gap: 18px; list-style: none; }

.feature-list li { display: flex; align-items: flex-start; gap: 13px; }

.feature-list li > span { display: grid; flex: 0 0 auto; width: 25px; height: 25px; place-items: center; margin-top: 2px; border-radius: 50%; color: var(--primary); background: var(--primary-soft); font-size: 11px; font-weight: 800; }

.feature-list div { display: flex; flex-direction: column; gap: 5px; }

.feature-list strong { font-size: 14px; }

.feature-list small { color: var(--muted); font-size: 12px; }

.privacy-section { padding-top: 0; }

.privacy-card { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 55px; padding: 55px; overflow: hidden; border-radius: 42px; color: #fff; background: linear-gradient(135deg, #393641, #29272f); box-shadow: 0 30px 70px rgba(35, 32, 43, .16); }

.privacy-card::after { position: absolute; right: -100px; bottom: -160px; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.018); content: ""; }

.privacy-copy { display: flex; align-items: flex-start; gap: 22px; }

.privacy-icon { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 64px; height: 64px; border-radius: 21px; color: #fff; background: rgba(139,124,255,.3); }

.privacy-icon svg { width: 31px; height: 31px; }

.privacy-copy .section-kicker { color: #b9adff; }

.privacy-copy h2 { font-size: clamp(31px, 3vw, 42px); }

.privacy-copy p { max-width: 570px; margin: 20px 0 0; color: #b9b5c3; font-size: 14px; line-height: 1.9; }

.privacy-points { position: relative; z-index: 1; display: flex; justify-content: center; flex-direction: column; gap: 13px; }

.privacy-points > div { display: flex; align-items: center; gap: 15px; padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.05); backdrop-filter: blur(5px); }

.privacy-points > div > span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 12px; color: #c7bfff; background: rgba(139,124,255,.18); font-size: 9px; font-weight: 800; }

.privacy-points p { display: flex; margin: 0; flex-direction: column; gap: 3px; }

.privacy-points strong { font-size: 12px; }

.privacy-points small { color: #aaa5b4; font-size: 9px; }

.scenarios { padding-top: 10px; }

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

.scenario-card { position: relative; min-height: 310px; padding: 36px; overflow: hidden; border: 1px solid rgba(139,124,255,.07); border-radius: 34px; background: #fff; box-shadow: var(--shadow-sm); }

.scenario-card::before { position: absolute; top: -40px; right: -35px; width: 130px; height: 130px; border-radius: 50%; background: var(--primary-soft); content: ""; }

.scenario-card > span { position: relative; display: grid; width: 60px; height: 60px; place-items: center; border-radius: 20px; background: #f8f7fb; font-size: 27px; }

.scenario-card h3 { margin: 27px 0 12px; font-size: 22px; }

.scenario-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.scenario-card > small { position: absolute; bottom: 30px; left: 36px; color: var(--primary); font-size: 11px; font-weight: 700; }

.faq-section { background: #f6f4fb; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }

.faq-intro { position: sticky; top: 130px; align-self: start; }

.faq-intro p { margin-top: 20px; color: var(--muted); font-size: 13px; line-height: 1.8; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item { padding: 0 24px; border: 1px solid transparent; border-radius: 23px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }

.faq-item.open { border-color: rgba(139,124,255,.12); box-shadow: var(--shadow-sm); }

.faq-item button { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 76px; padding: 0; border: 0; text-align: left; background: transparent; cursor: pointer; }

.faq-item button span { font-size: 15px; font-weight: 650; }

.faq-item button i { display: grid; flex: 0 0 auto; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--primary); background: var(--primary-soft); font-size: 17px; font-style: normal; transition: transform .25s ease; }

.faq-item.open button i { transform: rotate(45deg); }

.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }

.faq-answer p { min-height: 0; margin: 0; overflow: hidden; color: var(--muted); font-size: 13px; line-height: 1.85; }

.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.faq-item.open .faq-answer p { padding-bottom: 23px; }

.cta-section { padding: 100px 0; background: #f6f4fb; }

.cta-card { position: relative; display: grid; grid-template-columns: 1fr 240px; align-items: center; gap: 80px; padding: 65px 80px; overflow: hidden; border-radius: 48px; color: #fff; background: linear-gradient(135deg, #8070f5 0%, #9b85ff 58%, #ad96ff 100%); box-shadow: 0 35px 80px rgba(108, 89, 211, .28); }

.cta-card::before { position: absolute; top: -120px; left: 40%; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.035), 0 0 0 100px rgba(255,255,255,.025); content: ""; }

.cta-copy { position: relative; z-index: 1; }

.cta-copy .section-kicker { color: #e3ddff; }

.cta-copy h2 { max-width: 650px; font-size: clamp(34px, 4vw, 50px); }

.cta-copy p { margin: 18px 0 27px; color: #edeaff; }

.copy-button.copied { color: var(--green); }

.mini-program-card { position: relative; z-index: 1; display: flex; align-items: center; padding: 24px 20px; flex-direction: column; border: 1px solid rgba(255,255,255,.35); border-radius: 31px; color: var(--ink); background: rgba(255,255,255,.92); box-shadow: 0 24px 55px rgba(67,52,150,.22); transform: rotate(2.5deg); }

.mini-program-logo { padding: 5px; border: 1px solid #f0eef3; border-radius: 26px; background: #fff; }

.mini-program-logo img { width: 96px; height: 96px; border-radius: 21px; }

.mini-program-card--qr { padding-top: 17px; }

.mini-program-qr { padding: 5px; border: 1px solid #eeecf2; border-radius: 23px; background: #fff; }

.mini-program-qr img { width: 164px; height: 164px; border-radius: 18px; }

.mini-program-card strong { margin-top: 13px; font-size: 14px; }

.mini-program-card small { margin-top: 4px; color: var(--muted); font-size: 9px; }

.mini-program-card > span { margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--light); font-size: 8px; }

.cta-corn { position: absolute; color: rgba(255,255,255,.24); }

.cta-corn--one { top: 30px; right: 40%; font-size: 45px; transform: rotate(18deg); }

.cta-corn--two { right: 30px; bottom: 28px; font-size: 24px; }

.site-footer { padding: 70px 0 25px; background: #fff; }

.footer-main { display: flex; justify-content: space-between; gap: 80px; padding-bottom: 50px; }

.footer-brand { max-width: 400px; }

.footer-brand p { margin: 22px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }

.footer-contact { display: inline-block; margin-top: 13px; color: var(--primary); font-size: 12px; font-weight: 650; }

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

.footer-links > div { display: flex; min-width: 80px; flex-direction: column; gap: 14px; }

.footer-links strong { margin-bottom: 3px; font-size: 13px; }

.footer-links a { color: var(--muted); font-size: 12px; }

.footer-links a:hover { color: var(--primary); }

.footer-bottom { display: flex; justify-content: space-between; padding-top: 23px; border-top: 1px solid var(--line); color: var(--light); font-size: 10px; }

.footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }

.footer-legal a:hover { color: var(--primary); }

/* Legal documents */

.legal-page { background: #f8f7fc; }

.legal-header { position: relative; z-index: 5; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }

.legal-nav { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }

.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 600; }

.legal-back:hover { color: var(--primary); }

.legal-main { padding: 72px 0 100px; }

.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 790px); align-items: start; justify-content: space-between; gap: 80px; }

.legal-aside { position: sticky; top: 36px; }

.legal-aside > span { color: var(--primary); font-size: 10px; font-weight: 800; letter-spacing: .18em; }

.legal-aside h1 { margin: 13px 0 11px; font-size: 38px; letter-spacing: -.04em; }

.legal-aside > p { margin: 0; color: var(--light); font-size: 11px; line-height: 1.8; }

.legal-aside nav { display: flex; margin-top: 31px; padding-top: 23px; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); }

.legal-aside nav a { padding: 7px 10px; border-radius: 9px; color: var(--muted); font-size: 11px; transition: color .2s ease, background .2s ease; }

.legal-aside nav a:hover { color: var(--primary); background: var(--primary-soft); }

.legal-article { padding: 52px 58px; border: 1px solid rgba(139,124,255,.07); border-radius: 36px; background: #fff; box-shadow: var(--shadow-sm); }

.legal-intro { margin-bottom: 52px; padding: 24px 26px; border-left: 4px solid var(--primary); border-radius: 0 18px 18px 0; background: var(--primary-tint); }

.legal-intro strong { font-size: 16px; }

.legal-intro p { margin: 9px 0 0 !important; }

.legal-article section { scroll-margin-top: 30px; }

.legal-article section + section { margin-top: 47px; padding-top: 47px; border-top: 1px solid var(--line); }

.legal-article h2 { margin: 0 0 20px; font-size: 22px; line-height: 1.4; letter-spacing: -.02em; }

.legal-article h3 { margin: 29px 0 11px; font-size: 15px; }

.legal-article p { margin: 0 0 14px; color: #62606d; font-size: 13px; line-height: 2; }

.legal-article p:last-child { margin-bottom: 0; }

.legal-article ol, .legal-article ul { margin: 13px 0 18px; padding-left: 23px; color: #62606d; font-size: 13px; line-height: 2; }

.legal-article li { padding-left: 5px; }

.legal-article a { color: var(--primary-deep); font-weight: 600; word-break: break-all; }

.legal-notice { margin: 17px 0; padding: 17px 19px; border: 1px solid #f1d8a9; border-radius: 16px; color: #8b6329; background: #fff8eb; font-size: 13px; line-height: 1.8; }

.legal-table { margin: 20px 0 23px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; }

.legal-table > div { display: grid; grid-template-columns: .8fr 1.2fr 1.2fr; }

.legal-table > div + div { border-top: 1px solid var(--line); }

.legal-table strong, .legal-table span { padding: 13px 15px; border-right: 1px solid var(--line); font-size: 11px; line-height: 1.7; }

.legal-table strong:last-child, .legal-table span:last-child { border-right: 0; }

.legal-table > div:first-child { color: var(--ink); background: #f7f6fa; }

.legal-table span { color: var(--muted); }

.legal-footer { padding: 25px 0; border-top: 1px solid var(--line); color: var(--light); background: #fff; font-size: 10px; }

.legal-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.legal-footer .container > span:last-child { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }

.legal-footer a:hover { color: var(--primary); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s cubic-bezier(.25,.8,.35,1); }

.reveal--delay { transition-delay: .16s; }
.reveal--delay-sm { transition-delay: .08s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@keyframes slow-spin { to { transform: rotate(360deg); } }

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

@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 5px; }
  .hero h1 { font-size: 52px; }
  .hero-visual { transform: scale(.9); }
  .record-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { gap: 38px; }
  .family-grid { gap: 55px; }
}

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

  .menu-toggle { display: flex; z-index: 2; align-items: center; justify-content: center; width: 44px; height: 44px; margin-left: auto; padding: 0; flex-direction: column; gap: 5px; border: 0; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }

  .menu-toggle span { width: 18px; height: 2px; border-radius: 99px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav { position: fixed; top: 70px; right: 20px; left: 20px; display: flex; align-items: stretch; padding: 22px; flex-direction: column; gap: 0; border: 1px solid rgba(139,124,255,.1); border-radius: 24px; background: rgba(255,255,255,.97); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }

  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }

  .site-nav a { padding: 13px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }

  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; margin: 0 auto; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { margin: -5px auto 0; transform: scale(.9); }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--overview, .bento-card--baby { min-height: 410px; }

  .section-heading--row { display: block; text-align: center; }
  .section-heading--row > p { margin: 20px auto 0; }

  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-copy { max-width: 700px; text-align: center; margin-inline: auto; }
  .demo-tabs { display: grid; grid-template-columns: repeat(3, 1fr); }
  .demo-tab { grid-template-columns: 1fr; text-align: center; }
  .demo-tab > span { grid-row: auto; }

  .family-grid { grid-template-columns: 1fr; }
  .collab-card { margin-inline: auto; }
  .family-copy { max-width: 700px; }

  .privacy-card { grid-template-columns: 1fr; }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-card { min-height: 260px; }

  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; text-align: center; }

  .cta-card { padding: 55px; grid-template-columns: 1fr 210px; gap: 40px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .nav-wrap { height: 70px; }
  .brand img { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 8px; }

  .hero { padding: 112px 0 30px; }
  .hero h1 { margin-top: 20px; font-size: 40px; line-height: 1.17; }
  .hero-lead { font-size: 15px; line-height: 1.8; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 11px 15px; font-size: 11px; }
  .hero-visual { width: 100%; min-height: 625px; margin-top: -25px; transform: scale(.76); }
  .phone-frame { flex: 0 0 auto; }
  .float-card--feed { left: -60px; }
  .float-card--family { right: -70px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 18px 0; }
  .trust-grid div { padding: 12px 0; }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-grid strong { font-size: 17px; }
  .trust-grid span { font-size: 11px; }

  .section { padding: 86px 0; }
  .section-heading { margin-bottom: 42px; }
  .section h2 { font-size: 34px; }
  .section-heading > p { font-size: 14px; }

  .bento-card { min-height: 465px; padding: 29px; border-radius: 31px; }
  .bento-card--overview { min-height: 450px; }
  .bento-card--timeline { min-height: 480px; }
  .bento-card--baby { min-height: 360px; }
  .card-copy h3 { font-size: 22px; }
  .mini-records { grid-template-columns: repeat(2, 1fr); }
  .mini-record { height: 85px; }
  .donut-wrap { flex-direction: column; gap: 18px; }
  .donut-legend { display: grid; grid-template-columns: repeat(3, auto); gap: 8px; }
  .feature-timeline { right: 22px; left: 22px; }

  .record-grid { grid-template-columns: 1fr; }
  .record-card { min-height: 245px; }

  .demo-tabs { grid-template-columns: 1fr; }
  .demo-tab { grid-template-columns: 35px 1fr; text-align: left; }
  .demo-tab > span { grid-row: 1 / 3; }
  .demo-stage { margin-top: 15px; }
  .demo-stage::before { right: -10px; left: 20px; }
  .demo-window { min-height: 600px; border-radius: 27px; }
  .demo-panel { padding: 23px 17px; }
  .demo-panel-head strong { font-size: 18px; }
  .metric-row { grid-template-columns: 1fr; }
  .metric-row > div { min-height: 65px; }
  .chart-bars { height: 140px; }
  .chart-bars span { width: 10px; }
  .large-timeline { padding: 4px 10px; }
  .large-timeline > div { grid-template-columns: 51px 40px 1fr; gap: 8px; }
  .large-timeline > div::before { left: 70px; }
  .large-timeline .timeline-badge { width: 37px; height: 37px; }
  .family-preview-card { padding: 13px; }
  .member-list { padding-inline: 9px; }

  .family-grid { gap: 55px; }
  .collab-card { padding: 19px; border-radius: 29px; }
  .message { max-width: 96%; }

  .privacy-card { gap: 35px; padding: 34px 25px; border-radius: 31px; }
  .privacy-copy { flex-direction: column; }

  .scenario-card { min-height: 290px; padding: 31px; }

  .faq-item { padding-inline: 19px; }
  .faq-item button span { padding-right: 15px; font-size: 14px; }

  .cta-section { padding: 70px 0; }
  .cta-card { padding: 43px 26px; grid-template-columns: 1fr; text-align: center; border-radius: 34px; }
  .cta-copy h2 { font-size: 33px; }
  .copy-button { width: 100%; }
  .mini-program-card { width: 210px; margin: 0 auto; transform: none; }

  .footer-main { flex-direction: column; gap: 42px; }
  .footer-links { justify-content: space-between; gap: 35px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .footer-legal { justify-content: flex-start; gap: 12px 17px; }

  .legal-main { padding: 45px 0 70px; }
  .legal-layout { grid-template-columns: 1fr; gap: 31px; }
  .legal-aside { position: static; }
  .legal-aside h1 { font-size: 33px; }
  .legal-aside nav { display: none; }
  .legal-article { padding: 34px 23px; border-radius: 27px; }
  .legal-intro { margin-bottom: 39px; padding: 20px; }
  .legal-article section + section { margin-top: 37px; padding-top: 37px; }
  .legal-article h2 { font-size: 19px; }
  .legal-table { overflow-x: auto; }
  .legal-table > div { min-width: 650px; }
  .legal-footer .container { align-items: flex-start; flex-direction: column; }
  .legal-footer .container > span:last-child { justify-content: flex-start; gap: 10px 16px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 35px; }
  .hero-visual { margin-top: -55px; margin-bottom: -45px; transform: scale(.66); }
  .donut-legend { grid-template-columns: 1fr; }
  .feature-timeline > div { grid-template-columns: 42px 38px 1fr; gap: 8px; }
  .feature-timeline > div::before { left: 61px; }
  .timeline-badge { width: 36px; height: 36px; }
  .privacy-card { padding-inline: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid rgba(139,124,255,.35); outline-offset: 3px; }
