@font-face {
  font-family: "Polly Hand";
  src: url("/assets/BradleyHandBold.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: light;
  --cream: #f3ead5;
  --cream-deep: #e7dbc0;
  --paper: #fffaf0;
  --ink: #1d1b18;
  --soft: #655f54;
  --line: rgba(29, 27, 24, .17);
  --coral: #b7432f;
  --orange: #f28a36;
  --yellow: #f6c743;
  --green: #53a865;
  --blue: #418bc6;
  --teal: #4fa6a4;
  --brown: #7d4a28;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --shadow: 8px 9px 0 var(--ink);
  --display: "Avenir Next Rounded", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", "Trebuchet MS", sans-serif;
  --hand: "Polly Hand", "Bradley Hand", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; min-width: 320px; color: var(--ink); background: var(--cream); font-family: var(--body); line-height: 1.55; overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: 12px; padding: 10px 14px; border-radius: 10px; background: var(--ink); color: var(--paper); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.site-header { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 11px; }
.brand span, .footer-brand > span { font-family: var(--hand); font-size: 1.6rem; line-height: 1; letter-spacing: .02em; }
nav { justify-self: center; display: flex; align-items: center; gap: 4px; }
nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 13px; border-radius: 12px; color: var(--soft); font-size: .85rem; font-weight: 800; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--ink); background: rgba(29, 27, 24, .07); }
.nav-pill { min-height: 42px; display: inline-flex; align-items: center; padding: 0 17px; border: 2px solid var(--ink); border-radius: 999px; font-size: .78rem; font-weight: 900; text-decoration: none; box-shadow: 3px 3px 0 var(--yellow); }

.hero { min-height: calc(100svh - 82px); padding: clamp(44px, 6vw, 82px) 0 78px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr); gap: clamp(34px, 5vw, 74px); align-items: center; }
.hero > * { min-width: 0; }
.film-mark { width: 194px; height: 12px; display: grid; grid-template-columns: repeat(5, 1fr); margin-bottom: 30px; overflow: hidden; border-radius: 2px; }
.film-mark i:nth-child(1) { background: var(--coral); } .film-mark i:nth-child(2) { background: var(--orange); } .film-mark i:nth-child(3) { background: var(--yellow); } .film-mark i:nth-child(4) { background: var(--green); } .film-mark i:nth-child(5) { background: var(--blue); }
.eyebrow, .section-number { margin: 0 0 14px; color: var(--soft); font-size: .74rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -.055em; line-height: .98; }
h1 { margin: 0; font-size: clamp(3.7rem, 7.2vw, 7.1rem); }
h1 em { color: var(--coral); font-family: var(--hand); font-size: .87em; font-style: normal; font-weight: 700; letter-spacing: -.035em; }
h2 { margin: 0; font-size: clamp(3rem, 5.7vw, 6rem); }
h3 { margin: 0; font-size: 1.45rem; }
.hero-lede { max-width: 590px; margin: 27px 0 0; color: var(--soft); font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 0 22px; border: 2px solid var(--ink); border-radius: 14px; font-size: .9rem; font-weight: 900; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.button > span { min-width: 0; }
.button-dark { background: var(--ink); color: var(--paper); box-shadow: 5px 5px 0 var(--yellow); }
.button-quiet { background: rgba(255, 250, 240, .45); }
.button-apple { gap: 11px; padding-inline: 18px; }
.button-apple svg { width: 21px; height: 21px; flex: 0 0 auto; fill: currentColor; }
.button-apple span { display: grid; line-height: 1.05; }
.button-apple small { margin-top: 4px; color: var(--soft); font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.button:hover { transform: translate(-2px, -2px); }
.button-dark:hover { box-shadow: 8px 8px 0 var(--yellow); }
.micro-facts { display: flex; flex-wrap: wrap; gap: 9px 18px; margin: 30px 0 0; padding: 0; color: var(--soft); font-size: .78rem; font-weight: 800; list-style: none; }
.micro-facts li::before { content: "✦"; margin-right: 7px; color: var(--coral); }

.hero-demo { position: relative; min-height: 720px; display: grid; grid-template-columns: minmax(280px, 355px) 154px; grid-template-rows: auto auto; column-gap: 15px; row-gap: 18px; align-content: center; justify-content: center; isolation: isolate; }
.hero-demo::before { content: ""; position: absolute; z-index: -3; width: 480px; height: 480px; left: 50%; top: 46%; border-radius: 50%; background: var(--yellow); opacity: .56; transform: translate(-50%, -50%); }
.hero-demo::after { content: ""; position: absolute; z-index: -2; inset: 3% -4%; opacity: .22; background-image: radial-gradient(var(--brown) .8px, transparent .8px); background-size: 9px 9px; mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent); }
.demo-print { position: absolute; z-index: -1; width: 174px; left: -32px; bottom: 72px; margin: 0; padding: 9px 9px 31px; background: var(--paper); box-shadow: 0 16px 35px rgba(70, 51, 25, .2); transform: rotate(-9deg); }
.demo-print img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: saturate(.84) contrast(.96); }
.demo-print figcaption { margin-top: 7px; font-family: var(--hand); font-size: .96rem; text-align: center; }
.demo-device-wrap { position: relative; z-index: 2; grid-column: 1; width: 100%; }
.demo-kicker { width: max-content; max-width: 100%; margin: 0 auto 10px; display: flex; align-items: center; gap: 8px; color: var(--soft); font-size: .67rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.demo-kicker span { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(183, 67, 47, .13); animation: demo-live 1.7s ease-in-out infinite; }
@keyframes demo-live { 50% { box-shadow: 0 0 0 7px rgba(183, 67, 47, 0); } }
.demo-device { position: relative; width: min(100%, 340px); margin-inline: auto; padding: 31px 10px 14px; border: 3px solid var(--ink); border-radius: 57px; background: #171511; box-shadow: 12px 14px 0 var(--coral), 0 30px 60px rgba(67, 48, 25, .2); }
.demo-island { position: absolute; z-index: 5; width: 92px; height: 23px; left: 50%; top: 8px; border-radius: 999px; background: #050504; transform: translateX(-50%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.demo-screen { position: relative; overflow: hidden; width: 100%; display: block; padding: 0; border: 0; aspect-ratio: 886 / 1920; border-radius: 42px; background: #0a0908; cursor: pointer; }
.demo-screen video { width: 100%; height: 100%; display: block; object-fit: cover; }
.demo-screen:focus-visible { outline-color: var(--yellow); outline-offset: -5px; }
.demo-tap-hint { position: absolute; z-index: 3; left: 50%; bottom: 15px; padding: 7px 12px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; background: rgba(20,18,14,.72); color: #fffaf0; font-size: .65rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; opacity: 0; transform: translate(-50%, 5px); transition: opacity .18s ease, transform .18s ease; white-space: nowrap; backdrop-filter: blur(8px); }
.demo-screen:hover .demo-tap-hint, .demo-screen:focus-visible .demo-tap-hint { opacity: 1; transform: translate(-50%, 0); }
.demo-home { width: 105px; height: 4px; margin: 9px auto 0; border-radius: 99px; background: rgba(255,255,255,.82); }
.demo-controls { width: min(100% - 34px, 304px); min-height: 38px; margin: 12px auto 0; display: flex; align-items: center; gap: 10px; }
.demo-play { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; padding: 0; border: 2px solid var(--ink); border-radius: 10px; background: var(--paper); color: var(--ink); cursor: pointer; box-shadow: 3px 3px 0 var(--yellow); }
.demo-play svg { grid-area: 1 / 1; width: 14px; height: 14px; fill: currentColor; }
.demo-play .icon-pause { display: none; }
.demo-play.is-playing .icon-pause { display: block; }
.demo-play.is-playing .icon-play { display: none; }
.demo-progress { flex: 1; display: flex; }
.demo-progress input { width: 100%; height: 18px; margin: 0; appearance: none; background: transparent; cursor: pointer; }
.demo-progress input::-webkit-slider-runnable-track { height: 4px; border-radius: 0; background: var(--ink); }
.demo-progress input::-webkit-slider-thumb { width: 10px; height: 16px; margin-top: -6px; appearance: none; border: 2px solid var(--ink); border-radius: 2px; background: var(--yellow); }
.demo-progress input::-moz-range-track { height: 4px; background: var(--ink); }
.demo-progress input::-moz-range-thumb { width: 8px; height: 14px; border: 2px solid var(--ink); border-radius: 2px; background: var(--yellow); }
.demo-time { flex: 0 0 auto; color: var(--soft); font-size: .63rem; font-weight: 900; font-variant-numeric: tabular-nums; }
.demo-chapters { z-index: 3; grid-column: 2; display: grid; align-content: center; gap: 9px; }
.demo-chapters button { min-height: 58px; display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 8px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,250,240,.73); color: var(--soft); font-size: .72rem; font-weight: 900; text-align: left; cursor: pointer; transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease; }
.demo-chapters button span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; background: rgba(29,27,24,.08); font-size: .64rem; }
.demo-chapters button:hover { transform: translateX(3px); color: var(--ink); }
.demo-chapters button.is-active { border-color: var(--ink); background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--yellow); }
.demo-chapters button.is-active span { background: var(--coral); color: var(--paper); }
.demo-note { z-index: 3; grid-column: 1 / -1; max-width: 480px; margin: 0 auto; color: var(--soft); font-family: var(--hand); font-size: 1rem; line-height: 1.25; text-align: center; transform: rotate(-1deg); }

.ticker { width: 100%; overflow: hidden; border-block: 2px solid var(--ink); background: var(--ink); color: var(--cream); }
.ticker div { width: max-content; padding: 15px 0; font-family: var(--display); font-size: .84rem; font-weight: 900; letter-spacing: .12em; white-space: nowrap; animation: ticker 34s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }

.feature-intro { padding: 118px 0 70px; display: grid; grid-template-columns: .55fr 1.45fr .9fr; gap: clamp(24px, 5vw, 70px); align-items: end; }
.feature-intro h2 { max-width: 720px; }
.section-copy { margin: 0; color: var(--soft); font-size: 1.05rem; }
.feature-stage { padding-bottom: 130px; display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 140px); align-items: center; }
.phone-showcase { position: relative; max-width: 430px; margin-inline: auto; }
.phone-shell { overflow: hidden; border: 9px solid var(--ink); border-radius: 52px; background: var(--ink); box-shadow: 14px 16px 0 var(--yellow); }
.phone-shell img { width: 100%; }
.tape-label { position: absolute; right: -44px; top: 44%; padding: 11px 23px; background: rgba(255, 250, 240, .88); font-family: var(--hand); font-size: 1.45rem; transform: rotate(7deg); box-shadow: 0 4px 12px rgba(29,27,24,.14); }
.feature-list { display: grid; gap: 16px; }
.feature-list article { display: grid; grid-template-columns: 62px 1fr; gap: 20px; align-items: start; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,250,240,.48); }
.feature-list article:nth-child(2) { margin-left: 42px; }
.feature-list p { margin: 9px 0 0; color: var(--soft); }
.feature-icon { width: 54px; height: 54px; display: block; position: relative; border: 2px solid var(--ink); border-radius: 18px; background: var(--paper); }
.feature-icon::before, .feature-icon::after { content: ""; position: absolute; }
.feature-icon.sun::before { inset: 14px; border-radius: 50%; background: var(--yellow); border: 2px solid var(--ink); }
.feature-icon.shutter::before { width: 24px; height: 24px; left: 13px; top: 13px; border: 3px solid var(--ink); border-radius: 50%; background: var(--coral); }
.feature-icon.note::before { width: 26px; height: 30px; left: 12px; top: 10px; border: 2px solid var(--ink); background: var(--cream); transform: rotate(-5deg); }
.feature-icon.note::after { width: 13px; height: 2px; left: 19px; top: 23px; background: var(--ink); box-shadow: 0 5px var(--ink); }

.mood-section { position: relative; overflow: hidden; background: var(--coral); color: var(--paper); }
.mood-section::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: radial-gradient(#2a1710 1px, transparent 1px); background-size: 9px 9px; }
.mood-inner { position: relative; padding: 120px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.light { color: rgba(255,250,240,.72); }
.mood-copy h2 { max-width: 620px; }
.mood-copy > p:not(.eyebrow):not(.section-number) { max-width: 560px; margin: 28px 0; color: rgba(255,250,240,.84); font-size: 1.12rem; }
.check-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; font-weight: 800; }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 25px; height: 25px; margin-right: 11px; border: 2px solid currentColor; border-radius: 50%; font-size: .72rem; }
.mood-visual { position: relative; width: min(100%, 470px); margin-inline: auto; }
.phone-shell-light { border-color: var(--paper); box-shadow: 15px 17px 0 var(--ink); }
.mood-note { position: absolute; right: -85px; bottom: 15%; padding: 17px 22px; background: var(--yellow); color: var(--ink); font-family: var(--hand); font-size: 1.4rem; line-height: 1.1; transform: rotate(7deg); box-shadow: 6px 6px 0 var(--ink); }

.keepsakes { padding: 130px 0; display: grid; grid-template-columns: 1.1fr .7fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.keepsake-copy > p:not(.section-number) { max-width: 650px; color: var(--soft); font-size: 1.08rem; }
.keepsake-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 42px; }
.keepsake-cards div { min-height: 154px; padding: 20px; border: 2px solid var(--ink); border-radius: 18px; background: var(--paper); }
.keepsake-cards div:nth-child(1) { box-shadow: 5px 5px 0 var(--coral); } .keepsake-cards div:nth-child(2) { box-shadow: 5px 5px 0 var(--yellow); } .keepsake-cards div:nth-child(3) { box-shadow: 5px 5px 0 var(--teal); }
.keepsake-cards strong, .keepsake-cards span { display: block; }
.keepsake-cards strong { font-family: var(--display); line-height: 1.1; }
.keepsake-cards span { margin-top: 10px; color: var(--soft); font-size: .83rem; }
.keepsake-visual { max-height: 670px; overflow: hidden; border: 8px solid var(--paper); border-radius: 44px; box-shadow: 13px 15px 0 var(--ink); transform: rotate(3deg); }
.keepsake-visual img { width: 100%; }

.privacy-band { padding: 94px 0; border-block: 2px solid var(--ink); background: var(--yellow); }
.privacy-band .eyebrow { color: #3a362f; }
.privacy-grid { display: grid; grid-template-columns: 110px 1.1fr .9fr; gap: clamp(28px, 5vw, 76px); align-items: center; }
.privacy-lock { width: 92px; height: 80px; position: relative; border: 5px solid var(--ink); border-radius: 18px; background: var(--paper); box-shadow: 7px 7px 0 var(--ink); }
.privacy-lock::before { content: ""; position: absolute; width: 43px; height: 40px; left: 19px; top: -38px; border: 5px solid var(--ink); border-bottom: 0; border-radius: 24px 24px 0 0; }
.privacy-lock span { position: absolute; width: 10px; height: 22px; left: 36px; top: 27px; border-radius: 10px; background: var(--ink); }
.privacy-grid h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.privacy-copy p { margin: 0 0 20px; }
.privacy-copy a { font-weight: 900; text-underline-offset: 5px; }

.plans { padding: 126px 0; }
.plans-heading { max-width: 860px; }
.plans-heading > p:last-child { max-width: 670px; color: var(--soft); font-size: 1.06rem; }
.plan-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-grid article { min-height: 265px; padding: 30px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--paper); box-shadow: 7px 8px 0 var(--ink); }
.plan-grid article > span { font-family: var(--hand); color: var(--coral); font-size: 1.3rem; }
.plan-grid h3 { margin-top: 18px; font-size: 2rem; }
.plan-grid .price { margin: 22px 0 4px; font-family: var(--display); font-size: 2.9rem; font-weight: 900; line-height: 1; letter-spacing: -.05em; }
.plan-grid article > p:last-child { color: var(--soft); }
.plan-grid .plan-featured { background: var(--ink); color: var(--paper); box-shadow: 7px 8px 0 var(--yellow); transform: translateY(-16px) rotate(-1deg); }
.plan-grid .plan-featured > span { color: var(--yellow); }
.plan-grid .plan-featured > p:last-child { color: rgba(255,250,240,.69); }
.plan-fineprint { margin: 30px 0 0; color: var(--soft); font-size: .82rem; }

.coming-soon { padding: 80px 0; background: var(--ink); color: var(--paper); }
.coming-inner { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(28px, 5vw, 70px); align-items: center; }
.coming-inner img { width: 130px; border-radius: 28px; box-shadow: 8px 8px 0 var(--yellow); }
.coming-inner h2 { font-size: clamp(2.7rem, 5vw, 5.2rem); }
.coming-inner p:last-child { color: rgba(255,250,240,.66); }
.coming-badge { min-width: 170px; padding: 16px 18px; border: 2px solid var(--paper); border-radius: 16px; }
.store-actions { display: grid; gap: 10px; }
.coming-badge { display: block; text-decoration: none; transition: transform .18s ease, background .18s ease, color .18s ease; }
.coming-badge:hover { transform: translate(-2px, -2px); background: var(--paper); color: var(--ink); }
.coming-badge-live { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
.coming-badge span, .coming-badge strong { display: block; }
.coming-badge span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.coming-badge strong { font-family: var(--display); font-size: 1.2rem; }

.site-footer { padding: 70px 0 46px; border-top: 1px solid var(--line); background: #e7dbc1; }
.footer-grid { display: grid; grid-template-columns: 1.8fr .7fr .7fr 1fr; gap: 42px; align-items: start; }
.footer-brand p, .copyright { color: var(--soft); font-size: .84rem; }
.footer-grid > div:not(.footer-brand) { display: grid; gap: 9px; }
.footer-grid strong { margin-bottom: 5px; font-family: var(--display); font-size: .85rem; }
.footer-grid a { color: var(--soft); font-size: .84rem; text-decoration: none; }
.footer-grid a:hover { color: var(--ink); text-decoration: underline; }
.copyright { margin: 0; }

/* Legal and support pages */
.content-page { background: #ede3cd; }
.content-page .site-header { border-bottom: 1px solid var(--line); }
.page-hero { padding: 78px 0 52px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.page-hero h1 { max-width: 850px; font-size: clamp(3.5rem, 7vw, 7.4rem); }
.page-hero .summary { margin: 0 0 10px; color: var(--soft); font-size: 1.08rem; }
.legal-layout { padding-bottom: 100px; display: grid; grid-template-columns: 230px minmax(0, 790px); gap: clamp(40px, 7vw, 100px); align-items: start; }
.legal-nav { position: sticky; top: 28px; display: grid; gap: 6px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,250,240,.55); }
.legal-nav strong { margin-bottom: 5px; font-family: var(--display); font-size: .82rem; }
.legal-nav a { padding: 7px 9px; border-radius: 9px; color: var(--soft); font-size: .82rem; text-decoration: none; }
.legal-nav a:hover { color: var(--ink); background: rgba(29,27,24,.07); }
.document { padding: clamp(28px, 5vw, 58px); border: 2px solid var(--ink); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 10px 11px 0 var(--ink); }
.document .updated { margin: 0 0 36px; color: var(--soft); font-size: .83rem; }
.document h2 { margin: 52px 0 14px; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.04em; }
.document h2:first-of-type { margin-top: 0; }
.document h3 { margin: 30px 0 8px; font-size: 1.15rem; letter-spacing: -.02em; }
.document p, .document li { color: #49443c; }
.document ul, .document ol { padding-left: 1.3rem; }
.document li + li { margin-top: 8px; }
.document a { font-weight: 800; text-underline-offset: 3px; }
.callout { margin: 30px 0; padding: 20px 22px; border-left: 7px solid var(--coral); border-radius: 0 14px 14px 0; background: var(--cream); }
.callout p { margin: 0; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 25px 0; }
.support-card { padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: var(--cream); }
.support-card h3 { margin: 0 0 7px; }
.support-card p { margin: 0; font-size: .9rem; }
.contact-card { margin-top: 48px; padding: 28px; border: 2px solid var(--ink); border-radius: 20px; background: var(--yellow); box-shadow: 6px 7px 0 var(--ink); }
.contact-card h2 { margin: 0 0 10px; }
.contact-card p { color: var(--ink); }
.contact-card a { display: inline-flex; min-height: 46px; align-items: center; margin-top: 5px; padding: 0 17px; border: 2px solid var(--ink); border-radius: 12px; background: var(--paper); text-decoration: none; }
.not-found { min-height: 72vh; display: grid; place-items: center; text-align: center; }
.not-found h1 { font-size: clamp(5rem, 14vw, 11rem); }
.not-found p { color: var(--soft); }

.reveal { animation: rise .8s cubic-bezier(.2,.75,.25,1) both; }
.reveal-late { animation-delay: .13s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 960px) {
  .site-header { grid-template-columns: auto 1fr; padding: 16px 0; }
  .site-header nav { grid-row: 2; grid-column: 1 / -1; justify-self: start; width: 100%; overflow-x: auto; }
  .nav-pill { justify-self: end; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 780px; }
  .hero-demo { width: min(700px, 100%); min-height: 740px; margin-inline: auto; grid-template-columns: minmax(280px, 370px) 174px; }
  .demo-print { left: 0; }
  .feature-intro { grid-template-columns: 1fr 2fr; }
  .feature-intro .section-copy { grid-column: 2; }
  .mood-note { right: -25px; }
  .privacy-grid { grid-template-columns: 90px 1fr; }
  .privacy-copy { grid-column: 2; }
  .keepsakes { grid-template-columns: 1fr .62fr; }
  .keepsake-cards { grid-template-columns: 1fr; }
  .keepsake-cards div { min-height: 0; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1180px); }
  .site-header { gap: 12px; }
  .site-header > * { min-width: 0; }
  .brand img { width: 38px; height: 38px; }
  .brand span { font-size: 1.4rem; }
  .nav-pill { display: none; }
  .site-header nav { min-width: 0; max-width: 100%; }
  nav a { padding-inline: 10px; }
  .hero { min-height: auto; padding: 50px 0 74px; }
  .hero-copy { width: 100%; max-width: 100%; overflow-wrap: anywhere; }
  h1 { font-size: clamp(3.25rem, 16vw, 5.4rem); }
  .hero-actions .button { width: 100%; }
  .button-apple span { display: inline-flex; align-items: baseline; gap: 8px; }
  .hero-demo { min-height: auto; margin-top: 22px; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto auto auto; row-gap: 18px; }
  .hero-demo::before { width: min(110vw, 430px); height: min(110vw, 430px); top: 38%; }
  .demo-device-wrap { width: min(84vw, 330px); margin-inline: auto; }
  .demo-print { width: 142px; left: -8px; bottom: 118px; }
  .demo-chapters { grid-column: 1; grid-row: 2; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .demo-chapters button { min-height: 52px; }
  .demo-note { grid-column: 1; grid-row: 3; max-width: 350px; }
  .feature-intro { padding-top: 82px; grid-template-columns: 1fr; }
  .feature-intro .section-copy { grid-column: auto; }
  .feature-stage, .mood-inner, .keepsakes { grid-template-columns: 1fr; }
  .feature-stage { padding-bottom: 90px; }
  .phone-showcase { width: min(90%, 420px); }
  .tape-label { right: -10px; }
  .feature-list article:nth-child(2) { margin-left: 0; }
  .mood-inner { padding: 88px 0; }
  .mood-visual { width: min(85%, 430px); }
  .mood-note { right: -32px; font-size: 1.05rem; }
  .keepsakes { padding: 90px 0; }
  .keepsake-visual { width: min(80%, 390px); margin-inline: auto; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-copy { grid-column: auto; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-grid .plan-featured { transform: none; }
  .coming-inner { grid-template-columns: 90px 1fr; }
  .coming-inner img { width: 90px; border-radius: 20px; }
  .store-actions { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .copyright { grid-column: 1 / -1; }
  .page-hero { padding-top: 55px; grid-template-columns: 1fr; gap: 20px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; overflow-x: auto; }
  .legal-nav strong { display: none; }
  .legal-nav a { flex: 0 0 auto; }
  .document { border-radius: 25px; box-shadow: 6px 7px 0 var(--ink); }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .demo-device-wrap { width: min(78vw, 286px); }
  .demo-device { border-radius: 49px; padding: 29px 8px 12px; box-shadow: 9px 10px 0 var(--coral), 0 24px 45px rgba(67, 48, 25, .2); }
  .demo-screen { border-radius: 36px; }
  .demo-print { width: 112px; left: -18px; bottom: 135px; }
  .demo-chapters button { grid-template-columns: 26px 1fr; padding-inline: 8px; font-size: .66rem; }
  .demo-chapters button span { width: 26px; height: 26px; }
  .store-actions { grid-template-columns: 1fr; }
  .micro-facts { gap: 7px 12px; }
}

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