:root {
  --ink: #171214;
  --ink-soft: #655b60;
  --paper: #fffafb;
  --paper-deep: #fff1f5;
  --card: #ffffff;
  --rose: #db2777;
  --rose-bright: #ec4899;
  --rose-soft: #f9a8d4;
  --blush: #ffe4ee;
  --line: rgba(63, 36, 48, 0.11);
  --shadow: 0 30px 90px rgba(89, 28, 56, 0.14);
  --serif: "Instrument Serif", "Iowan Old Style", "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html[data-palette="tide"] {
  --rose: #2563eb;
  --rose-bright: #3b82f6;
  --rose-soft: #93c5fd;
  --blush: #dbeafe;
  --paper: #f9fbff;
  --paper-deep: #eff6ff;
  --line: rgba(30, 64, 175, 0.11);
  --shadow: 0 30px 90px rgba(30, 64, 175, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
::selection { background: var(--rose); color: white; }

.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.progress { position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: 3px; }
.progress span { display: block; width: 0; height: 100%; background: var(--rose); }
.cursor-glow { position: fixed; z-index: 0; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, color-mix(in srgb, var(--rose-soft) 24%, transparent), transparent 68%); transform: translate(-50%, -50%); opacity: .7; transition: opacity .3s; }

.site-header { position: fixed; z-index: 90; top: 18px; left: 50%; transform: translateX(-50%); width: min(1180px, calc(100% - 32px)); height: 70px; padding: 0 14px 0 18px; display: flex; align-items: center; justify-content: space-between; border: 1px solid transparent; border-radius: 24px; transition: background .35s, box-shadow .35s, border-color .35s, top .35s; }
.site-header.scrolled { top: 10px; background: color-mix(in srgb, var(--paper) 86%, transparent); backdrop-filter: blur(22px); border-color: var(--line); box-shadow: 0 12px 45px rgba(51, 27, 39, .08); }
.brand { display: flex; align-items: center; gap: 10px; font: 500 29px/1 var(--serif); letter-spacing: -.04em; }
.brand img { border-radius: 14px; box-shadow: 0 8px 22px rgba(40, 20, 30, .12); }
.desktop-nav { display: flex; gap: 34px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--rose); transition: right .3s var(--ease); }
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.palette-switch { width: 45px; height: 38px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255,255,255,.7); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.palette-switch span { width: 12px; height: 12px; border-radius: 50%; background: #db2777; border: 2px solid white; box-shadow: 0 1px 5px rgba(0,0,0,.2); }
.palette-switch span + span { margin-left: -4px; background: #2563eb; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 0; border-radius: 999px; font-weight: 700; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s, background .25s; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 20px; color: white; background: var(--ink); font-size: 13px; }
.button-small:hover { box-shadow: 0 10px 28px rgba(23,18,20,.2); }
.button-primary { min-height: 58px; padding: 0 28px; color: white; background: var(--rose); box-shadow: 0 16px 40px color-mix(in srgb, var(--rose) 28%, transparent); }
.button-primary:hover { background: var(--rose-bright); box-shadow: 0 20px 46px color-mix(in srgb, var(--rose) 34%, transparent); }
.menu-button, .mobile-nav { display: none; }

.hero { min-height: 930px; padding-top: 180px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: start; position: relative; }
.hero::before { content: ""; position: absolute; z-index: -1; width: 820px; height: 820px; right: -400px; top: -180px; border-radius: 50%; background: radial-gradient(circle, var(--blush), transparent 70%); filter: blur(5px); }
.hero-copy { padding-top: 70px; position: relative; z-index: 2; }
.eyebrow, .section-kicker { font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: var(--rose); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid color-mix(in srgb, var(--rose) 18%, transparent); border-radius: 999px; background: color-mix(in srgb, var(--paper) 68%, transparent); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 5px color-mix(in srgb, var(--rose) 12%, transparent); }
.hero h1 { max-width: 740px; margin: 26px 0 24px; font: 400 clamp(66px, 7vw, 104px)/.87 var(--serif); letter-spacing: -.055em; }
.hero h1 em, h2 em { color: var(--rose); font-weight: 400; }
.hero-lede { max-width: 590px; font-size: 19px; line-height: 1.65; color: var(--ink-soft); }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 24px; }
.text-button { border: 0; background: none; padding: 10px 0; font-weight: 700; color: var(--ink); cursor: pointer; }
.play-icon { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-right: 8px; padding-left: 2px; border: 1px solid var(--line); border-radius: 50%; font-size: 9px; background: white; box-shadow: 0 6px 20px rgba(49, 20, 34, .08); }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 54px; font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.trust-row i { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 5px; color: white; background: var(--ink); border-radius: 50%; font-size: 10px; font-style: normal; }

.hero-visual { min-height: 700px; display: grid; place-items: center; position: relative; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; z-index: -3; width: 570px; height: 570px; border-radius: 50%; background: linear-gradient(145deg, color-mix(in srgb, var(--rose-soft) 72%, white), color-mix(in srgb, var(--blush) 56%, white)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.65), 0 50px 120px color-mix(in srgb, var(--rose) 15%, transparent); }
.orbit { position: absolute; z-index: -2; border: 1px dashed color-mix(in srgb, var(--rose) 22%, transparent); border-radius: 50%; animation: rotate 30s linear infinite; }
.orbit::after { content: "♥"; position: absolute; top: 8%; left: 12%; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--rose); box-shadow: 0 8px 24px rgba(65,22,42,.1); }
.orbit-one { width: 650px; height: 650px; }
.orbit-two { width: 500px; height: 500px; animation-direction: reverse; animation-duration: 22s; }
.orbit-two::after { content: "✦"; top: auto; left: auto; bottom: 2%; right: 8%; }
@keyframes rotate { to { transform: rotate(360deg); } }
.phone { width: 320px; height: 650px; position: relative; border: 9px solid #211b1e; border-radius: 50px; background: #fff9fb; overflow: hidden; box-shadow: 0 50px 100px rgba(65, 27, 45, .26), inset 0 0 0 1px rgba(255,255,255,.2); }
.phone::after { content: ""; position: absolute; inset: 0; border-radius: 39px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.26); pointer-events: none; }
.phone-hero { transform: rotate(3.5deg); animation: phoneFloat 6s ease-in-out infinite; }
@keyframes phoneFloat { 0%, 100% { transform: rotate(3.5deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-12px); } }
.phone-top { height: 32px; padding: 10px 19px 0; display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 3; color: #33252c; font-size: 9px; }
.phone-top > span { position: absolute; width: 84px; height: 22px; border-radius: 99px; top: 5px; left: 50%; transform: translateX(-50%); background: #211b1e; }
.phone-status { letter-spacing: 2px; }
.app-home { padding: 13px 16px 0; }
.app-greeting { display: flex; align-items: center; justify-content: space-between; }
.app-greeting small { font-size: 8px; color: #9d8792; }
.app-greeting h3 { margin: 3px 0 0; font: 400 20px/1.1 var(--serif); }
.avatar-pair { display: flex; }
.avatar-pair span { width: 31px; height: 31px; display: grid; place-items: center; margin-left: -7px; border: 2px solid #fff; border-radius: 50%; color: white; background: var(--rose); font-size: 9px; font-weight: 700; }
.avatar-pair span:last-child { background: #33252c; }
.together-card { margin-top: 16px; padding: 18px; color: white; border-radius: 23px; background: linear-gradient(135deg, #21181d, #4b2739); box-shadow: 0 16px 28px rgba(55, 24, 39, .18); }
.tiny-label { font-size: 7px; letter-spacing: .15em; opacity: .58; }
.days { display: flex; align-items: center; gap: 10px; margin-top: 5px; }
.days strong { font: 400 43px/1 var(--serif); }
.days span { font-size: 9px; line-height: 1.2; opacity: .7; }
.anniversary-line { margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.1); font-size: 9px; }
.anniversary-line span { color: var(--rose-soft); }
.question-card { margin-top: 12px; padding: 15px; border: 1px solid color-mix(in srgb, var(--rose) 11%, transparent); border-radius: 20px; background: white; box-shadow: 0 8px 28px rgba(77, 29, 52, .06); }
.card-heading { display: flex; justify-content: space-between; font-size: 8px; font-weight: 700; color: var(--rose); text-transform: uppercase; letter-spacing: .08em; }
.card-heading i { display: grid; place-items: center; width: 20px; height: 20px; margin-top: -5px; border-radius: 50%; background: var(--blush); font-style: normal; }
.question-card p { margin: 12px 0; font: 400 15px/1.25 var(--serif); }
.question-card button { width: 100%; padding: 10px 12px; display: flex; justify-content: space-between; color: white; border: 0; border-radius: 12px; background: var(--rose); font-size: 9px; font-weight: 700; }
.mood-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.mood-row div { padding: 11px; border-radius: 14px; background: var(--blush); }
.mood-row small { display: block; margin-bottom: 4px; font-size: 6px; letter-spacing: .1em; color: var(--ink-soft); }
.mood-row strong { font-size: 10px; }
.phone-tabs { position: absolute; left: 11px; right: 11px; bottom: 9px; height: 56px; display: flex; justify-content: space-around; padding-top: 11px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); color: #ab98a2; }
.phone-tabs span { display: flex; flex-direction: column; align-items: center; font-size: 13px; }
.phone-tabs small { margin-top: 3px; font-size: 6px; }
.phone-tabs .active { color: var(--rose); }
.floating-note { position: absolute; z-index: 3; min-width: 150px; padding: 12px 16px 12px 44px; border: 1px solid rgba(255,255,255,.75); border-radius: 18px; background: rgba(255,255,255,.78); backdrop-filter: blur(17px); box-shadow: 0 17px 50px rgba(57, 24, 40, .13); }
.floating-note > span { position: absolute; left: 12px; top: 14px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--rose); font-size: 10px; }
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: 11px; }
.floating-note small { margin-top: 2px; font-size: 8px; color: var(--ink-soft); }
.note-one { top: 23%; left: 0; transform: rotate(-5deg); animation: noteBob 5s ease-in-out infinite; }
.note-two { right: -2%; bottom: 18%; transform: rotate(4deg); animation: noteBob 5s 1.4s ease-in-out infinite; }
@keyframes noteBob { 50% { translate: 0 -9px; } }
.scroll-cue { position: absolute; left: 0; bottom: 38px; display: flex; align-items: center; gap: 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: #9b8992; }
.scroll-cue span { display: block; width: 1px; height: 42px; background: linear-gradient(var(--rose), transparent); }

.manifesto { padding: 135px 0 160px; text-align: center; }
.manifesto h2, .feature-copy h2, .moments h2, .privacy-copy h2, .download h2 { margin: 18px 0 22px; font: 400 clamp(48px, 5.2vw, 76px)/.98 var(--serif); letter-spacing: -.04em; }
.manifesto > p:last-child { margin: 0; color: var(--ink-soft); font-size: 18px; }

.feature-stage { padding: 130px 0; background: #181315; color: #fff8fb; position: relative; overflow: hidden; }
.feature-stage::before { content: ""; position: absolute; width: 700px; height: 700px; right: -250px; top: 10%; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--rose) 35%, transparent), transparent 70%); filter: blur(15px); }
.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.feature-copy { position: relative; z-index: 2; }
.feature-intro { max-width: 520px; color: #bfb2b8; font-size: 17px; line-height: 1.7; }
.feature-tabs { margin-top: 42px; }
.feature-tab { width: 100%; display: grid; grid-template-columns: 36px 1fr; gap: 4px; padding: 21px 0; color: #8f8288; text-align: left; border: 0; border-top: 1px solid rgba(255,255,255,.1); background: none; cursor: pointer; transition: color .3s, padding-left .3s var(--ease); }
.feature-tab:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.feature-tab > span { color: var(--rose-soft); font: italic 16px var(--serif); }
.feature-tab .feature-tab-copy { color: inherit; font: inherit; }
.feature-tab strong, .feature-tab small { display: block; }
.feature-tab strong { margin-bottom: 7px; font: 400 25px/1 var(--serif); color: inherit; }
.feature-tab small { max-width: 400px; font-size: 12px; line-height: 1.5; }
.feature-tab.active { color: white; padding-left: 12px; }
.feature-tab.active strong { color: var(--rose-soft); }
.phone-showcase { min-height: 770px; display: grid; place-items: center; position: relative; }
.showcase-glow { position: absolute; width: 510px; height: 610px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--rose) 24%, transparent), transparent 70%); }
.phone-feature { width: 342px; height: 696px; border-color: #050505; background: #fff9fb; color: var(--ink); transform: rotate(-2deg); transition: transform .5s var(--ease); }
.phone-showcase:hover .phone-feature { transform: rotate(0) translateY(-6px); }
.phone-top-light { color: var(--ink); }
.screen-panel { padding: 13px 18px; animation: screenIn .5s var(--ease); }
@keyframes screenIn { from { opacity: 0; transform: translateY(12px) scale(.98); } }
.screen-header { display: flex; justify-content: space-between; align-items: center; }
.screen-header > span { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 15px; }
.screen-header div { text-align: center; }
.screen-header small { font-size: 6px; letter-spacing: .17em; color: var(--rose); }
.screen-header h3 { margin: 2px 0 0; font: 400 20px var(--serif); }
.prompt-count { margin: 37px 0 0; text-align: center; color: #a08e97; font-size: 7px; letter-spacing: .14em; }
.prompt-orb { width: 78px; height: 78px; margin: 24px auto 18px; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 33% 26%, #fff, var(--blush)); box-shadow: 0 15px 35px color-mix(in srgb, var(--rose) 13%, transparent); }
.prompt-orb span { height: 48px; font: 400 64px/1 var(--serif); color: var(--rose); }
.screen-panel > h4 { max-width: 270px; margin: 0 auto; text-align: center; font: 400 27px/1.12 var(--serif); }
.answer-box { height: 110px; margin-top: 30px; padding: 15px; border: 1px solid var(--line); border-radius: 18px; color: #b2a2aa; font-size: 11px; background: white; }
.screen-button { width: 100%; margin-top: 12px; padding: 14px 16px; display: flex; justify-content: space-between; border: 0; border-radius: 15px; color: white; background: var(--rose); font-size: 11px; font-weight: 700; }
.waiting-copy { text-align: center; color: #8f7d86; font-size: 8px; }
.waiting-copy span { color: #22c55e; }
.story-photo { position: relative; overflow: hidden; border-radius: 22px; background: #cde4ff; }
.story-photo-main { height: 280px; margin-top: 24px; }
.photo-sky { position: absolute; inset: 0; background: linear-gradient(#e9c1c8 0 43%, #e6ac8c 44% 60%, #71896a 61%); }
.photo-sun { position: absolute; width: 55px; height: 55px; border-radius: 50%; top: 52px; right: 55px; background: #ffdf9a; box-shadow: 0 0 60px #fff3bd; }
.photo-hills { position: absolute; inset: 50% -20% -20%; background: #445d45; clip-path: polygon(0 65%, 18% 32%, 35% 54%, 51% 18%, 68% 60%, 84% 35%, 100% 55%, 100% 100%, 0 100%); }
.photo-date { position: absolute; bottom: 14px; left: 14px; padding: 7px 9px; border-radius: 99px; color: white; background: rgba(0,0,0,.35); backdrop-filter: blur(8px); font-size: 7px; letter-spacing: .1em; }
.story-meta { display: flex; justify-content: space-between; margin: 13px 2px 0; color: var(--ink-soft); font-size: 9px; }
.story-meta span:last-child { color: var(--rose); font-size: 17px; }
.story-title { margin: 8px 0 5px !important; text-align: left !important; font-size: 24px !important; }
.story-copy { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.55; }
.memory-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 17px; }
.memory-strip div { height: 72px; border-radius: 12px; background: linear-gradient(145deg, #c4a889, #5a7259); }
.memory-strip div:nth-child(2) { background: linear-gradient(145deg, #efc6a8, #9c5661); }
.memory-strip div:nth-child(3) { display: grid; place-items: center; background: linear-gradient(145deg, #98b8c7, #3f5a69); color: white; font: 400 19px var(--serif); }
.plan-card { margin-top: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 6px 20px rgba(70,30,48,.05); display: flex; align-items: center; justify-content: space-between; }
.plan-card.featured { display: block; margin-top: 25px; padding: 18px; background: linear-gradient(135deg, #2a1a22, #4d2639); color: white; }
.plan-card > div { display: flex; align-items: center; gap: 11px; }
.plan-card.featured > small { display: block; margin-bottom: 14px; color: var(--rose-soft); font-size: 7px; letter-spacing: .12em; }
.plan-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--rose); background: var(--blush); }
.featured .plan-icon { color: white; background: rgba(255,255,255,.12); }
.plan-card h4 { margin: 0 !important; text-align: left !important; font: 600 12px var(--sans) !important; }
.plan-card p { margin: 4px 0 0; color: #9b8992; font-size: 8px; }
.plan-card b { color: var(--rose); font-size: 10px; }
.plan-progress { height: 4px; margin-top: 16px; border-radius: 99px; background: rgba(255,255,255,.15); }
.plan-progress i { width: 64%; display: block; height: 100%; border-radius: inherit; background: var(--rose-soft); }
.plan-title { display: flex; justify-content: space-between; margin: 24px 3px 3px; font-size: 9px; }
.plan-title span { color: var(--rose); }
.upcoming { margin-top: 24px; }
.upcoming > small { font-size: 7px; color: #a28f98; letter-spacing: .12em; }
.upcoming > div { display: flex; align-items: center; gap: 12px; margin-top: 9px; padding-top: 12px; border-top: 1px solid var(--line); }
.upcoming b { font: 400 28px var(--serif); color: var(--rose); }
.upcoming span { flex: 1; }
.upcoming span strong, .upcoming span small { display: block; font-size: 9px; }
.upcoming span small { margin-top: 3px; color: #a18d97; }
.upcoming i { font-style: normal; color: var(--rose); }

.moments { padding: 150px 0; }
.moments-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; align-items: end; margin-bottom: 65px; }
.moments-heading .section-kicker { grid-column: 1 / -1; }
.moments-heading h2 { margin-bottom: 0; }
.moments-heading > p:last-child { max-width: 440px; color: var(--ink-soft); line-height: 1.7; }
.bento-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.bento-card { min-height: 350px; position: relative; overflow: hidden; padding: 36px; border: 1px solid var(--line); border-radius: 34px; background: white; box-shadow: 0 18px 55px rgba(72, 34, 52, .06); }
.bento-wide { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; background: linear-gradient(145deg, white, var(--paper-deep)); }
.bento-tall { grid-row: span 2; min-height: 720px; background: #f2e9e2; }
.bento-number { display: block; margin-bottom: 40px; font: italic 15px var(--serif); color: var(--rose); }
.bento-card h3 { margin: 0 0 13px; font: 400 34px/1.05 var(--serif); }
.bento-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }
.mini-pill { display: inline-block; margin-top: 24px; padding: 8px 12px; border-radius: 99px; color: var(--rose); background: var(--blush); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.chat-art { align-self: center; position: relative; height: 250px; }
.bubble { position: absolute; max-width: 250px; padding: 15px 17px; border-radius: 18px; font-size: 12px; line-height: 1.45; box-shadow: 0 14px 35px rgba(60,20,40,.1); }
.bubble-one { top: 12px; left: 5px; background: white; border-bottom-left-radius: 5px; }
.bubble-two { top: 102px; right: 0; color: white; background: var(--rose); border-bottom-right-radius: 5px; }
.typing { position: absolute; left: 25px; top: 190px; display: flex; gap: 4px; padding: 10px 13px; border-radius: 99px; background: white; }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: #c0aab5; animation: typing 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .18s; }.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes typing { 50% { transform: translateY(-4px); opacity: .4; } }
.polaroids { height: 400px; position: relative; margin-top: 48px; }
.polaroid { position: absolute; width: 210px; padding: 11px 11px 20px; background: #fffdf9; box-shadow: 0 18px 38px rgba(45, 30, 20, .18); }
.polaroid span { display: block; margin-top: 9px; text-align: center; font: italic 16px var(--serif); }
.mini-photo { height: 180px; background: linear-gradient(150deg, #f7bfa4, #8c6475); }
.mini-photo.two { background: linear-gradient(150deg, #aad0ce, #d6a87b); }
.mini-photo.three { background: linear-gradient(150deg, #e4ba8c, #637654); }
.p-one { left: -25px; top: 10px; transform: rotate(-9deg); }.p-two { right: -20px; top: 58px; transform: rotate(10deg); }.p-three { left: 52px; top: 165px; transform: rotate(-2deg); }
.bento-small { min-height: 350px; padding-right: 230px; display: flex; align-items: flex-end; }
.bento-small .bento-number { margin-bottom: 22px; }
.bento-icon { position: absolute; top: 48px; right: 57px; width: 130px; height: 130px; display: grid; place-items: center; border-radius: 50%; color: var(--rose); background: var(--blush); font: 400 68px var(--serif); transform: rotate(-7deg); }
.dark-card { color: white; background: #1a1517; }
.dark-card p { color: #bcaeb5; }
.constellation { position: absolute; right: 20px; top: 15px; width: 250px; height: 185px; }
.constellation svg { width: 100%; height: 100%; }
.constellation path { fill: none; stroke: rgba(255,255,255,.17); stroke-width: 1; stroke-dasharray: 4 5; }
.constellation i { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--rose-soft); box-shadow: 0 0 20px var(--rose); }
.constellation i:nth-child(1) { left: 25px; top: 132px; }.constellation i:nth-child(2) { left: 82px; top: 69px; }.constellation i:nth-child(3) { left: 148px; top: 98px; }.constellation i:nth-child(4) { left: 215px; top: 28px; }

.privacy { padding: 140px 0; background: var(--paper-deep); }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.privacy-art { min-height: 540px; display: grid; place-items: center; position: relative; }
.privacy-orbit { width: 420px; height: 420px; position: relative; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--rose) 16%, transparent); border-radius: 50%; box-shadow: 0 0 0 55px color-mix(in srgb, var(--rose) 3%, transparent), 0 0 0 110px color-mix(in srgb, var(--rose) 2%, transparent); }
.privacy-orbit::before, .privacy-orbit::after { content: ""; position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 8px color-mix(in srgb, var(--rose) 10%, transparent); }
.privacy-orbit::before { top: 31px; left: 72px; }.privacy-orbit::after { right: 19px; bottom: 101px; }
.privacy-orbit b { position: absolute; width: 68px; height: 68px; display: grid; place-items: center; color: white; border: 5px solid var(--paper-deep); border-radius: 50%; background: var(--rose); box-shadow: 0 15px 40px color-mix(in srgb, var(--rose) 20%, transparent); }
.privacy-orbit b:nth-of-type(1) { top: 2px; right: 72px; }.privacy-orbit b:nth-of-type(2) { left: 4px; bottom: 65px; background: var(--ink); }
.lock { width: 160px; height: 160px; display: grid; place-items: center; border-radius: 48px; background: white; box-shadow: var(--shadow); transform: rotate(-3deg); }
.lock span { width: 59px; height: 55px; margin-top: -33px; border: 10px solid var(--rose); border-bottom: 0; border-radius: 40px 40px 0 0; }
.lock i { position: absolute; width: 75px; height: 62px; bottom: 39px; border-radius: 15px; background: var(--rose); }
.lock i::after { content: ""; position: absolute; width: 8px; height: 20px; left: 50%; top: 20px; translate: -50% 0; border-radius: 99px; background: white; }
.privacy-copy > p:not(.section-kicker) { color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.privacy-copy ul { list-style: none; padding: 0; margin: 35px 0 0; }
.privacy-copy li { display: flex; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.privacy-copy li > span { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--rose); font-size: 10px; }
.privacy-copy li strong, .privacy-copy li small { display: block; }.privacy-copy li strong { font-size: 13px; }.privacy-copy li small { margin-top: 4px; color: var(--ink-soft); font-size: 11px; }

.quote-section { padding: 160px 0; text-align: center; }
.quote-mark { height: 60px; color: var(--rose); font: 400 92px/1 var(--serif); }
.quote-section blockquote { margin: 15px 0 20px; font: 400 clamp(40px, 5vw, 70px)/1.02 var(--serif); letter-spacing: -.035em; }
.quote-section p { color: var(--rose); font-size: 13px; font-weight: 700; }

.download { margin: 0 20px 20px; min-height: 690px; display: grid; place-items: center; position: relative; overflow: hidden; border-radius: 42px; color: white; background: #191416; }
.download::before, .download::after { content: ""; position: absolute; border-radius: 50%; filter: blur(10px); }
.download::before { width: 670px; height: 670px; left: -220px; bottom: -390px; background: radial-gradient(circle, color-mix(in srgb, var(--rose) 55%, transparent), transparent 68%); }
.download::after { width: 560px; height: 560px; right: -150px; top: -330px; background: radial-gradient(circle, color-mix(in srgb, var(--rose) 40%, transparent), transparent 68%); }
.download-noise { position: absolute; inset: 0; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
.download-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.download-inner > img { border-radius: 22px; margin-bottom: 26px; box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.download h2 { margin-top: 17px; font-size: clamp(60px, 6.7vw, 94px); }
.download h2 em { color: var(--rose-soft); }
.download-inner > p:not(.section-kicker) { margin-top: 0; color: #c4b9be; }
.store-row { display: flex; gap: 12px; margin-top: 22px; }
.store-button { min-width: 190px; padding: 11px 20px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(255,255,255,.08); transition: background .25s, transform .25s var(--ease); }
.store-button:hover { transform: translateY(-3px); background: rgba(255,255,255,.14); }
.store-icon { font-size: 26px; }.store-icon.triangle { font-size: 22px; }
.store-button span:last-child { text-align: left; }.store-button small, .store-button strong { display: block; }.store-button small { font-size: 8px; color: #bcaeb5; }.store-button strong { font-size: 15px; }
.toast { position: absolute; left: 50%; bottom: -62px; transform: translate(-50%, 10px); width: max-content; max-width: 90vw; padding: 12px 17px; border-radius: 99px; background: white; color: var(--ink); font-size: 11px; box-shadow: 0 15px 40px rgba(0,0,0,.25); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.site-footer { padding: 32px 0 42px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-brand { font-size: 25px; }.footer-inner > p { color: var(--ink-soft); font: italic 17px var(--serif); }
.footer-links { display: flex; gap: 20px; font-size: 11px; color: var(--ink-soft); }
.footer-links a:hover { color: var(--rose); }
.footer-links span a { color: var(--ink); font-weight: 700; }

.demo-modal { width: min(540px, calc(100% - 32px)); padding: 52px; border: 1px solid var(--line); border-radius: 32px; color: var(--ink); background: var(--paper); box-shadow: 0 40px 120px rgba(35, 14, 24, .35); }
.demo-modal::backdrop { background: rgba(24, 15, 19, .64); backdrop-filter: blur(8px); }
.demo-modal h2 { margin: 15px 0 25px; font: 400 46px/.95 var(--serif); }
.modal-close { position: absolute; top: 17px; right: 17px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; }
.demo-steps { margin: 0 0 28px; }
.demo-steps div { display: flex; gap: 13px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); }
.demo-steps span { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--rose); background: var(--blush); font-size: 10px; font-weight: 700; }
.demo-steps p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .hero { min-height: auto; padding-top: 150px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { padding-top: 20px; }
  .hero h1, .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .scroll-cue { display: none; }
  .feature-grid, .privacy-grid { grid-template-columns: 1fr; }
  .feature-copy { text-align: center; }.feature-intro { margin-inline: auto; }.feature-tab { max-width: 600px; margin-inline: auto; }
  .phone-showcase { min-height: 730px; }
  .privacy-grid { gap: 20px; }.privacy-copy { max-width: 680px; margin-inline: auto; }
  .bento-small { padding-right: 170px; }.bento-icon { width: 100px; height: 100px; right: 35px; }
}

@media (max-width: 740px) {
  .section-shell { width: min(100% - 32px, 580px); }
  .site-header { height: 62px; border-radius: 20px; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(20px); border-color: var(--line); }
  .brand { font-size: 25px; }.brand img { width: 36px; height: 36px; }
  .nav-actions { display: none; }
  .menu-button { width: 42px; height: 42px; display: block; position: relative; border: 0; border-radius: 50%; background: var(--ink); }
  .menu-button span { position: absolute; left: 12px; width: 18px; height: 1.5px; background: white; transition: transform .3s, top .3s; }.menu-button span:first-child { top: 17px; }.menu-button span:last-child { top: 24px; }
  .menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }.menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
  .mobile-nav { position: absolute; top: 69px; left: 0; right: 0; padding: 16px; display: flex; flex-direction: column; gap: 4px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: 0 18px 50px rgba(48, 21, 34, .15); opacity: 0; transform: translateY(-8px); visibility: hidden; transition: .25s var(--ease); }
  .mobile-nav.open { opacity: 1; transform: translateY(0); visibility: visible; }
  .mobile-nav a { padding: 12px; font-weight: 600; }
  .hero { padding-top: 120px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { margin-top: 22px; font-size: clamp(55px, 17vw, 78px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .trust-row { margin-top: 35px; gap: 11px; }
  .hero-visual { min-height: 590px; transform: scale(.85); margin: -5px -50px -40px; }
  .hero-visual::before { width: 500px; height: 500px; }.orbit-one { width: 570px; height: 570px; }.orbit-two { width: 430px; height: 430px; }
  .note-one { left: 3%; }.note-two { right: 1%; }
  .manifesto { padding: 100px 0; }.manifesto h2 { font-size: 48px; }
  .feature-stage { padding: 90px 0; }.feature-copy h2, .moments h2, .privacy-copy h2 { font-size: 52px; }
  .feature-tab { grid-template-columns: 30px 1fr; }.feature-tab strong { font-size: 22px; }
  .phone-showcase { min-height: 680px; margin: 0 -20px; transform: scale(.9); }
  .moments { padding: 100px 0; }.moments-heading { display: block; }.moments-heading > p:last-child { margin-top: 20px; }
  .bento-grid { grid-template-columns: 1fr; }.bento-card { min-height: 360px; padding: 27px; }.bento-wide { grid-template-columns: 1fr; min-height: 610px; }.chat-art { height: 230px; }.bento-tall { min-height: 650px; grid-row: auto; }.polaroids { transform: scale(.9); margin-inline: -15px; }.bento-small { padding-right: 130px; }.bento-small h3 { font-size: 29px; }.bento-icon { top: 35px; right: 30px; width: 90px; height: 90px; }.constellation { opacity: .5; }
  .privacy { padding: 90px 0; }.privacy-art { min-height: 420px; transform: scale(.8); margin: -40px; }.privacy-copy h2 { margin-top: 15px; }
  .quote-section { padding: 110px 0; }.quote-section blockquote { font-size: 43px; }
  .download { min-height: 650px; margin: 0 8px 8px; border-radius: 30px; }.download h2 { font-size: 57px; }.store-row { flex-direction: column; }.store-button { min-width: 220px; }
  .footer-inner { flex-direction: column; gap: 18px; text-align: center; }.footer-links { flex-wrap: wrap; justify-content: center; }
  .demo-modal { padding: 45px 26px 30px; }.demo-modal h2 { font-size: 42px; }
  .cursor-glow { display: none; }
}

@media (max-width: 400px) {
  .hero-visual { transform: scale(.76); margin-top: -35px; margin-bottom: -85px; }
  .floating-note { min-width: 135px; }.note-one { left: 7%; }.note-two { right: 5%; }
  .phone-showcase { transform: scale(.82); margin-top: -35px; margin-bottom: -60px; }
  .bento-small { padding-right: 30px; padding-top: 150px; }.bento-icon { left: 27px; }
}

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