:root {
  --coral: #ff7a73;
  --coral-dark: #eb665f;
  --honey: #ffa756;
  --cream: #fdfcf9;
  --cream-deep: #f8f0e5;
  --paper: #fffefa;
  --ink: #342d2a;
  --muted: #766e69;
  --sand: #a49b94;
  --line: rgba(69, 52, 42, 0.1);
  --green: #82985a;
  --shadow: 0 24px 70px rgba(110, 73, 42, 0.1);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 224, 177, .2), transparent 29%),
    radial-gradient(circle at 8% 48%, rgba(215, 232, 205, .16), transparent 25%),
    var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::after { content: ""; position: fixed; z-index: 89; inset: 0; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E"); mix-blend-mode: multiply; }
.cursor-glow { position: fixed; z-index: 90; left: 0; top: 0; width: 132px; height: 132px; border-radius: 50%; pointer-events: none; opacity: 0; background: radial-gradient(circle, rgba(255,255,224,.22) 0 5%, rgba(255,203,121,.15) 20%, rgba(255,153,112,.07) 47%, transparent 74%); box-shadow: 0 0 58px rgba(255,176,93,.09); filter: blur(2px); transform: translate3d(-160px,-160px,0) translate(-50%,-50%); transition: width .38s cubic-bezier(.2,.75,.2,1), height .38s cubic-bezier(.2,.75,.2,1), opacity .28s ease, filter .38s ease; will-change: transform; }
.cursor-glow.is-visible { opacity: .68; }
.cursor-glow.is-active { width: 190px; height: 190px; filter: blur(3px) saturate(1.08); }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; background: var(--ink); color: white; padding: 12px 18px; border-radius: 12px; }
.skip-link:focus { top: 16px; }

.page-glow { position: fixed; z-index: -1; width: 40vw; aspect-ratio: 1; border-radius: 50%; filter: blur(120px); opacity: .22; pointer-events: none; will-change: transform; }
.page-glow--one { background: #ffd7b6; top: -18vw; right: -12vw; animation: page-glow-drift-one 16s ease-in-out infinite alternate; }
.page-glow--two { background: #dcebcf; top: 45vh; left: -30vw; animation: page-glow-drift-two 19s -6s ease-in-out infinite alternate; }

.site-header {
  position: fixed; z-index: 50; top: 18px; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px)); height: 68px; padding: 0 12px 0 18px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,.65); border-radius: 22px;
  background: rgba(255, 253, 248, .72); backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 10px 40px rgba(91, 65, 42, .06); opacity: 0; transition: height .3s, background .3s, box-shadow .3s; will-change: transform;
}
.is-ready .site-header { animation: header-arrive .9s .08s cubic-bezier(.16,.78,.22,1) both; }
.site-header.is-scrolled { height: 60px; background: rgba(255, 253, 248, .92); box-shadow: 0 14px 45px rgba(91,65,42,.11); }
.brand { display: inline-flex; gap: 11px; align-items: center; font-weight: 750; letter-spacing: -.02em; }
.brand img { width: 38px; height: 38px; border-radius: 11px; box-shadow: 0 5px 15px rgba(255,122,115,.18); transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s; }
.brand:hover img { transform: rotate(-6deg) scale(1.08); box-shadow: 0 10px 24px rgba(255,122,115,.25); }
.brand span { font-size: 18px; }
.site-nav { display: flex; align-items: center; gap: 38px; font-size: 14px; color: #625a55; }
.site-nav a { position: relative; padding: 8px 0; }
.site-nav a::after { content: ""; position: absolute; left: 50%; bottom: 1px; width: 0; height: 2px; background: var(--coral); transform: translateX(-50%); transition: width .25s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { width: 100%; }
.nav-download { position: relative; overflow: hidden; border: 0; color: white; background: var(--ink); border-radius: 14px; padding: 12px 20px; cursor: pointer; transition: transform .25s, background .25s; }
.nav-download::after { content: ""; position: absolute; inset: -100% -45%; background: linear-gradient(115deg, transparent 37%, rgba(255,255,255,.22) 48%, transparent 59%); transform: translateX(-70%); transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.nav-download:hover::after { transform: translateX(70%); }
.nav-download:hover { transform: translateY(-2px); background: #171311; }

.hero { --hero-scroll: 0px; position: relative; isolation: isolate; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 150px max(7vw, 32px) 100px; padding-left: max(72px, calc((100vw - 1180px) / 2 + 18px)); }
.hero::after { content: ""; position: absolute; z-index: 4; left: 0; right: 0; bottom: -42px; height: 180px; pointer-events: none; background: linear-gradient(to top, rgba(253,252,249,.72), transparent); filter: blur(10px); }
.morning-effects { position: absolute; z-index: 2; inset: 0; overflow: hidden; pointer-events: none; }
.sky-wash { position: absolute; inset: -20%; background: radial-gradient(circle at 74% 38%, rgba(255,247,211,.24), transparent 25%), radial-gradient(circle at 49% 76%, rgba(219,238,205,.11), transparent 28%), linear-gradient(118deg, rgba(255,241,208,.08), rgba(211,234,226,.08) 42%, transparent 70%); background-size: 115% 115%, 120% 120%, 100% 100%; animation: sky-wash-drift 18s ease-in-out infinite alternate; }
.morning-sun { position: absolute; left: -2%; top: -8%; width: 270px; height: 270px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,238,.94) 0 6%, rgba(255,226,168,.43) 17%, rgba(255,183,99,.1) 46%, transparent 72%); filter: blur(2px); animation: morning-breathe 8.5s ease-in-out infinite; }
.morning-sun i { position: absolute; inset: 33%; border-radius: inherit; border: 1px solid rgba(255,238,196,.42); box-shadow: 0 0 28px rgba(255,225,158,.18); animation: sun-core-pulse 4.8s ease-out infinite; }
.light-ray { position: absolute; left: -9%; top: -13%; width: 84%; height: 128%; transform-origin: 0 0; filter: blur(12px); opacity: .18; clip-path: polygon(0 0, 10% 0, 100% 100%, 73% 100%); will-change: transform, opacity; }
.light-ray--one { background: linear-gradient(112deg, rgba(255,247,216,.38), rgba(255,225,167,.13) 54%, transparent 82%); transform: rotate(-3deg); animation: ray-drift-one 13s ease-in-out infinite; }
.light-ray--two { left: 3%; width: 66%; opacity: .13; background: linear-gradient(108deg, rgba(255,255,232,.32), rgba(255,236,191,.11) 56%, transparent 82%); transform: rotate(2deg); animation: ray-drift-two 17s -5s ease-in-out infinite; }
.light-ray--three { left: 16%; width: 52%; opacity: .1; background: linear-gradient(105deg, rgba(255,244,205,.25), rgba(255,224,170,.08) 60%, transparent 84%); transform: rotate(5deg); animation: ray-drift-three 21s -12s ease-in-out infinite; }
.photo-aurora { position: absolute; left: 45%; right: -5%; top: 8%; bottom: 3%; opacity: .38; background: radial-gradient(circle at 52% 28%, rgba(255,245,207,.34), transparent 19%), radial-gradient(circle at 24% 72%, rgba(213,234,195,.16), transparent 23%), radial-gradient(circle at 78% 70%, rgba(255,183,130,.11), transparent 20%); filter: blur(28px); mix-blend-mode: soft-light; animation: photo-aurora-drift 12s ease-in-out infinite alternate; }
.photo-sunbeam { position: absolute; left: 42%; top: -24%; width: 26vw; min-width: 260px; height: 155%; opacity: 0; background: linear-gradient(104deg, transparent 0 30%, rgba(255,248,224,.07) 38%, rgba(255,244,207,.48) 49%, rgba(255,223,160,.13) 58%, transparent 72%); filter: blur(14px); mix-blend-mode: soft-light; will-change: transform, opacity; animation: photo-glint 10.5s cubic-bezier(.22,.61,.36,1) infinite; }
.breeze-trail { position: absolute; border: 1px solid rgba(255,249,224,.32); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; filter: blur(.25px) drop-shadow(0 0 8px rgba(255,224,167,.12)); opacity: 0; }
.breeze-trail--one { width: 360px; height: 118px; right: 12%; top: 29%; transform: rotate(-13deg); animation: breeze-travel 8.6s -1.4s ease-in-out infinite; }
.breeze-trail--two { width: 260px; height: 82px; right: 28%; top: 67%; transform: rotate(9deg); animation: breeze-travel-two 10.2s -6s ease-in-out infinite; }
.leaf-shadow { position: absolute; width: 260px; height: 220px; opacity: .1; filter: blur(8px); background: radial-gradient(ellipse 13% 27% at 20% 30%, #6f8b4d 0 38%, transparent 44%), radial-gradient(ellipse 12% 25% at 43% 18%, #6f8b4d 0 38%, transparent 44%), radial-gradient(ellipse 14% 29% at 55% 52%, #6f8b4d 0 38%, transparent 44%), radial-gradient(ellipse 12% 25% at 78% 37%, #6f8b4d 0 38%, transparent 44%); mix-blend-mode: multiply; }
.leaf-shadow--one { right: 7%; top: 4%; transform: rotate(-23deg); animation: leaf-shadow-breeze 9s ease-in-out infinite alternate; }
.leaf-shadow--two { right: 38%; bottom: -7%; opacity: .075; transform: rotate(18deg) scale(.8); animation: leaf-shadow-breeze-two 12s -4s ease-in-out infinite alternate; }
.light-dust { position: absolute; inset: 0; }
.dust-particle { position: absolute; width: var(--dust-size); height: var(--dust-size); left: var(--dust-x); top: var(--dust-y); border-radius: 50%; background: rgba(255,238,188,var(--dust-alpha)); box-shadow: 0 0 9px rgba(255,191,96,.32); animation: dust-rise var(--dust-duration) var(--dust-delay) ease-in-out infinite; will-change: transform, opacity; }
.dust-particle:nth-child(5n)::after { content: ""; position: absolute; left: 50%; top: 50%; width: 1px; height: 9px; background: rgba(255,250,219,.8); box-shadow: 0 0 7px rgba(255,225,148,.7); transform: translate(-50%,-50%); }
.hero-art { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #fbf5ea; }
.hero-art::after { content: ""; position: absolute; z-index: 3; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(253,252,249,.965) 0%, rgba(253,252,249,.75) 34%, rgba(253,252,249,.12) 66%, rgba(253,252,249,.025) 100%), linear-gradient(0deg, rgba(253,252,249,.32) 0%, transparent 22%); -webkit-mask-image: radial-gradient(ellipse 35% 42% at 6% 82%, rgba(0,0,0,.18) 0%, rgba(0,0,0,.5) 38%, #000 72%); mask-image: radial-gradient(ellipse 35% 42% at 6% 82%, rgba(0,0,0,.5) 0%, rgba(0,0,0,.72) 38%, #000 72%); }
.hero-visual { --visual-x: 0px; --visual-y: 0px; position: absolute; z-index: 0; inset: 0; transform: translate3d(var(--visual-x), calc(var(--visual-y) + var(--hero-scroll)), 0) scale(1.045); will-change: transform; }
.hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-base-image { z-index: 0; }
.hero-depth { --depth-x: 0px; --depth-y: 0px; position: absolute; z-index: 1; inset: 0; opacity: .94; pointer-events: none; will-change: transform; }
.hero-depth--portrait { clip-path: polygon(57% 23%, 79% 23%, 82% 59%, 55% 59%); animation: depth-float-one 7.5s ease-in-out infinite; }
.hero-depth--baby { clip-path: polygon(69% 37%, 98% 38%, 100% 76%, 68% 79%); animation: depth-float-two 8.8s -3.1s ease-in-out infinite; }
.hero-depth--camera { clip-path: polygon(56% 60%, 84% 59%, 89% 100%, 54% 100%); animation: depth-float-three 9.7s -5.6s ease-in-out infinite; }
.sun-ring { position: absolute; z-index: 4; border: 1px solid rgba(255, 179, 89, .15); border-radius: 50%; animation: ring-pulse 9s ease-in-out infinite; }
.sun-ring--one { width: 480px; height: 480px; right: 10%; top: 18%; }
.sun-ring--two { width: 640px; height: 640px; right: 4%; top: 9%; animation-delay: -4.5s; }
.hero-content { max-width: 720px; position: relative; z-index: 5; padding-block: clamp(18px, 3.5svh, 42px); }
.eyebrow { margin: 0 0 23px; color: #b16f48; font-size: 12px; font-weight: 750; letter-spacing: .2em; }
.hero .eyebrow { margin-bottom: clamp(24px, 3.2svh, 38px); font-size: clamp(10px, 1.25svh, 12px); }
.hero-title { margin: 0; font-family: var(--serif); font-size: clamp(46px, min(4.3vw, 7.2svh), 74px); line-height: 1.1; font-weight: 600; letter-spacing: -.05em; }
.hero-title span { position: relative; color: transparent; background: linear-gradient(100deg, var(--coral) 0%, var(--honey) 44%, #ff8979 72%, var(--coral) 100%); background-size: 220% 100%; background-clip: text; -webkit-background-clip: text; animation: title-color-flow 7s ease-in-out infinite alternate; }
.hero-title span::after { content: ""; position: absolute; left: 2%; right: -2%; bottom: -12px; height: 17px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 16C110 2 269 6 497 11' fill='none' stroke='%23ffa756' stroke-opacity='.35' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat; transform: scaleX(0); transform-origin: left center; }
.hero-title.is-visible span::after { animation: underline-grow .9s .52s cubic-bezier(.16,.78,.22,1) forwards; }
.hero-copy { max-width: 570px; margin: 34px 0 30px; color: var(--muted); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.9; }
.download-row { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-title + .download-row { margin-top: clamp(108px, 14svh, 156px); }
.store-button { position: relative; min-width: 180px; height: 62px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; overflow: hidden; border-radius: 18px; padding: 0 23px; cursor: pointer; border: 1px solid transparent; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s; }
.store-button::before { content: ""; position: absolute; inset: -120% -45%; background: linear-gradient(115deg, transparent 39%, rgba(255,255,255,.28) 49%, transparent 59%); transform: translateX(-72%); transition: transform .82s cubic-bezier(.2,.72,.2,1); }
.store-button:hover::before { transform: translateX(72%); }
.store-button > * { position: relative; z-index: 1; }
.store-button svg { width: 25px; height: 25px; fill: currentColor; }
.store-button span { display: flex; flex-direction: column; text-align: left; font-size: 16px; font-weight: 700; line-height: 1.15; }
.store-button small { font-size: 10px; font-weight: 500; opacity: .7; margin-bottom: 4px; }
.store-button--dark { background: var(--ink); color: white; box-shadow: 0 13px 30px rgba(52,45,42,.17); }
.store-button--light { color: var(--ink); background: rgba(255,255,255,.7); border-color: rgba(52,45,42,.14); backdrop-filter: blur(10px); }
.hero .store-button { min-width: 246px; height: clamp(68px, 8svh, 80px); gap: 16px; padding-inline: 31px; border-radius: 23px; }
.hero .store-button svg { width: clamp(27px, 3.1svh, 32px); height: clamp(27px, 3.1svh, 32px); }
.hero .store-button span { font-size: clamp(17px, 2svh, 20px); }
.hero .store-button small { font-size: clamp(10px, 1.2svh, 12px); margin-bottom: 5px; }
.store-button:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(76,50,36,.18); }
.store-button:active { transform: translateY(-1px) scale(.98); }
.trust-note { display: flex; align-items: center; gap: 9px; margin-top: clamp(26px, 3.8svh, 42px); color: #817770; font-size: clamp(10px, 1.2svh, 12px); }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: #8fa067; box-shadow: 0 0 0 5px rgba(143,160,103,.13); }
.scroll-cue { position: absolute; z-index: 3; bottom: 21px; left: 50%; width: 88px; height: 94px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 7px; color: #8c7e73; transform: translateX(-50%); }
.light-arrow { width: 38px; height: 52px; overflow: visible; animation: arrow-float 2.6s ease-in-out infinite; }
.light-arrow path { fill: none; stroke: url("#arrow-light"); stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; filter: url("#arrow-glow"); }
.scroll-label { font-family: var(--serif); font-size: 10px; letter-spacing: .18em; white-space: nowrap; }

.module-ribbon { position: relative; padding: 38px 0 45px; overflow: hidden; border-block: 1px solid var(--line); background: linear-gradient(100deg, rgba(255,248,237,.84), rgba(255,255,255,.72), rgba(255,242,232,.72)); }
.module-ribbon::before { content: ""; position: absolute; left: 9%; top: -130px; width: 360px; height: 260px; border-radius: 50%; background: rgba(255,188,111,.18); filter: blur(80px); }
.module-ribbon::after { content: ""; position: absolute; width: 42vw; height: 170%; left: -46vw; top: -35%; pointer-events: none; background: linear-gradient(105deg, transparent, rgba(255,255,255,.56), transparent); filter: blur(22px); opacity: .42; animation: ribbon-breeze 13s 2s ease-in-out infinite; }
.ribbon-intro { width: min(1200px, calc(100% - 48px)); margin: 0 auto 25px; display: flex; align-items: end; gap: 14px; color: var(--ink); }
.ribbon-intro > span { font-family: var(--serif); font-size: 20px; font-weight: 600; }.ribbon-intro small { color: var(--sand); font-size: 11px; letter-spacing: .08em; }
.module-window { position: relative; overflow: hidden; padding: 8px 0 15px; mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); }
.module-track { width: max-content; display: flex; align-items: center; gap: 16px; padding-inline: 16px; animation: marquee-cards 45s linear infinite; }
.module-window:hover .module-track { animation-play-state: paused; }
.module-chip { --chip-y: 0px; width: 218px; height: 82px; display: flex; align-items: center; gap: 14px; padding: 13px 16px; border: 1px solid rgba(70,50,38,.08); border-radius: 23px; background: rgba(255,255,255,.82); box-shadow: 0 12px 30px rgba(79,55,37,.07); backdrop-filter: blur(12px); transform: translateY(var(--chip-y)); transition: transform .32s cubic-bezier(.2,.75,.2,1), box-shadow .32s; }
.module-chip:nth-child(3n + 2) { --chip-y: 7px; }.module-chip:nth-child(3n) { --chip-y: -5px; }
.module-chip:hover { transform: translateY(calc(var(--chip-y) - 7px)) scale(1.026); box-shadow: 0 18px 35px rgba(79,55,37,.12); }
.module-chip > b { flex: 0 0 auto; width: 49px; height: 49px; display: grid; place-items: center; border-radius: 16px; font-family: var(--serif); font-size: 22px; font-weight: 500; background: var(--chip-bg); color: var(--chip-color); box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); }
.module-chip:nth-child(4n + 1) > b { animation: chip-icon-bob 5.2s ease-in-out infinite; }.module-chip:nth-child(4n + 2) > b { animation: chip-icon-bob 6s -2s ease-in-out infinite; }.module-chip:nth-child(4n + 3) > b { animation: chip-icon-bob 5.6s -3.5s ease-in-out infinite; }.module-chip:nth-child(4n) > b { animation: chip-icon-bob 6.4s -1s ease-in-out infinite; }
.module-chip > span { display: flex; flex-direction: column; gap: 6px; white-space: nowrap; }.module-chip strong { font-family: var(--serif); font-size: 16px; font-weight: 600; }.module-chip small { color: var(--sand); font-size: 10px; }
.chip-diary { --chip-bg: #f3eaf6; --chip-color: #9b78ab; }.chip-period { --chip-bg: #f9e7ea; --chip-color: #c47b8a; }.chip-bill { --chip-bg: #fff0e3; --chip-color: #e38450; }.chip-growth { --chip-bg: #edf2df; --chip-color: #789052; }.chip-day { --chip-bg: #ffe9e5; --chip-color: #d9766e; }.chip-medical { --chip-bg: #e7f1ef; --chip-color: #5d9d90; }.chip-pregnancy { --chip-bg: #f2eafb; --chip-color: #9775b8; }.chip-items { --chip-bg: #e8eef5; --chip-color: #718ba7; }

.section-shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.timeline-section { position: relative; padding: 150px 0 175px; }
.timeline-section::before { content: ""; position: absolute; z-index: -1; width: 560px; height: 560px; right: -22%; top: 25%; border-radius: 50%; background: radial-gradient(circle, rgba(213,232,193,.2), transparent 67%); filter: blur(28px); animation: section-orb-drift 15s ease-in-out infinite alternate; }
.section-heading { max-width: 620px; }
.section-heading h2, .privacy-copy h2, .closing h2 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 5.2vw, 72px); line-height: 1.18; font-weight: 600; letter-spacing: -.055em; }
.section-heading > p:last-child { color: var(--muted); line-height: 1.85; font-size: 17px; }
.timeline-showcase { min-height: 630px; margin-top: 75px; position: relative; display: flex; align-items: center; justify-content: center; perspective: 1400px; }
.timeline-showcase::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,208,151,.18), rgba(255,241,222,.08) 42%, transparent 70%); animation: showcase-breathe 9s ease-in-out infinite; }
.phone-frame { --base-rotate: -1deg; position: relative; z-index: 3; width: 310px; height: 628px; padding: 11px; border-radius: 50px; background: #2e2926; box-shadow: 0 44px 90px rgba(72,52,38,.24), inset 0 0 0 2px rgba(255,255,255,.18); transition: transform .34s ease-out, box-shadow .34s; transform-style: preserve-3d; }
.phone-frame:hover { box-shadow: 0 52px 105px rgba(72,52,38,.28), inset 0 0 0 2px rgba(255,255,255,.2); }
.phone-speaker { position: absolute; z-index: 3; top: 19px; left: 50%; width: 80px; height: 22px; border-radius: 12px; background: #272321; transform: translateX(-50%); }
.phone-screen { height: 100%; padding: 48px 17px 20px; overflow: hidden; border-radius: 40px; background: #f8f6f2; }
.app-head { display: flex; justify-content: space-between; align-items: center; margin: 5px 2px 20px; }
.app-head div { display: flex; flex-direction: column; gap: 4px; }
.app-head small, .feed-line small { color: #a0948c; font-size: 9px; }
.app-head strong { font-size: 15px; }
.app-head img { width: 36px; height: 36px; border-radius: 11px; }
.today-card { height: 105px; display: flex; align-items: end; justify-content: space-between; padding: 18px; color: white; border-radius: 22px; background: linear-gradient(135deg, var(--coral), var(--honey), #ff9177); background-size: 180% 180%; box-shadow: 0 13px 24px rgba(255,122,115,.2); animation: today-gradient 8s ease-in-out infinite alternate; }
.today-card div { display: flex; flex-direction: column; gap: 6px; }
.today-card small { opacity: .75; font-size: 9px; }
.today-card strong { font-family: var(--serif); font-size: 20px; }
.today-card > span { font-size: 11px; }
.feed-line { position: relative; display: grid; grid-template-columns: 20px 1fr; gap: 8px; padding-top: 22px; opacity: 0; transform: translateY(13px); }
.phone-frame.is-visible .feed-line { animation: feed-grow .62s cubic-bezier(.2,.76,.2,1) forwards; }.phone-frame.is-visible .feed-line:nth-child(3) { animation-delay: .42s; }.phone-frame.is-visible .feed-line:nth-child(4) { animation-delay: .51s; }.phone-frame.is-visible .feed-line:nth-child(5) { animation-delay: .6s; }
.feed-line:not(:last-child)::after { content: ""; position: absolute; left: 6px; top: 39px; bottom: -21px; border-left: 1px dashed #ddd4cd; }
.feed-dot { width: 13px; height: 13px; margin-top: 1px; z-index: 1; border: 4px solid #f8f6f2; outline: 2px solid currentColor; border-radius: 50%; background: currentColor; }
.feed-dot--coral { color: var(--coral); }.feed-dot--honey { color: var(--honey); }.feed-dot--green { color: #87a56d; }
.feed-line article { min-height: 86px; padding: 12px 13px; border: 1px solid rgba(74,60,50,.06); border-radius: 15px; background: white; box-shadow: 0 7px 16px rgba(70,50,35,.035); }
.feed-line article strong { display: block; margin: 5px 0; font-size: 12px; }.feed-line article p { margin: 0; color: #928780; font-size: 9px; line-height: 1.5; }
.memory-card { position: absolute; width: 360px; min-height: 430px; padding: 34px; overflow: hidden; border: 1px solid rgba(87,58,40,.08); border-radius: 30px; background: rgba(255,255,255,.78); backdrop-filter: blur(14px); box-shadow: var(--shadow); transition: transform .34s ease-out, box-shadow .34s; transform-style: preserve-3d; }
.memory-card::before { content: ""; position: absolute; inset: -2px; pointer-events: none; opacity: 0; background: radial-gradient(260px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255,255,255,.7), transparent 58%); transition: opacity .35s; }
.memory-card:hover::before { opacity: .58; }.memory-card:hover { box-shadow: 0 34px 80px rgba(110,73,42,.14); }
.memory-card > * { position: relative; z-index: 1; }
.memory-card--diary { --base-rotate: -7deg; left: 3%; top: 87px; z-index: 1; background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,242,236,.8)); }
.memory-card--growth { --base-rotate: 7deg; right: 3%; top: 102px; z-index: 2; background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(246,249,233,.86)); }
.card-top { display: flex; justify-content: space-between; color: #9b8e84; font-size: 12px; }.mood { font-size: 24px; color: var(--honey); }
.card-date { margin: 58px 0 9px; color: #b57b63; font-size: 12px; letter-spacing: .14em; }
.memory-card h3 { margin: 0; font-family: var(--serif); font-size: 29px; line-height: 1.42; font-weight: 600; }
.paper-lines { display: grid; gap: 12px; margin-top: 28px; }.paper-lines i { display: block; height: 1px; background: rgba(109,87,73,.11); transform: scaleX(0); transform-origin: left; }.paper-lines i:last-child { width: 62%; }.memory-card--diary.is-visible .paper-lines i { animation: line-write .7s .42s ease forwards; }.memory-card--diary.is-visible .paper-lines i:nth-child(2) { animation-delay: .53s; }.memory-card--diary.is-visible .paper-lines i:nth-child(3) { animation-delay: .64s; }
.card-tag { position: absolute; left: 34px; bottom: 30px; color: #998c84; font-size: 11px; }
.growth-icon { width: 48px; height: 48px; display: grid; place-items: center; color: #758b53; font-size: 25px; border-radius: 15px; background: #eef2df; }
.mini-chart { margin: 40px -10px 0; }.mini-chart svg { width: 100%; height: 90px; overflow: visible; }.chart-line { fill: none; stroke: #91a36a; stroke-width: 3; stroke-linecap: round; stroke-dasharray: 390; stroke-dashoffset: 390; }.memory-card--growth.is-visible .chart-line { animation: chart-draw 1.35s .42s cubic-bezier(.3,.7,.2,1) forwards; }.chart-fill { fill: url(#none); opacity: .12; stroke: none; }

.features { padding-bottom: 170px; }.section-heading--center { max-width: 760px; margin: auto; text-align: center; }.section-heading--center > p:last-child { margin-inline: auto; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 75px; }
.feature-card { position: relative; min-height: 420px; padding: 42px; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.72); box-shadow: 0 18px 60px rgba(83,55,37,.055); transition: transform .4s cubic-bezier(.2,.75,.2,1), border-color .4s, box-shadow .4s; }
.feature-card::before { content: ""; position: absolute; z-index: 0; inset: -1px; pointer-events: none; opacity: 0; background: radial-gradient(360px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255,221,170,.24), rgba(255,255,255,.12) 28%, transparent 66%); transition: opacity .4s; }
.feature-card:hover { --hover-y: -5px; border-color: rgba(214,155,111,.2); box-shadow: 0 28px 72px rgba(83,55,37,.09); }.feature-card:hover::before { opacity: 1; }.feature-card > * { position: relative; z-index: 1; }
.feature-card--wide { min-height: 500px; grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; background: linear-gradient(120deg, #fff9f5, #f8f5ec); }
.feature-card--warm { background: linear-gradient(145deg, #fff, #fff2e5); }
.feature-number { display: block; color: #c49b82; font-size: 11px; letter-spacing: .16em; }
.feature-card h3 { margin: 21px 0 14px; font-family: var(--serif); font-size: clamp(28px, 3vw, 43px); font-weight: 600; }.feature-card p { max-width: 500px; color: var(--muted); font-size: 16px; line-height: 1.85; }.text-link { display: inline-block; margin-top: 25px; color: #a8684a; font-size: 13px; }.text-link b { display: inline-block; transition: transform .2s; }.feature-card:hover .text-link b { transform: translateX(5px); }
.family-orbit { --orbit-scale: 1; position: relative; width: 390px; aspect-ratio: 1; justify-self: center; border: 1px dashed rgba(205,129,94,.25); border-radius: 50%; animation: slow-spin 48s linear infinite; }
.family-orbit::after { content: ""; position: absolute; inset: 48px; border: 1px solid rgba(205,129,94,.12); border-radius: 50%; }
.orbit-center { position: absolute; inset: 50%; width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; color: #a35e4f; border-radius: 50%; background: white; box-shadow: 0 25px 45px rgba(143,90,63,.11); transform: translate(-50%,-50%); animation: counter-spin 48s linear infinite; }.orbit-center span { font-size: 34px; }.orbit-center small { color: #857970; }
.avatar { position: absolute; width: 68px; height: 68px; display: grid; place-items: center; color: white; border: 7px solid #fff9f5; border-radius: 50%; box-shadow: 0 10px 30px rgba(80,52,36,.13); animation: avatar-counter-spin 48s linear infinite, avatar-bob 6s ease-in-out infinite; }.avatar--one { left: 20px; top: 58px; background: #ee928b; }.avatar--two { right: 5px; top: 128px; background: #8ca4bd; animation-delay: 0s, -2s; }.avatar--three { left: 112px; bottom: -15px; background: #e2ae63; animation-delay: 0s, -4s; }
.feature-icon { position: absolute; right: 38px; bottom: 36px; }.feature-icon--cloud { width: 155px; height: 110px; display: grid; place-items: center; color: #7c9ab6; font-size: 60px; }.feature-icon--cloud i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: #9db3c7; animation: float-particle 3s ease-in-out infinite; }.feature-icon--cloud i:nth-child(2) { left: 25px; bottom: 5px; }.feature-icon--cloud i:nth-child(3) { right: 25px; top: 3px; animation-delay: -1s; }.feature-icon--cloud i:nth-child(4) { right: 8px; bottom: 25px; animation-delay: -2s; }.feature-icon--backup { width: 110px; height: 110px; display: grid; place-items: center; color: #ca794c; font-size: 64px; border-radius: 50%; background: rgba(255,167,86,.13); }

.privacy { padding-bottom: 170px; }.privacy-panel { min-height: 650px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; padding: 65px; color: #fff8f2; border-radius: 44px; overflow: hidden; background: radial-gradient(circle at var(--spot-x, 26%) var(--spot-y, 46%), rgba(255,157,104,.13), transparent 28%), #302925; box-shadow: 0 35px 90px rgba(43,34,29,.16); transition: box-shadow .5s; }
.privacy-panel:hover { box-shadow: 0 44px 105px rgba(43,34,29,.22); }
.privacy-visual { position: relative; min-height: 440px; }.privacy-sun { position: absolute; left: 50%; top: 50%; width: 310px; height: 310px; border-radius: 50%; background: radial-gradient(circle, rgba(255,193,116,.42), rgba(255,122,115,.12) 45%, transparent 70%); transform: translate(-50%,-50%); filter: blur(12px); animation: privacy-sun-breathe 7s ease-in-out infinite; }
.shield { position: absolute; left: 50%; top: 50%; width: 145px; height: 174px; display: grid; place-items: center; background: linear-gradient(145deg, #ffad76, #ff7a73); background-size: 160% 160%; clip-path: polygon(50% 0, 94% 15%, 89% 66%, 72% 88%, 50% 100%, 28% 88%, 11% 66%, 6% 15%); transform: translate(-50%,-50%); filter: drop-shadow(0 24px 35px rgba(255,115,93,.22)); animation: shield-float 6.2s ease-in-out infinite, shield-color 8s ease-in-out infinite alternate; }.shield span { width: 31px; height: 42px; border: 8px solid #fff5ec; border-radius: 18px 18px 7px 7px; transform: translateY(8px); }.shield span::after { content: ""; display: block; width: 15px; height: 16px; margin: 14px auto 0; background: #fff5ec; border-radius: 8px; }
.privacy-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,190,131,.26); border-radius: 50%; transform: translate(-50%,-50%); }.privacy-ring--a { width: 320px; height: 320px; animation: privacy-ripple 6s ease-out infinite; }.privacy-ring--b { width: 420px; height: 420px; animation: privacy-ripple 6s -3s ease-out infinite; }
.privacy-copy { max-width: 510px; }.privacy-copy .eyebrow { color: #efab80; }.privacy-copy h2 { font-size: clamp(42px, 4.8vw, 67px); }.privacy-copy > p:not(.eyebrow) { color: rgba(255,248,242,.62); font-size: 16px; line-height: 1.9; }.privacy-copy ul { display: grid; gap: 13px; margin: 27px 0 0; padding: 0; list-style: none; color: rgba(255,248,242,.86); font-size: 14px; }.privacy-copy li { display: flex; gap: 10px; align-items: center; }.privacy-copy li span { display: grid; place-items: center; width: 22px; height: 22px; color: #302925; border-radius: 50%; background: #eeb27d; font-size: 12px; }

.closing { position: relative; min-height: 690px; display: grid; place-items: center; margin-bottom: 100px; overflow: hidden; border-radius: 44px; background: linear-gradient(150deg, #fff9ef, #ffe7d8, #f9f2df); background-size: 180% 180%; text-align: center; animation: closing-sky 14s ease-in-out infinite alternate; }.closing::before { content: ""; position: absolute; width: 340px; height: 340px; left: 50%; bottom: -220px; border-radius: 50%; background: #ffbf76; box-shadow: 0 0 110px 70px rgba(255,167,86,.23); transform: translateX(-50%); animation: closing-sun 8s ease-in-out infinite; }.closing-content { position: relative; z-index: 2; max-width: 760px; padding: 70px 25px; }.closing-content > img { width: 82px; height: 82px; margin-bottom: 25px; border-radius: 24px; box-shadow: 0 20px 40px rgba(255,122,115,.2); animation: closing-icon-float 6s ease-in-out infinite; }.closing h2 { font-size: clamp(48px, 6vw, 78px); }.closing-content > p:not(.eyebrow) { margin: 25px auto 30px; color: var(--muted); line-height: 1.8; }.download-row--center { justify-content: center; }.closing-rays { position: absolute; left: 50%; bottom: -500px; width: 1050px; height: 1050px; border: 1px solid rgba(255,145,86,.16); border-radius: 50%; transform: translateX(-50%); animation: closing-ring-breathe 11s ease-in-out infinite; }.closing-rays::before, .closing-rays::after { content: ""; position: absolute; inset: 120px; border: inherit; border-radius: inherit; }.closing-rays::before { animation: closing-ring-breathe 11s -3.7s ease-in-out infinite; }.closing-rays::after { inset: 250px; animation: closing-ring-breathe 11s -7.4s ease-in-out infinite; }
.site-footer { width: min(1200px, calc(100% - 48px)); min-height: 130px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; color: #958b84; border-top: 1px solid var(--line); font-size: 12px; }.site-footer > p:last-child { text-align: right; }.brand--footer { color: var(--ink); }.brand--footer img { width: 32px; height: 32px; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }.footer-meta a { color: #786c64; text-decoration: underline; text-decoration-color: rgba(120,108,100,.3); text-underline-offset: 4px; transition: color .2s; }.footer-meta a:hover { color: var(--coral-dark); }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 30px; min-width: 300px; display: flex; align-items: center; gap: 13px; padding: 15px 19px; color: white; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(47,40,36,.93); backdrop-filter: blur(18px); box-shadow: 0 20px 60px rgba(44,33,27,.25); opacity: 0; pointer-events: none; transform: translate(-50%, 30px) scale(.96); transition: opacity .3s, transform .3s; }.toast.is-visible { opacity: 1; transform: translate(-50%, 0) scale(1); }.toast-icon { width: 36px; height: 36px; display: grid; place-items: center; color: #5a3929; border-radius: 11px; background: linear-gradient(145deg, #ffc37f, #ff8c75); }.toast div { display: flex; flex-direction: column; gap: 3px; }.toast strong { font-size: 14px; }.toast small { color: rgba(255,255,255,.62); }

.reveal { --enter-x: var(--start-x, 0px); --enter-y: var(--start-y, 38px); --enter-scale: var(--start-scale, .985); --hover-y: 0px; --tilt-x: 0deg; --tilt-y: 0deg; opacity: 0; filter: blur(8px); transform: translate3d(var(--enter-x), calc(var(--enter-y) + var(--hover-y)), 0) scale(var(--enter-scale)) rotate(var(--base-rotate, 0deg)); transition: opacity .88s cubic-bezier(.2,.72,.2,1), filter .88s cubic-bezier(.2,.72,.2,1), transform .88s cubic-bezier(.16,.78,.22,1), box-shadow .35s; transition-delay: var(--reveal-delay, 0ms); will-change: transform, opacity; }
.section-heading.reveal { --start-y: 28px; }.feature-card.reveal { --start-y: 46px; --start-scale: .975; }.phone-frame.reveal { --start-y: 58px; --start-scale: .94; }.memory-card--diary.reveal { --start-x: -38px; --start-y: 34px; }.memory-card--growth.reveal { --start-x: 38px; --start-y: 34px; }
.reveal.is-visible { --enter-x: 0px; --enter-y: 0px; --enter-scale: 1; opacity: 1; filter: blur(0); }
.reveal[data-tilt] { transform: perspective(1200px) translate3d(var(--enter-x), calc(var(--enter-y) + var(--hover-y)), 0) scale(var(--enter-scale)) rotate(var(--base-rotate, 0deg)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
.hero .eyebrow.reveal { --start-x: -18px; --start-y: 0px; }.hero-title.reveal { --start-y: 24px; --start-scale: .97; }.hero .download-row.reveal { --start-y: 30px; }.hero .trust-note.reveal { --start-y: 18px; }

@keyframes header-arrive { from { opacity: 0; transform: translate(-50%, -18px) scale(.98); } to { opacity: 1; transform: translate(-50%, 0) scale(1); } }
@keyframes page-glow-drift-one { from { transform: translate3d(-2vw, -2vh, 0) scale(.94); } to { transform: translate3d(5vw, 7vh, 0) scale(1.08); } }
@keyframes page-glow-drift-two { from { transform: translate3d(-2vw, 2vh, 0) scale(1.05); } to { transform: translate3d(8vw, -6vh, 0) scale(.92); } }
@keyframes sky-wash-drift { from { transform: translate3d(-2%, -1%, 0) scale(1); background-position: 0% 20%, 100% 80%, center; } to { transform: translate3d(3%, 2%, 0) scale(1.04); background-position: 12% 32%, 88% 68%, center; } }
@keyframes morning-breathe { 0%,100% { transform: scale(.95); opacity: .68; } 50% { transform: scale(1.065); opacity: .92; } }
@keyframes sun-core-pulse { 0% { transform: scale(.65); opacity: 0; } 45% { opacity: .65; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes ray-drift-one { 0%,100% { transform: rotate(-3deg) translateX(0); opacity: .11; } 50% { transform: rotate(-.6deg) translateX(22px); opacity: .24; } }
@keyframes ray-drift-two { 0%,100% { transform: rotate(2deg) translateX(0); opacity: .08; } 50% { transform: rotate(4deg) translateX(18px); opacity: .18; } }
@keyframes ray-drift-three { 0%,100% { transform: rotate(5deg) translateX(0); opacity: .06; } 50% { transform: rotate(2deg) translateX(-14px); opacity: .14; } }
@keyframes photo-aurora-drift { from { transform: translate3d(-2%, 1%, 0) scale(.98); opacity: .27; } to { transform: translate3d(4%, -2%, 0) scale(1.04); opacity: .44; } }
@keyframes photo-glint { 0%,14% { transform: translate3d(-46vw,-2%,0) rotate(-7deg); opacity: 0; } 24% { opacity: .09; } 52% { transform: translate3d(18vw,2%,0) rotate(-5deg); opacity: .28; } 68%,100% { transform: translate3d(48vw,4%,0) rotate(-4deg); opacity: 0; } }
@keyframes breeze-travel { 0%,18% { opacity: 0; transform: translate3d(-54px, 24px, 0) rotate(-13deg) scale(.84); } 42% { opacity: .42; } 72%,100% { opacity: 0; transform: translate3d(88px, -30px, 0) rotate(-8deg) scale(1.08); } }
@keyframes breeze-travel-two { 0%,22% { opacity: 0; transform: translate3d(-65px, 18px, 0) rotate(9deg) scale(.88); } 46% { opacity: .3; } 75%,100% { opacity: 0; transform: translate3d(72px, -24px, 0) rotate(4deg) scale(1.05); } }
@keyframes leaf-shadow-breeze { from { transform: rotate(-23deg) translate3d(-5px,-4px,0) scale(.96); opacity: .055; } to { transform: rotate(-17deg) translate3d(17px,12px,0) scale(1.04); opacity: .12; } }
@keyframes leaf-shadow-breeze-two { from { transform: rotate(18deg) translate3d(-8px,0,0) scale(.76); opacity: .04; } to { transform: rotate(23deg) translate3d(14px,-15px,0) scale(.86); opacity: .09; } }
@keyframes depth-float-one { 0%,100% { transform: translate3d(var(--depth-x), var(--depth-y), 0) scale(1.045) rotate(0); } 50% { transform: translate3d(calc(var(--depth-x) - 2px), calc(var(--depth-y) - 5px), 0) scale(1.047) rotate(-.18deg); } }
@keyframes depth-float-two { 0%,100% { transform: translate3d(var(--depth-x), var(--depth-y), 0) scale(1.045) rotate(0); } 50% { transform: translate3d(calc(var(--depth-x) + 3px), calc(var(--depth-y) - 4px), 0) scale(1.048) rotate(.16deg); } }
@keyframes depth-float-three { 0%,100% { transform: translate3d(var(--depth-x), var(--depth-y), 0) scale(1.045); } 50% { transform: translate3d(calc(var(--depth-x) - 2px), calc(var(--depth-y) + 3px), 0) scale(1.048); } }
@keyframes dust-rise { 0%,100% { transform: translate3d(0,22px,0) scale(.65); opacity: 0; } 17% { opacity: var(--dust-alpha); } 42% { transform: translate3d(var(--dust-sway),-16px,0) scale(.9); } 68% { opacity: .2; } 88% { opacity: 0; } 100% { transform: translate3d(var(--dust-drift),-92px,0) scale(1.2); } }
@keyframes ring-pulse { 0%,100% { opacity: .12; transform: scale(.96); } 50% { opacity: .38; transform: scale(1.025); } }
@keyframes title-color-flow { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
@keyframes underline-grow { to { transform: scaleX(1); } }
@keyframes arrow-float { 0%,100% { transform: translateY(-3px); opacity: .42; } 50% { transform: translateY(5px); opacity: .96; } }
@keyframes ribbon-breeze { 0%,15% { transform: translateX(0) skewX(-12deg); opacity: 0; } 25% { opacity: .4; } 62%,100% { transform: translateX(155vw) skewX(-12deg); opacity: 0; } }
@keyframes marquee-cards { to { transform: translateX(calc(-50% - 8px)); } }
@keyframes chip-icon-bob { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-4px) rotate(2deg); } }
@keyframes section-orb-drift { from { transform: translate3d(-4%, 4%, 0) scale(.94); } to { transform: translate3d(7%, -4%, 0) scale(1.06); } }
@keyframes showcase-breathe { 0%,100% { transform: scale(.9); opacity: .48; } 50% { transform: scale(1.08); opacity: .85; } }
@keyframes today-gradient { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
@keyframes feed-grow { to { opacity: 1; transform: translateY(0); } }
@keyframes line-write { to { transform: scaleX(1); } }
@keyframes chart-draw { to { stroke-dashoffset: 0; } }
@keyframes slow-spin { from { transform: scale(var(--orbit-scale, 1)) rotate(0); } to { transform: scale(var(--orbit-scale, 1)) rotate(360deg); } }
@keyframes counter-spin { to { transform: translate(-50%,-50%) rotate(-360deg); } }
@keyframes avatar-counter-spin { to { transform: rotate(-360deg); } }
@keyframes avatar-bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@keyframes float-particle { 0%,100% { transform: translateY(0); opacity: .3; } 50% { transform: translateY(-16px); opacity: 1; } }
@keyframes privacy-sun-breathe { 0%,100% { transform: translate(-50%,-50%) scale(.92); opacity: .72; } 50% { transform: translate(-50%,-50%) scale(1.08); opacity: 1; } }
@keyframes shield-float { 0%,100% { transform: translate(-50%,-50%) translateY(4px) rotate(-.6deg); } 50% { transform: translate(-50%,-50%) translateY(-7px) rotate(.8deg); } }
@keyframes shield-color { from { background-position: 0% 30%; } to { background-position: 100% 70%; } }
@keyframes privacy-ripple { 0% { opacity: 0; transform: translate(-50%,-50%) scale(.78); } 18% { opacity: .42; } 80%,100% { opacity: 0; transform: translate(-50%,-50%) scale(1.16); } }
@keyframes closing-sky { from { background-position: 0% 20%; } to { background-position: 100% 80%; } }
@keyframes closing-sun { 0%,100% { transform: translateX(-50%) scale(.9); opacity: .74; } 50% { transform: translateX(-50%) scale(1.08); opacity: 1; } }
@keyframes closing-icon-float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes closing-ring-breathe { 0%,100% { transform: translateX(-50%) scale(.94); opacity: .36; } 50% { transform: translateX(-50%) scale(1.04); opacity: .9; } }

@media (max-width: 980px) {
  .site-nav { display: none; }
  .hero { padding-inline: 32px; }
  .hero-art img { object-position: 63% center; }
  .hero-art::after { background: linear-gradient(90deg, rgba(253,252,249,.98) 0%, rgba(253,252,249,.83) 52%, rgba(253,252,249,.18) 100%), linear-gradient(0deg, var(--cream), transparent 30%); }
  .timeline-showcase { min-height: 1020px; align-items: start; }
  .memory-card { width: min(340px, 44vw); }.memory-card--diary { left: 2%; top: 470px; }.memory-card--growth { right: 2%; top: 520px; }.phone-frame { margin-top: 20px; }
  .feature-card--wide { grid-template-columns: 1fr; }.family-orbit { --orbit-scale: .75; position: absolute; right: -50px; bottom: -80px; opacity: .7; }.feature-copy { position: relative; z-index: 2; max-width: 60%; }
  .privacy-panel { grid-template-columns: 1fr; padding: 45px; }.privacy-visual { min-height: 350px; }.privacy-copy { margin: auto; text-align: center; }.privacy-copy li { justify-content: center; }
}

@media (max-width: 680px) {
  .site-header { top: 10px; width: calc(100% - 20px); height: 60px; border-radius: 18px; }.brand img { width: 34px; height: 34px; }.brand span { font-size: 16px; }.nav-download { padding: 10px 15px; font-size: 13px; }
  .hero { min-height: 930px; align-items: start; padding: 150px 22px 90px; }.hero-art img { height: 56%; top: auto; bottom: 0; object-position: 68% center; }.hero-depth, .photo-sunbeam, .breeze-trail { display: none; }.photo-aurora { left: 20%; top: 43%; }.leaf-shadow--one { top: 45%; right: -8%; }.hero-art::after { background: linear-gradient(180deg, rgba(253,252,249,1) 0%, rgba(253,252,249,.96) 43%, rgba(253,252,249,.12) 75%, rgba(253,252,249,.55) 100%); -webkit-mask-image: none; mask-image: none; }.hero-title { font-size: 46px; line-height: 1.1; }.hero-copy { font-size: 15px; line-height: 1.75; }.store-button { min-width: calc(50% - 7px); height: 58px; padding: 0 14px; }.store-button svg { width: 21px; }.store-button span { font-size: 14px; }.scroll-cue { display: none; }
  .hero .store-button { min-width: calc(50% - 7px); height: 64px; gap: 10px; padding-inline: 13px; border-radius: 18px; }.hero .store-button svg { width: 23px; height: 23px; }.hero .store-button span { font-size: 15px; }.hero .store-button small { font-size: 9px; margin-bottom: 4px; }
  .module-ribbon { padding: 30px 0 36px; }.ribbon-intro { width: calc(100% - 30px); align-items: start; flex-direction: column; gap: 5px; }.module-chip { width: 198px; height: 77px; }.module-track { gap: 12px; animation-duration: 38s; }
  .section-shell { width: calc(100% - 28px); }.timeline-section { padding: 100px 0 120px; }.section-heading h2, .privacy-copy h2 { font-size: 38px; }.section-heading > p:last-child { font-size: 15px; }.timeline-showcase { min-height: 1250px; margin-top: 50px; }.phone-frame { width: 292px; height: 600px; }.memory-card { width: calc(100% - 15px); min-height: 360px; }.memory-card--diary { --base-rotate: -3deg; left: 0; top: 680px; }.memory-card--growth { --base-rotate: 3deg; right: 0; top: 940px; }.memory-card--diary.reveal, .memory-card--growth.reveal { --start-x: 0px; --start-y: 30px; }.card-date { margin-top: 32px; }
  .features { padding-bottom: 110px; }.feature-grid { grid-template-columns: 1fr; margin-top: 50px; }.feature-card { min-height: 400px; padding: 30px; border-radius: 25px; }.feature-card--wide { grid-column: auto; min-height: 620px; }.feature-copy { max-width: none; }.family-orbit { width: 340px; right: -55px; bottom: -50px; }.feature-icon { right: 25px; bottom: 22px; }
  .privacy { padding-bottom: 110px; }.privacy-panel { padding: 30px 24px 45px; border-radius: 28px; }.privacy-visual { min-height: 320px; }.privacy-ring--b { width: 330px; height: 330px; }.privacy-ring--a { width: 260px; height: 260px; }.privacy-copy ul { align-items: start; }.privacy-copy li { justify-content: flex-start; text-align: left; }
  .closing { min-height: 680px; margin-bottom: 70px; border-radius: 28px; }.closing h2 { font-size: 47px; }.closing .download-row { flex-direction: column; }.closing .store-button { min-width: 210px; }
  .site-footer { grid-template-columns: 1fr; padding: 35px 0; text-align: center; }.site-footer .brand { justify-self: center; }.site-footer > p { margin: 0; }.site-footer > p:last-child { text-align: center; }.footer-meta { align-items: center; }.toast { width: calc(100% - 30px); min-width: 0; bottom: 15px; }
}


@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 !important; }
}

@media (pointer: coarse) { .cursor-glow { display: none; } }
