:root {
  --paper: #faf7ea;
  --paper-2: #f3eed6;
  --surface: #ffffff;
  --ink: #17261e;
  --muted: #56655c;
  --line: rgba(23, 38, 30, 0.12);
  --accent: #1f6340;
  --accent-ink: #ffffff;
  --deep: #1a4f38;
  --deeper: #123a29;
  --cream: #f0ebcf;
  --leaf: #91d180;
  --leaf-2: #b8e69c;
  --tint: #e3efd9;
  --amber: #d6a73a;
  --bezel: #1c211e;
  --shadow: 0 30px 60px -30px rgba(18, 58, 41, 0.45), 0 12px 24px -16px rgba(18, 58, 41, 0.3);
  --radius: 22px;
  --display: ui-rounded, "SF Pro Rounded", "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --text: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --content: 1100px;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0f1a14;
    --paper-2: #132219;
    --surface: #18271f;
    --ink: #eef3ec;
    --muted: #a8b6ad;
    --line: rgba(238, 243, 236, 0.12);
    --accent: #6bd99c;
    --accent-ink: #0d2a1c;
    --tint: #1d3326;
    --bezel: #050806;
    --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8), 0 12px 24px -16px rgba(0, 0, 0, 0.6);
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.55 var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg { display: block; }
h1, h2 { font-family: var(--display); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
h3 { font-family: var(--text); font-weight: 650; font-size: 1.08rem; line-height: 1.3; margin: 0; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
p { margin: 0; }
a { color: inherit; }
figure { margin: 0; }
ol, ul { list-style: none; margin: 0; padding: 0; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.wrap { width: min(var(--content), 100% - 40px); margin-inline: auto; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 10;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 12px; text-decoration: none; font-weight: 600;
}
.skip:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.eyebrow {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}

.status { display: inline-flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--muted); }
.dot { width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(214, 167, 58, 0.22); }

/* Header */
.site-header { padding: 18px 0; }
.header-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: 1.15rem; }
.brand img { border-radius: 9px; }
.site-header nav { display: flex; flex-wrap: wrap; gap: 4px 26px; }
.site-header nav a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.site-header nav a:hover, .site-header nav a[aria-current] { color: var(--ink); }
@media (max-width: 640px) {
  .site-header nav { gap: 4px 18px; width: 100%; }
  .site-header nav a { font-size: 0.9rem; }
}

/* Devices. Each frame is a size container; everything inside is sized in em off the screen’s cqw font size, so a mockup scales as one piece. */
.phone, .tablet { container-type: inline-size; }
.screen {
  position: relative; overflow: hidden;
  background: #fbfcfa; color: #17261e;
  border: solid var(--bezel);
  box-shadow: var(--shadow);
  line-height: 1.3;
}
.phone .screen { aspect-ratio: 9 / 19.5; border-width: 3.4cqw; border-radius: 14cqw; font-size: 4.3cqw; background: #f2f3f0; }
.tablet .screen { aspect-ratio: 4 / 3; border-width: 2.2cqw; border-radius: 4.6cqw; font-size: 1.75cqw; }
.tablet.portrait .screen { aspect-ratio: 3 / 4; border-width: 2.8cqw; border-radius: 6cqw; font-size: 3cqw; }
.screen svg { width: 1em; height: 1em; flex: none; }
.island { position: absolute; top: 0.8em; left: 50%; transform: translateX(-50%); width: 32%; height: 1.9em; border-radius: 99px; background: #050605; z-index: 3; }

.link { color: #1f6340; display: inline-flex; align-items: center; gap: 0.3em; }
.strong { font-weight: 700; }
.muted { color: #6b7770; }

/* iOS-style grouped lists used across the phone screens */
.sheet-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: baseline; gap: 0.5em; margin-bottom: 1.2em; }
.sheet-nav b { grid-column: 2; font-weight: 650; white-space: nowrap; }
.sheet-nav .link:first-child { grid-column: 1; grid-row: 1; white-space: nowrap; }
.sheet-nav .link:last-child:not(:first-child) { grid-column: 3; justify-self: end; }
.group { background: #fff; border-radius: 0.9em; }
.row { display: flex; justify-content: space-between; align-items: center; gap: 0.8em; padding: 0.75em 0.9em; }
.row + .row { border-top: 1px solid #e3e6e1; }
.row.stack { flex-direction: column; align-items: flex-start; gap: 0.3em; }
.group-label { margin: 1.3em 0 0.45em 0.9em; color: #6b7770; font-size: 0.88em; }
.group-foot { margin: 0.6em 0.9em 0; color: #6b7770; font-size: 0.85em; }
.btn { display: inline-block; padding: 0.55em 1em; border-radius: 99px; background: #1f6340; color: #fff; font-weight: 650; white-space: nowrap; }
.btn.ghost { background: #ecefe9; color: #b3402e; }

/* Child library screen */
.lib { padding: 2.4em 3em; display: flex; flex-direction: column; gap: 1.1em; }
.lib-bar { display: flex; justify-content: space-between; color: #1f6340; font-weight: 600; }
.lib-bar span { display: inline-flex; align-items: center; gap: 0.5em; }
.lib-title { display: flex; align-items: center; gap: 0.45em; font: 800 2.3em/1 var(--display); letter-spacing: -0.02em; }
.avatar {
  --leaf-vein: #e3efd9;
  display: inline-grid; place-items: center; width: 1.25em; height: 1.25em; border-radius: 50%;
  background: #e3efd9; color: #1f6340; font-size: 0.8em; flex: none;
}
.avatar svg { width: 0.7em; height: 0.7em; }
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); background: #ecefe9; border-radius: 0.65em; padding: 0.2em; text-align: center; font-weight: 600; }
.segmented span { padding: 0.35em 0; border-radius: 0.5em; }
.segmented .on { background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12); }
.row-link { display: flex; align-items: center; gap: 0.55em; font-weight: 700; font-size: 1.1em; }
.row-link > span { display: inline-flex; align-items: center; gap: 0.55em; }
.row-link .chev { margin-left: auto; width: 0.8em; height: 0.8em; color: #9aa59e; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2em 1.2em; }
.card b { display: block; margin-top: 0.5em; font-size: 1.02em; line-height: 1.2; }
.card small { color: #6b7770; font-size: 0.88em; }
.card.fresh .thumb { box-shadow: 0 0 0 0.25em #fbfcfa, 0 0 0 0.5em #91d180; }
.thumb { aspect-ratio: 16 / 10; border-radius: 0.9em; display: grid; place-items: center; color: rgba(255, 255, 255, 0.92); font-size: 2.1em; }
.t1 { background: linear-gradient(135deg, #7cc4e8, #f2c46b 55%, #ef8a7a); }
.t2 { background: radial-gradient(circle at 70% 35%, #f5f0d6 0 16%, transparent 17%), linear-gradient(160deg, #203a5c, #3f5f8a); }
.t3 { background: linear-gradient(135deg, #f0a35e, #d86a4b); }
.t4 { background: radial-gradient(circle at 30% 120%, #d86a4b 0 35%, transparent 36%), radial-gradient(circle at 80% 110%, #f2c46b 0 30%, transparent 31%), linear-gradient(170deg, #cfe7c1, #91d180); }
.t5 { background: repeating-radial-gradient(ellipse at 50% 140%, #3f8fb0 0 8%, #5fb3cf 8% 14%), #3f8fb0; }
.t6 { background: linear-gradient(0deg, #3f8fb0 0 30%, transparent 30%), linear-gradient(160deg, #f5f0d6, #e8dcae); }

/* Share sheets */
.share { color: #17261e; }
.behind { padding: 3.6em 0.9em 0; background: #202522; height: 100%; }
.behind-video { aspect-ratio: 16 / 9; border-radius: 0.6em; display: grid; place-items: center; color: #fff; font-size: 2.2em; opacity: 0.6; }
.behind-video svg { width: 1em; height: 1em; }
.behind-line { height: 0.6em; margin-top: 0.8em; border-radius: 99px; background: rgba(255, 255, 255, 0.22); }
.behind-line.short { width: 60%; }
.sheet {
  position: absolute; inset: 24% 0 0 0;
  background: #f2f3f0; border-radius: 1.6em 1.6em 0 0; padding: 1.3em 1em;
  box-shadow: 0 -0.6em 2em rgba(0, 0, 0, 0.25);
}
.find { padding: 0.9em; margin-top: 0.2em; }
.find b { display: block; font-size: 1.3em; line-height: 1.15; }
.find small { display: block; margin-top: 0.4em; color: #6b7770; font-size: 0.82em; }

.sheet.system { inset: 44% 0 0 0; }
.share-item { display: flex; align-items: center; gap: 0.7em; padding-bottom: 0.9em; border-bottom: 1px solid #e3e6e1; }
.share-item > span { width: 3em; height: 3em; border-radius: 0.6em; flex: none; }
.share-item b { display: block; font-size: 0.95em; }
.share-item small { color: #6b7770; font-size: 0.8em; }
.apps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.4em; margin: 1em 0; text-align: center; font-size: 0.72em; color: #56655c; }
.app { display: flex; flex-direction: column; align-items: center; gap: 0.45em; line-height: 1.15; }
.app i, .app img { width: 4.4em; height: 4.4em; border-radius: 1.1em; background: #d9ddd7; }
.app.picked { color: #17261e; font-weight: 650; }
.app.picked img { box-shadow: 0 0 0 0.25em #f2f3f0, 0 0 0 0.55em #91d180; }

/* Form screens */
.form { padding: 3.6em 1em 1em; }
.form .hero-avatar { display: grid; width: 3.4em; height: 3.4em; margin: 0.4em auto 1.2em; font-size: 1.4em; }
.sym-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6em; padding: 0.9em; }
.sym-pick span { --leaf-vein: #e3efd9; display: grid; place-items: center; aspect-ratio: 1; border-radius: 50%; background: #e3efd9; color: #1f6340; font-size: 1.5em; }
.sym-pick span.on { background: #1f6340; color: #fff; --leaf-vein: #1f6340; }

/* Pairing screen */
.pair { padding: 2.6em 3em; display: flex; flex-direction: column; background: #f2f3f0; }
.pair-title { font: 800 2.2em/1 var(--display); letter-spacing: -0.02em; }
.pair-body { flex: 1; display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.4em; align-items: center; }
.pair-code { display: flex; flex-direction: column; align-items: center; gap: 1em; }
.qr { width: 72% !important; height: auto !important; aspect-ratio: 1; padding: 0.8em; background: #fff; color: #17261e; border-radius: 1em; }
.code { font: 700 1.2em/1.3 ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: 0.05em; text-align: center; }
.pair-confirm { display: flex; flex-direction: column; align-items: center; gap: 0.7em; text-align: center; background: #fff; border-radius: 1.2em; padding: 2em 1.4em; box-shadow: 0 1em 2em -1em rgba(0, 0, 0, 0.2); }
.pair-confirm b { font-size: 1.5em; line-height: 1.15; }
.pair-confirm .btn { margin-top: 0.6em; }

/* Hero */
.hero { padding: clamp(24px, 5vw, 64px) 0 clamp(64px, 9vw, 120px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); letter-spacing: -0.025em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.lede { margin-top: 22px; font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 34em; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.button {
  display: inline-flex; align-items: center; min-height: 48px; padding: 0 24px;
  background: var(--accent); color: var(--accent-ink); border-radius: 999px;
  text-decoration: none; font-weight: 650; font-size: 1rem;
  box-shadow: 0 8px 20px -10px rgba(31, 99, 64, 0.7);
  transition: transform 0.15s ease;
}
.button:hover { transform: translateY(-1px); }

/* The iPad sits behind and bleeds past the content edge; the share sheet is the subject. */
.hero-scene { position: relative; aspect-ratio: 1 / 0.82; }
.hero-tablet { position: absolute; top: 4%; left: 30%; width: 100%; }
.hero-phone { position: absolute; bottom: 0; left: 0; width: 37%; z-index: 1; }
.hero-phone .screen { box-shadow: 0 40px 70px -30px rgba(18, 58, 41, 0.6), 0 16px 30px -18px rgba(18, 58, 41, 0.45); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-scene { max-width: 560px; }
  .hero-phone { width: 40%; }
  .hero-tablet { left: 32%; }
}

/* How it works: one product strip */
.how { padding: clamp(64px, 9vw, 112px) 0; background: var(--paper-2); }
.how-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 16px 48px; align-items: end; }
.how-head p { color: var(--muted); font-size: 1.1rem; max-width: 30em; }
.strip {
  --gutter: max(20px, (100% - var(--content)) / 2);
  margin-top: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: 0.8fr 1.25fr 0.8fr 1.25fr; grid-template-rows: auto auto; column-gap: clamp(20px, 3vw, 40px);
  padding-inline: var(--gutter);
}
.frame { display: grid; grid-row: span 2; grid-template-rows: subgrid; min-width: 0; }
.frame-art {
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
  height: 100%;
}
.frame-art .phone { width: min(100%, 190px); }
.frame-art .tablet { width: 100%; }
.caption { padding-top: 20px; position: relative; }
.caption::before {
  content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--paper-2);
}
.step-n { display: block; font: 700 0.85rem/1 var(--text); color: var(--accent); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.step-n::before { content: "Step "; }
.caption p { margin-top: 8px; color: var(--muted); font-size: 0.96rem; }
.how-note { margin-top: 40px; color: var(--muted); font-size: 0.95rem; max-width: 640px; padding-left: 14px; border-left: 2px solid var(--leaf); }
.how-note.wrap { max-width: min(640px, 100% - 40px); margin-left: max(20px, (100% - var(--content)) / 2); margin-right: 20px; }

@media (max-width: 1000px) {
  .how-head { grid-template-columns: 1fr; }
  .strip {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 230px 300px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
    padding-bottom: 12px; scrollbar-width: thin;
  }
  .frame { scroll-snap-align: start; }
  .frame-art .phone { width: 170px; }
}

/* Library */
.library { padding: clamp(72px, 10vw, 128px) 0 clamp(64px, 9vw, 112px); }
.library-head { max-width: 640px; }
.library-head p { margin-top: 16px; color: var(--muted); font-size: 1.1rem; }
.library-stage { margin-top: clamp(40px, 5vw, 56px); display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.library-shot .tablet { width: 100%; }
.lib.roomy { padding: 2.2em 2.8em; gap: 1em; }
.lib.roomy .cards { gap: 1em 1.2em; }

.pin {
  display: inline-grid; place-items: center; width: 1.9em; height: 1.9em; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  font: 700 0.8rem/1 var(--text); font-style: normal; flex: none;
}
.screen .pin { background: #1f6340; color: #fff; }
.pin-host { position: relative; }
.pin-host > .pin { position: absolute; font-size: 0.95em; width: 1.8em; height: 1.8em; box-shadow: 0 0 0 0.25em #fbfcfa; }
.segmented .pin-host > .pin { top: -1.1em; right: 0.6em; }
.lib-bar .pin-host > .pin { top: -0.35em; left: -2.5em; }
.row-link .pin-host > .pin { top: -0.25em; right: -2.3em; }

.legend { display: grid; gap: 18px; }
.legend li { display: flex; gap: 14px; align-items: flex-start; }
.legend b { display: block; font-weight: 650; }
.legend div { color: var(--muted); font-size: 0.98rem; }
.legend b { color: var(--ink); font-size: 1.05rem; }
.ask { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.ask h3 { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; }
.ask p:not(.ask-bubble) { margin-top: 8px; margin-left: calc(1.9 * 0.8rem + 14px); color: var(--muted); font-size: 0.98rem; }
.ask-bubble {
  display: inline-block; margin: 0 0 16px calc(1.9 * 0.8rem + 14px); padding: 10px 16px;
  background: var(--accent); color: var(--accent-ink); font-weight: 600;
  border-radius: 18px 18px 18px 6px;
}

.symbols { margin-top: clamp(40px, 5vw, 56px); display: flex; align-items: center; gap: 14px 20px; flex-wrap: wrap; color: var(--muted); }
.symbols strong { color: var(--ink); font-weight: 650; }
.sym-row { display: flex; gap: 8px; }
.sym-row span {
  --leaf-vein: var(--tint);
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--tint); color: var(--accent); font-size: 20px;
}
.sym-row svg { width: 1em; height: 1em; }

@media (max-width: 900px) {
  .library-stage { grid-template-columns: 1fr; }
  .library-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
  .ask { margin-top: 0; padding-top: 0; border-top: 0; }
}
@media (max-width: 620px) {
  .library-notes { grid-template-columns: 1fr; }
  .ask { padding-top: 24px; border-top: 1px solid var(--line); }
}

/* Stays there */
.stay { padding: clamp(72px, 10vw, 120px) 0 clamp(72px, 10vw, 112px); background: var(--deeper); color: #eef3ec; }
.stay h2 { max-width: 14em; }
.stay-grid { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.viewer-web { margin-top: clamp(0px, 9vw, 120px); }
.viewer h3 { margin-top: 24px; font-size: 1.2rem; }
.viewer p { margin-top: 8px; color: #bfcdc4; max-width: 34em; }
.view { background: #fbfcfa; color: #17261e; border-radius: 18px; overflow: hidden; font-size: 0.85rem; box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7); border: 6px solid #0b0f0d; }
.view svg { width: 1em; height: 1em; }
.view-bar { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid #e6e9e4; }
.view-bar .x { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: #ecefe9; color: #1f6340; }
.view-bar b { font-weight: 650; }
.player { aspect-ratio: 16 / 9; background: #101412; position: relative; overflow: hidden; }
.player-bands { position: absolute; inset: 16% 18% 30%; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: radial-gradient(ellipse at 50% 100%, transparent 0 38%, #5aa2e0 39% 49%, #6cc27a 50% 60%, #f2c46b 61% 70%, #ef8a7a 71% 80%, transparent 81%); opacity: 0.5; }
.player-end { position: absolute; inset: auto 0 0; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; padding: 18px; background: linear-gradient(transparent, rgba(0, 0, 0, 0.55)); }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 999px; background: #ecefe9; color: #1f6340; font-weight: 600; font-size: 0.95rem; }
.pill.solid { background: #1f6340; color: #fff; }
.page { position: relative; padding: 14px 14px 72px; }
.page-hero { aspect-ratio: 16 / 8; border-radius: 12px; background: linear-gradient(160deg, #203a5c, #3f5f8a); display: grid; place-items: center; }
.moon { width: 18%; aspect-ratio: 1; border-radius: 50%; background: #f5f0d6; box-shadow: inset -12px 0 0 #c9c2a1; }
.line { height: 9px; margin-top: 10px; border-radius: 99px; background: #e2e6df; }
.line.short { width: 55%; }
.line.link-line { width: 40%; background: #8fb3d9; }
.toast {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  width: max-content; max-width: calc(100% - 28px);
  padding: 9px 14px; border-radius: 12px; background: rgba(23, 38, 30, 0.92); color: #fff;
  font-size: 0.82rem; font-weight: 600; text-align: center;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 820px) {
  .stay-grid { grid-template-columns: 1fr; }
  .viewer-web { margin-top: 0; width: min(100%, 460px); margin-left: auto; }
}

.remove-note { display: flex; gap: 12px; align-items: flex-start; padding: 28px 0 0; color: var(--muted); max-width: min(720px, 100% - 40px); margin-left: max(20px, (100% - var(--content)) / 2); }
.remove-note svg { width: 22px; height: 22px; flex: none; margin-top: 2px; padding: 4px; border-radius: 50%; background: var(--tint); color: var(--accent); }

/* Parents */
.parents { padding: clamp(72px, 10vw, 128px) 0 clamp(64px, 9vw, 112px); }
.parents-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  grid-template-areas: "copy scene" "list scene";
  grid-template-rows: auto 1fr;
  gap: 40px clamp(32px, 6vw, 88px);
}
.parents-copy { grid-area: copy; }
.parents-copy h2 { font-size: clamp(2rem, 3.8vw, 2.7rem); }
.parents-copy p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; max-width: 30em; }
.parent-scene { grid-area: scene; }
.scene-devices { position: relative; aspect-ratio: 1 / 0.8; }
.scene-devices .tablet { position: absolute; top: 0; left: 0; width: 74%; }
.scene-devices .phone { position: absolute; bottom: 0; right: 0; width: 36%; }
.tablet .screen.wait { padding: 2em 2.2em; background: #f2f3f0; font-size: 2.6cqw; }
.wait .group, .wait .group-foot { max-width: 72%; }
.wait .row.head { justify-content: flex-start; gap: 0.5em; color: #1f6340; font-size: 1.1em; }
.wait .row.head b { color: #17261e; }
.inbox .row.stack b { font-size: 1.1em; }
.actions { display: flex; gap: 0.5em; margin-top: 0.5em; }
.tabbar { position: absolute; inset: auto 0 0; display: grid; grid-template-columns: repeat(4, 1fr); padding: 0.7em 0.4em 1.8em; background: rgba(250, 250, 248, 0.96); border-top: 1px solid #e3e6e1; font-size: 0.66em; color: #8a948e; text-align: center; }
.tabbar span { display: flex; flex-direction: column; align-items: center; gap: 0.3em; }
.tabbar svg { width: 2em; height: 2em; }
.tabbar .on { color: #1f6340; font-weight: 650; }
.beats { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 8px; counter-reset: beat; font-size: 0.92rem; }
.beats li { counter-increment: beat; display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 6px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); }
.beats li::before { content: counter(beat); display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--tint); color: var(--accent); font-weight: 700; font-size: 0.8rem; }

.settings-list { grid-area: list; align-self: end; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; }
.settings-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; }
.settings-list li + li { border-top: 1px solid var(--line); }
.well { display: grid; place-items: center; width: 34px; height: 34px; flex: none; border-radius: 10px; background: var(--tint); color: var(--accent); }
.well svg { width: 20px; height: 20px; }
.settings-list h3 { font-size: 1rem; }
.settings-list p { margin-top: 2px; color: var(--muted); font-size: 0.93rem; }

@media (max-width: 900px) {
  .parents-grid { grid-template-columns: 1fr; grid-template-areas: "copy" "scene" "list"; grid-template-rows: none; }
  .parent-scene { max-width: 560px; }
}

/* Closing */
.closing { padding: clamp(64px, 9vw, 104px) 0; background: var(--paper-2); }
.closing-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px clamp(32px, 6vw, 88px); align-items: end; }
.closing-mark img { border-radius: 16px; box-shadow: 0 16px 28px -18px rgba(18, 58, 41, 0.6); }
.closing-mark h2 { margin-top: 24px; font-size: clamp(2rem, 4vw, 2.8rem); max-width: 12em; }
.closing-copy p:first-child { color: var(--muted); font-size: 1.08rem; }
.closing-copy .status { margin-top: 24px; color: var(--ink); font-weight: 550; }
.platform { margin-top: 8px; color: var(--muted); font-size: 0.92rem; padding-left: 18px; }
@media (max-width: 820px) { .closing-grid { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { padding: 32px 0 40px; color: var(--muted); font-size: 0.92rem; }
.footer-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 28px; }
.footer-row .brand { color: var(--ink); font-size: 1rem; }
.footer-row .brand img { border-radius: 7px; }
.footer-row nav { margin-right: auto; }
.footer-row nav a { color: var(--ink); text-underline-offset: 3px; }

/* Privacy page */
.doc { padding: clamp(32px, 6vw, 72px) 0 clamp(64px, 9vw, 104px); }
.doc-body.wrap { max-width: min(680px, 100% - 40px); margin-left: max(20px, (100% - var(--content)) / 2); }
.doc h1 { font-size: clamp(2.3rem, 5vw, 3.2rem); }
.doc .updated { margin-top: 12px; color: var(--muted); font-size: 0.92rem; }
.doc .intro { margin-top: 24px; font-size: 1.12rem; color: var(--muted); }
.doc h2 { margin-top: 44px; font-size: clamp(1.4rem, 2.6vw, 1.75rem); }
.doc p, .doc li { color: var(--muted); }
.doc h2 + p, .doc h2 + ul { margin-top: 12px; }
.doc p + p, .doc ul + p, .doc p + ul { margin-top: 12px; }
.doc ul { display: grid; gap: 8px; }
.doc li { position: relative; padding-left: 20px; }
.doc li::before { content: ""; position: absolute; left: 2px; top: 0.65em; width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); }
.doc strong { color: var(--ink); font-weight: 650; }
.doc a { color: var(--accent); text-underline-offset: 3px; }
