:root {
  color-scheme: light;
  --page: #f4f8ff;
  --page-deep: #e9f0ff;
  --ink: #10131a;
  --muted: #596273;
  --line: rgb(18 38 68 / 10%);
  --glass: rgb(255 255 255 / 54%);
  --glass-strong: rgb(255 255 255 / 72%);
  --glass-edge: rgb(255 255 255 / 58%);
  --shadow: 0 24px 70px rgb(57 86 140 / 15%), 0 3px 12px rgb(35 69 125 / 7%);
  --blue: #0a84ff;
  --blue-deep: #0066cc;
  --max-width: 1140px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #0c1018;
    --page-deep: #111827;
    --ink: #f5f7fb;
    --muted: #a8b1c2;
    --line: rgb(225 235 255 / 12%);
    --glass: rgb(26 33 45 / 60%);
    --glass-strong: rgb(28 36 49 / 82%);
    --glass-edge: rgb(245 249 255 / 12%);
    --shadow: 0 28px 80px rgb(0 0 0 / 36%), 0 3px 12px rgb(0 0 0 / 22%);
    --blue: #4aaaff;
    --blue-deep: #6ab7ff;
  }
}

:root[data-theme="light"] {
  color-scheme: light;
  --page: #f4f8ff;
  --page-deep: #e9f0ff;
  --ink: #10131a;
  --muted: #596273;
  --line: rgb(18 38 68 / 10%);
  --glass: rgb(255 255 255 / 54%);
  --glass-strong: rgb(255 255 255 / 72%);
  --glass-edge: rgb(255 255 255 / 58%);
  --shadow: 0 24px 70px rgb(57 86 140 / 15%), 0 3px 12px rgb(35 69 125 / 7%);
  --blue: #0a84ff;
  --blue-deep: #0066cc;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #0c1018;
  --page-deep: #111827;
  --ink: #f5f7fb;
  --muted: #a8b1c2;
  --line: rgb(225 235 255 / 12%);
  --glass: rgb(26 33 45 / 60%);
  --glass-strong: rgb(28 36 49 / 82%);
  --glass-edge: rgb(245 249 255 / 12%);
  --shadow: 0 28px 80px rgb(0 0 0 / 36%), 0 3px 12px rgb(0 0 0 / 22%);
  --blue: #4aaaff;
  --blue-deep: #6ab7ff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 13% -12%, rgb(114 201 255 / 52%), transparent 32rem),
    radial-gradient(circle at 96% 22%, rgb(123 140 255 / 24%), transparent 29rem),
    linear-gradient(135deg, var(--page), var(--page-deep));
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgb(255 255 255 / 31%), transparent 42%);
}

a { color: inherit; }
:focus-visible { outline: 3px solid rgb(10 132 255 / 66%); outline-offset: 3px; }

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

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 20; padding: 9px 13px; color: #fff; background: #000; border-radius: 10px; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { padding-top: max(18px, env(safe-area-inset-top)); }
.home-page .site-header { position: absolute; z-index: 5; inset: 0 0 auto; }
.nav.shell { width: calc(100% - 48px); max-width: none; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 9px 24px;
  background: linear-gradient(135deg, rgb(255 255 255 / 45%), rgb(255 255 255 / 20%));
  border: 1px solid rgb(255 255 255 / 54%);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgb(20 39 74 / 12%), inset 0 1px rgb(255 255 255 / 62%);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
}

:root[data-theme="dark"] .nav { background: linear-gradient(135deg, rgb(35 45 61 / 60%), rgb(17 23 34 / 38%)); border-color: rgb(235 242 255 / 24%); box-shadow: 0 14px 38px rgb(0 0 0 / 28%), inset 0 1px rgb(255 255 255 / 13%); }

.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: 18px; font-weight: 700; letter-spacing: -.04em; text-decoration: none; }
.brand img { display: block; width: 43px; height: 43px; border-radius: 12px; }
.nav-actions { display: flex; align-items: center; gap: 3px; }
.nav-link { padding: 9px 14px; color: var(--muted); font-size: 14px; font-weight: 650; text-decoration: none; border-radius: 999px; transition: color .2s ease, background .2s ease, transform .2s ease; }
.nav-link:hover, .nav-link:focus-visible { color: var(--ink); background: rgb(255 255 255 / 42%); }
.theme-toggle { display: grid; width: 42px; height: 42px; padding: 0; color: var(--ink); background: rgb(255 255 255 / 24%); border: 1px solid rgb(255 255 255 / 36%); border-radius: 50%; cursor: pointer; place-items: center; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.theme-toggle:hover { background: rgb(255 255 255 / 57%); box-shadow: 0 4px 12px rgb(13 33 73 / 10%); transform: translateY(-1px); }.theme-toggle:focus-visible { outline-offset: 2px; }
.theme-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }.theme-icon-sun { display: none; }:root[data-theme="dark"] .theme-icon-sun { display: block; }:root[data-theme="dark"] .theme-icon-moon { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.hero { position: relative; min-height: max(720px, calc(100svh - 56px)); overflow: hidden; isolation: isolate; }
.hero::after { position: absolute; z-index: -1; inset: 0; content: ""; pointer-events: none; background: radial-gradient(circle at 73% 46%, rgb(119 205 255 / 22%), transparent 23rem); mix-blend-mode: screen; }
.hero-inner { display: grid; min-height: inherit; grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr); align-items: center; gap: clamp(34px, 7vw, 106px); padding-block: clamp(88px, 9vw, 124px) clamp(62px, 7vw, 100px); }
.hero-backdrop, .hero-backdrop img, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }.hero-backdrop { z-index: -3; margin: 0; }.hero-backdrop img { display: block; object-fit: cover; object-position: center; }.hero-scrim { z-index: -2; background: linear-gradient(92deg, rgb(7 13 25 / 90%) 0%, rgb(7 13 25 / 74%) 38%, rgb(7 13 25 / 25%) 67%, rgb(7 13 25 / 44%) 100%), linear-gradient(to top, rgb(7 13 23 / 62%), transparent 50%); }
.hero-copy, .hero-visual { z-index: 1; }
.eyebrow { display: flex; align-items: center; gap: 8px; margin: 0 0 16px; color: var(--blue-deep); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgb(10 132 255 / 12%); }
h1, h2, h3 { margin-top: 0; font-weight: 700; letter-spacing: -.055em; text-wrap: balance; font-optical-sizing: auto; }
h1 { max-width: 700px; margin-bottom: 24px; font-size: clamp(46px, 6.1vw, 82px); line-height: .98; }
h2 { font-size: clamp(32px, 4.2vw, 50px); line-height: 1.02; }
.hero .eyebrow { color: rgb(211 235 255 / 96%); }.hero .eyebrow-dot { background: #7dc5ff; box-shadow: 0 0 0 5px rgb(125 197 255 / 16%); }.hero h1 { color: white; text-shadow: 0 4px 24px rgb(0 0 0 / 21%); }
.hero-intro { max-width: 545px; margin: 0; color: var(--muted); font-size: clamp(18px, 2.1vw, 21px); line-height: 1.45; letter-spacing: -.018em; }
.hero .hero-intro { color: rgb(248 251 255 / 85%); text-shadow: 0 2px 14px rgb(0 0 0 / 25%); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.app-store-badge { display: inline-flex; align-items: center; gap: 8px; min-height: 54px; padding: 7px 17px 7px 13px; color: #fff; background: linear-gradient(145deg, #272a31, #050505 52%); border: 1px solid rgb(255 255 255 / 38%); border-radius: 15px; box-shadow: 0 10px 28px rgb(0 0 0 / 24%), inset 0 1px rgb(255 255 255 / 18%); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.app-store-badge:hover { box-shadow: 0 13px 29px rgb(0 0 0 / 24%); transform: translateY(-2px); }
.app-store-badge:active, .theme-toggle:active, .nav-link:active, .floating-download:active { transform: scale(.97); }
.apple-mark { font-family: "Helvetica Neue", sans-serif; font-size: 34px; line-height: 1; }
.badge-copy { display: grid; line-height: 1; }
.badge-copy small { margin-bottom: 3px; font-size: 10px; letter-spacing: .02em; }
.badge-copy strong { font-size: 21px; font-weight: 500; letter-spacing: -.04em; }
.text-link { display: inline-flex; gap: 7px; align-items: center; color: var(--blue-deep); font-size: 15px; font-weight: 650; text-decoration: none; }
.hero .text-link { color: white; text-shadow: 0 2px 12px rgb(0 0 0 / 38%); }
.text-link span { font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(3px); }

.hero-visual { position: relative; display: grid; min-height: 535px; place-items: center; isolation: isolate; }
.hero-visual::before { position: absolute; z-index: -1; width: 84%; aspect-ratio: 1; content: ""; border-radius: 50%; background: radial-gradient(circle, rgb(206 237 255 / 32%), rgb(91 177 255 / 14%) 42%, transparent 70%); filter: blur(12px); }
.glow { position: absolute; z-index: -1; width: 310px; aspect-ratio: 1; border-radius: 50%; filter: blur(42px); opacity: .8; }.glow-one { top: 6%; right: -3%; background: rgb(8 132 255 / 60%); }.glow-two { bottom: -4%; left: -8%; background: rgb(182 218 255 / 42%); }
.phone-placeholder { position: relative; display: grid; width: min(100%, 338px); aspect-ratio: .49; overflow: hidden; place-items: center; padding: 7px; background: linear-gradient(145deg, #394251, #0b0e14 48%, #020304); border: 5px solid rgb(255 255 255 / 80%); border-radius: 53px; box-shadow: 0 38px 78px rgb(0 0 0 / 42%), 0 2px 0 rgb(255 255 255 / 36%) inset; transform: rotate(4deg); }
.phone-placeholder::before { position: absolute; z-index: 1; inset: 4px; content: ""; pointer-events: none; border: 1px solid rgb(255 255 255 / 21%); border-radius: 44px; }
.phone-screen { position: absolute; inset: 7px; display: grid; align-content: center; justify-items: center; overflow: hidden; padding: 21px 15px 32px; background: radial-gradient(circle at 76% 16%, rgb(111 205 255 / 40%), transparent 28%), linear-gradient(160deg, #192f4b, #0f1929 51%, #070b13); border-radius: 42px; }
.phone-screen::before { position: absolute; inset: 0; content: ""; opacity: .76; background: linear-gradient(115deg, rgb(255 255 255 / 16%), transparent 26%); }
.phone-island { position: absolute; z-index: 3; top: 14px; left: 50%; width: 35%; height: 27px; background: #020303; border: 1px solid rgb(255 255 255 / 8%); border-radius: 18px; transform: translateX(-50%); }
.phone-status { position: absolute; z-index: 2; top: 15px; right: 22px; left: 22px; display: flex; align-items: center; justify-content: space-between; color: rgb(255 255 255 / 76%); font-size: 9px; font-weight: 700; letter-spacing: -.01em; }.phone-status-mark { width: 18px; height: 7px; border: 1px solid rgb(255 255 255 / 70%); border-radius: 99px; }
.placeholder-content { z-index: 1; display: grid; max-width: 201px; gap: 12px; place-items: center; padding: 26px 18px; color: #f9fbff; text-align: center; background: linear-gradient(145deg, rgb(255 255 255 / 21%), rgb(255 255 255 / 8%)); border: 1px solid rgb(255 255 255 / 30%); border-radius: 25px; box-shadow: inset 0 1px rgb(255 255 255 / 27%), 0 18px 28px rgb(1 7 18 / 22%); backdrop-filter: blur(18px) saturate(145%); -webkit-backdrop-filter: blur(18px) saturate(145%); }
.placeholder-icon { width: 76px; height: 76px; border-radius: 20px; box-shadow: 0 10px 22px rgb(0 0 0 / 28%); }
.placeholder-content span { font-size: 16px; font-weight: 700; letter-spacing: -.03em; }
.placeholder-content small { color: rgb(255 255 255 / 72%); font-size: 11px; line-height: 1.35; }
.phone-screen-note { position: absolute; z-index: 1; bottom: 29px; color: rgb(255 255 255 / 48%); font-size: 9px; font-weight: 650; letter-spacing: .035em; text-transform: uppercase; }
.placeholder-home-indicator { position: absolute; z-index: 2; bottom: 10px; width: 36%; height: 5px; background: rgb(255 255 255 / 86%); border-radius: 99px; }

.features { padding: 118px 0 112px; }.features-heading { max-width: 620px; margin-bottom: 38px; }.features-heading h2 { margin-bottom: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.feature-card { position: relative; min-height: 574px; padding: 26px 28px 29px; overflow: hidden; border-color: var(--glass-edge); border-radius: 27px; background: linear-gradient(155deg, rgb(255 255 255 / 68%), rgb(238 246 255 / 37%)); box-shadow: 0 22px 56px rgb(57 86 140 / 13%), inset 0 1px rgb(255 255 255 / 67%); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }.feature-card::before { position: absolute; z-index: -1; top: -23%; right: -30%; width: 72%; aspect-ratio: 1; content: ""; border-radius: 50%; background: rgb(93 184 255 / 17%); filter: blur(22px); }.feature-card:nth-child(2)::before { background: rgb(118 133 255 / 15%); }.feature-card:nth-child(3)::before { background: rgb(124 196 233 / 16%); }:root[data-theme="dark"] .feature-card { background: linear-gradient(155deg, rgb(45 56 74 / 79%), rgb(20 28 41 / 70%)); box-shadow: 0 26px 62px rgb(0 0 0 / 22%), inset 0 1px rgb(255 255 255 / 9%); }
.feature-device { position: relative; display: grid; width: 181px; aspect-ratio: .49; margin: 0 auto 21px; overflow: hidden; place-items: center; background: linear-gradient(152deg, #263243, #07090d); border: 5px solid rgb(255 255 255 / 80%); border-radius: 31px; box-shadow: 0 22px 38px rgb(20 35 58 / 30%), inset 0 0 0 1px rgb(255 255 255 / 27%); transform: rotate(4deg); }.feature-device-shopping { transform: rotate(-3deg); }.feature-device-decisions { transform: rotate(3deg); }.feature-device-island { position: absolute; z-index: 2; top: 8px; left: 50%; width: 36%; height: 15px; background: #030405; border-radius: 99px; transform: translateX(-50%); }.feature-device-screen { position: absolute; inset: 4px; display: grid; align-content: start; gap: 7px; padding: 28px 10px 13px; color: #f9fbff; background: radial-gradient(circle at 85% 8%, rgb(94 189 255 / 35%), transparent 30%), linear-gradient(160deg, #1b3654, #0d1726 57%, #09101a); border-radius: 23px; }.feature-device-shopping .feature-device-screen { background: radial-gradient(circle at 12% 8%, rgb(152 153 255 / 30%), transparent 32%), linear-gradient(160deg, #2b3158, #111426 57%, #0a0f19); }.feature-device-decisions .feature-device-screen { background: radial-gradient(circle at 80% 14%, rgb(105 201 232 / 30%), transparent 30%), linear-gradient(160deg, #163e51, #10212c 57%, #09131b); }.device-section-label { color: rgb(255 255 255 / 55%); font-size: 6px; font-weight: 750; letter-spacing: .08em; }.feature-device-screen strong { margin-bottom: 2px; font-size: 12px; letter-spacing: -.035em; }.device-row { display: flex; align-items: center; gap: 5px; min-height: 20px; padding: 4px 5px; color: rgb(255 255 255 / 82%); background: rgb(255 255 255 / 9%); border: 1px solid rgb(255 255 255 / 12%); border-radius: 7px; font-size: 7px; }.device-check { width: 8px; height: 8px; border: 1px solid rgb(255 255 255 / 58%); border-radius: 50%; }.device-check.is-done { border-color: #92d9ff; background: #92d9ff; box-shadow: inset 0 0 0 2px #1a496c; }.device-option i { width: 7px; height: 7px; border: 1px solid rgb(255 255 255 / 52%); border-radius: 50%; }.device-option.is-selected { border-color: rgb(132 214 255 / 48%); background: rgb(104 196 255 / 20%); }.device-option.is-selected i { border: 2px solid #8ad9ff; }.device-placeholder-note { margin-top: 4px; color: rgb(255 255 255 / 46%); font-size: 6px; letter-spacing: .04em; text-align: center; text-transform: uppercase; }.feature-device-home-indicator { position: absolute; z-index: 2; bottom: 7px; width: 35%; height: 3px; background: rgb(255 255 255 / 82%); border-radius: 99px; }
.feature-icon { display: grid; width: 45px; height: 45px; margin-bottom: 18px; color: var(--blue-deep); background: rgb(10 132 255 / 11%); border: 1px solid rgb(10 132 255 / 13%); border-radius: 14px; place-items: center; }.feature-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }.feature-card h3 { margin-bottom: 10px; font-size: 23px; letter-spacing: -.04em; }.feature-card p { margin: 0; color: var(--muted); font-size: 15px; letter-spacing: -.01em; }

.founder { padding: 0 0 118px; }.founder-card.promise-card { display: grid; gap: 24px; max-width: 740px; text-align: center; }.founder-photo { display: block; width: 178px; height: 178px; margin: 0 auto; object-fit: contain; object-position: center; place-self: center; background: #f9fbff; border: 1px solid rgb(255 255 255 / 50%); border-radius: 24px; box-shadow: inset 0 1px rgb(255 255 255 / 55%), 0 16px 34px rgb(0 0 0 / 22%); }.founder-copy { max-width: 570px; margin-inline: auto; }.founder-copy .eyebrow { justify-content: center; margin-bottom: 14px; }.founder-copy h2 { max-width: 570px; margin-bottom: 17px; }.founder-copy p:not(.eyebrow) { max-width: 570px; margin: 0 auto; font-size: 18px; line-height: 1.5; letter-spacing: -.015em; }

.faq { max-width: 860px; padding: 0 0 112px; }.faq-heading { margin-bottom: 27px; }.faq-heading h2 { margin-bottom: 0; }.faq-list { display: grid; gap: 12px; }.faq-item { padding: 0 26px; border-color: var(--glass-edge); border-radius: 21px; transition: background .2s ease, border-color .2s ease, box-shadow .2s ease; }.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 75px; color: var(--ink); cursor: pointer; font-size: 18px; font-weight: 650; letter-spacing: -.025em; list-style: none; }.faq-item summary::-webkit-details-marker { display: none; }.faq-item summary::after { flex: 0 0 auto; width: 24px; height: 24px; color: var(--blue-deep); content: "+"; font-size: 24px; font-weight: 400; line-height: 20px; text-align: center; transition: transform .2s ease; }.faq-item[open] { background: var(--glass-strong); box-shadow: 0 18px 40px rgb(57 86 140 / 10%), inset 0 1px rgb(255 255 255 / 55%); }.faq-item[open] summary::after { transform: rotate(45deg); }.faq-item p { max-width: 700px; margin: -4px 35px 24px 0; color: var(--muted); font-size: 16px; line-height: 1.55; letter-spacing: -.01em; }
.promise { padding-bottom: 96px; }
.glass-panel { background: var(--glass); border: 1px solid var(--line); box-shadow: var(--shadow), inset 0 1px rgb(255 255 255 / 45%); backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%); }
.feature-card.glass-panel { isolation: isolate; border-color: var(--glass-edge); background: linear-gradient(155deg, rgb(255 255 255 / 68%), rgb(238 246 255 / 37%)); box-shadow: 0 22px 56px rgb(57 86 140 / 13%), inset 0 1px rgb(255 255 255 / 67%); }
:root[data-theme="dark"] .feature-card.glass-panel { background: linear-gradient(155deg, rgb(45 56 74 / 79%), rgb(20 28 41 / 70%)); box-shadow: 0 26px 62px rgb(0 0 0 / 22%), inset 0 1px rgb(255 255 255 / 9%); }
.promise-card { max-width: 740px; margin-inline: auto; padding: clamp(33px, 6vw, 58px); border-radius: 32px; text-align: center; }
.promise-card .eyebrow { justify-content: center; }
.promise-card h2 { margin-bottom: 17px; }
.promise-card p:not(.eyebrow) { max-width: 570px; margin: 0 auto 24px; color: var(--muted); font-size: 18px; letter-spacing: -.015em; }
.promise-card.glass-panel { position: relative; overflow: hidden; color: #f8fbff; background: radial-gradient(circle at 82% 12%, rgb(72 171 255 / 44%), transparent 32%), linear-gradient(142deg, #102744, #101b31 57%, #0b111e); border-color: rgb(255 255 255 / 20%); box-shadow: 0 28px 70px rgb(20 42 79 / 31%), inset 0 1px rgb(255 255 255 / 24%); backdrop-filter: none; -webkit-backdrop-filter: none; }.promise-card.glass-panel::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(122deg, rgb(255 255 255 / 13%), transparent 30%); }.promise-card > * { position: relative; }.promise-card .eyebrow { color: rgb(187 225 255 / 88%); }.promise-card p:not(.eyebrow) { color: rgb(235 245 255 / 76%); }.promise-card .text-link { color: #fff; }.promise-card .text-link span { color: #9fd9ff; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 28px 0 calc(35px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.footer-brand { font-size: 16px; }.footer-brand img { width: 31px; height: 31px; border-radius: 9px; }
.footer-links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 13px; }
.footer-links a { color: var(--muted); text-decoration: none; }.footer-links a:hover { color: var(--ink); }

.floating-download { position: fixed; z-index: 8; right: 26px; bottom: 26px; display: inline-flex; align-items: center; gap: 8px; min-height: 50px; padding: 10px 18px 10px 15px; color: #fff; background: linear-gradient(135deg, rgb(30 46 70 / 86%), rgb(7 12 20 / 83%)); border: 1px solid rgb(255 255 255 / 34%); border-radius: 999px; box-shadow: 0 18px 42px rgb(0 0 0 / 28%), inset 0 1px rgb(255 255 255 / 22%); font-size: 14px; font-weight: 700; letter-spacing: -.01em; text-decoration: none; backdrop-filter: blur(24px) saturate(165%); -webkit-backdrop-filter: blur(24px) saturate(165%); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }.floating-download:hover { background: linear-gradient(135deg, rgb(39 60 90 / 94%), rgb(7 12 20 / 95%)); box-shadow: 0 21px 48px rgb(0 0 0 / 34%), inset 0 1px rgb(255 255 255 / 24%); transform: translateY(-2px); }.floating-download:focus-visible { outline: 3px solid rgb(97 181 255 / 75%); outline-offset: 3px; }.floating-download-mark { font-family: "Helvetica Neue", sans-serif; font-size: 22px; line-height: 1; }

.legal { max-width: 900px; padding-block: 86px 96px; }
.legal-heading { margin-bottom: 28px; }
.legal-heading .eyebrow { margin-bottom: 12px; }.legal-heading h1 { margin: 0 0 12px; font-size: clamp(45px, 7vw, 68px); }.legal-heading > p { color: var(--muted); }
.draft-notice { margin-bottom: 24px; padding: 19px 20px; color: var(--ink); background: rgb(255 188 72 / 15%); border: 1px solid rgb(218 140 0 / 23%); border-radius: 18px; }
.draft-notice strong { color: #8d5500; } @media (prefers-color-scheme: dark) { .draft-notice strong { color: #ffc46c; } }
.draft-notice p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.legal-content { padding: clamp(25px, 5vw, 58px); border-radius: 28px; }
.legal-content h2 { margin: 52px 0 16px; font-size: clamp(25px, 3vw, 33px); }.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin: 28px 0 10px; font-size: 20px; letter-spacing: -.035em; }
.legal-content p, .legal-content li { color: var(--muted); }.legal-content strong { color: var(--ink); }.legal-content ul { padding-left: 22px; }
.legal-content li + li { margin-top: 6px; }
.table-wrap { overflow-x: auto; margin: 22px -3px; border: 1px solid var(--line); border-radius: 14px; }
table { width: 100%; min-width: 650px; border-collapse: collapse; color: var(--muted); font-size: 14px; }
th, td { padding: 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); } th { color: var(--ink); background: rgb(127 159 210 / 10%); font-size: 13px; } tbody tr:last-child td { border-bottom: 0; }
.legal-checklist { margin-top: 34px; padding: 24px 28px; background: rgb(127 159 210 / 8%); border-radius: 20px; }.legal-checklist h2 { margin-bottom: 12px; font-size: 24px; }.legal-checklist li { color: var(--muted); }.legal-checklist li + li { margin-top: 7px; }

@media (max-width: 750px) {
  .shell { width: min(calc(100% - 36px), var(--max-width)); }
  .site-header { padding-top: max(14px, env(safe-area-inset-top)); }.nav.shell { width: calc(100% - 28px); }.nav { min-height: 60px; padding-inline: 16px; border-radius: 999px; }.brand img { width: 38px; height: 38px; }.brand { font-size: 17px; }.nav-actions { gap: 1px; }.nav-link { padding-inline: 9px; }.theme-toggle { width: 38px; height: 38px; border-radius: 50%; }
  .hero { min-height: 820px; }.hero-inner { min-height: inherit; grid-template-columns: 1fr; gap: 8px; padding-block: 108px 34px; }.hero-backdrop img { object-position: 50% 48%; }.hero-scrim { background: linear-gradient(to bottom, rgb(7 13 23 / 82%) 0%, rgb(7 13 23 / 57%) 32%, rgb(7 13 23 / 10%) 59%, rgb(7 13 23 / 74%) 100%), linear-gradient(110deg, rgb(6 14 27 / 34%), transparent 68%); }.hero-copy { text-align: center; }.hero-copy .eyebrow, .hero-actions { justify-content: center; }.hero-intro { margin-inline: auto; }.hero .hero-intro { max-width: 450px; }
  .hero-visual { min-height: 390px; margin-top: 4px; }.phone-placeholder { width: 214px; border-width: 4px; border-radius: 35px; transform: rotate(3deg); }.phone-placeholder::before { border-radius: 29px; }.phone-screen { inset: 5px; padding: 18px 10px 25px; border-radius: 29px; }.phone-status { top: 10px; right: 14px; left: 14px; font-size: 7px; }.phone-status-mark { width: 14px; height: 5px; }.placeholder-content { max-width: 154px; gap: 9px; padding: 18px 12px; border-radius: 18px; }.placeholder-icon { width: 61px; height: 61px; border-radius: 16px; }.placeholder-content span { font-size: 14px; }.placeholder-content small { font-size: 9px; }.phone-screen-note { bottom: 21px; font-size: 7px; }.phone-island { top: 9px; height: 20px; }.placeholder-home-indicator { bottom: 7px; height: 3px; }
  .features { padding: 82px 0 78px; }.features-heading { margin-bottom: 26px; }.feature-grid { grid-template-columns: 1fr; gap: 13px; }.feature-card { display: grid; min-height: 246px; grid-template-columns: 105px 46px 1fr; grid-template-rows: 1fr 1fr; column-gap: 16px; padding: 20px; }.feature-device { grid-row: span 2; width: 105px; margin: 0; border-width: 4px; border-radius: 20px; transform: rotate(3deg); }.feature-device-screen { inset: 3px; gap: 4px; padding: 19px 6px 9px; border-radius: 14px; }.feature-device-screen strong { margin-bottom: 1px; font-size: 7px; }.device-section-label { font-size: 4px; }.device-row { gap: 3px; min-height: 13px; padding: 3px; border-radius: 5px; font-size: 4px; }.device-check { width: 5px; height: 5px; }.device-option i { width: 5px; height: 5px; }.device-placeholder-note { margin-top: 1px; font-size: 4px; }.feature-device-shopping { transform: rotate(-3deg); }.feature-device-decisions { transform: rotate(2deg); }.feature-device-island { top: 5px; height: 10px; }.feature-device-home-indicator { bottom: 5px; height: 2px; }.feature-icon { grid-row: span 2; align-self: center; margin: 0; }.feature-card h3 { align-self: end; margin: 0; font-size: 21px; }.feature-card p { align-self: start; margin-top: 6px; }
  .founder { padding-bottom: 82px; }.founder-card.promise-card { gap: 20px; padding: 34px 24px; border-radius: 27px; }.founder-photo { width: 150px; height: 150px; border-radius: 21px; }.founder-copy h2 { margin-bottom: 14px; }.founder-copy p:not(.eyebrow) { font-size: 17px; }
  .faq { padding-bottom: 78px; }.faq-heading { margin-bottom: 22px; }.faq-item { padding-inline: 20px; border-radius: 18px; }.faq-item summary { min-height: 67px; font-size: 16px; }.faq-item p { margin-right: 22px; margin-bottom: 21px; font-size: 15px; }
  .promise { padding-bottom: 76px; }.site-footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }.footer-links { gap: 12px; }
  .floating-download { right: auto; bottom: calc(14px + env(safe-area-inset-bottom)); left: 50%; min-height: 48px; padding-inline: 17px; transform: translateX(-50%); white-space: nowrap; }.floating-download:hover { transform: translateX(-50%) translateY(-2px); }.floating-download:active { transform: translateX(-50%) scale(.97); }
  .legal { padding-block: 61px 86px; }.legal .legal-content { border-radius: 23px; }.legal-page .site-footer { padding-bottom: 35px; }
}

@media (max-width: 410px) { h1 { font-size: 43px; }.hero-actions { gap: 18px; }.app-store-badge { min-height: 50px; }.badge-copy strong { font-size: 19px; }.apple-mark { font-size: 30px; }.site-footer { align-items: flex-start; flex-direction: column; }.footer-links { flex-wrap: wrap; } }

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover { border-color: rgb(99 174 255 / 33%); box-shadow: 0 30px 68px rgb(57 86 140 / 20%), inset 0 1px rgb(255 255 255 / 72%); transform: translateY(-4px); }
  .feature-card:hover .feature-device { transform: translateY(-5px) rotate(2deg); }
  .feature-card:hover .feature-device-shopping { transform: translateY(-5px) rotate(-2deg); }
  .feature-card:hover .feature-device-decisions { transform: translateY(-5px) rotate(2deg); }
  .faq-item:hover { border-color: rgb(99 174 255 / 28%); }
}

@media (prefers-reduced-transparency: reduce) {
  .nav, .floating-download, .glass-panel { background: var(--glass-strong); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .feature-card.glass-panel { background: var(--glass-strong); }
  .promise-card.glass-panel { background: #10213a; }
  .placeholder-content { background: rgb(22 41 67 / 94%); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

@media (prefers-contrast: more) {
  .nav, .glass-panel, .feature-card, .floating-download { border-color: currentColor; }
  .hero .hero-intro, .promise-card p:not(.eyebrow), .placeholder-content small { color: #fff; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; } }
