/* ───────────────────────── Tokens ───────────────────────── */
:root {
  --bg: #fbfbfd;
  --fg: #1d1d1f;
  --muted: #6e6e73;
  --line: #e5e5ea;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --radius: 18px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", Inter, "Helvetica Neue", "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; line-height: 1.08; font-weight: 700; }
p { margin: 0; }
kbd {
  font-family: var(--font);
  font-size: 0.85em;
  padding: 1px 6px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 6px;
  background: #fff;
}
.wrap { width: min(1080px, calc(100% - 48px)); margin: 0 auto; }
.wrap.narrow { width: min(720px, calc(100% - 48px)); }

/* ───────────────────────── Buttons ───────────────────────── */
/* Glass pills: a soft vertical gradient, a hairline border, a top highlight and
   a real shadow. The primary one is blue with a light sweep on hover. */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  font-weight: 600; font-size: 16px; letter-spacing: -0.01em; line-height: 1.2;
  color: var(--fg); white-space: nowrap; overflow: hidden; isolation: isolate;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 55%, #e9e9ee 100%);
  border: 1px solid rgba(0,0,0,.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), inset 0 -1px 0 rgba(0,0,0,.05),
              0 1px 2px rgba(0,0,0,.08), 0 10px 24px -12px rgba(0,0,0,.35);
  transition: transform .14s var(--ease), box-shadow .2s var(--ease), filter .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px) scale(.985); transition-duration: .06s; box-shadow: inset 0 2px 4px rgba(0,0,0,.14), 0 1px 2px rgba(0,0,0,.06); }
.btn.primary {
  color: #fff; text-shadow: 0 1px 1px rgba(0, 40, 110, .35);
  background:
    radial-gradient(120% 90% at 50% -25%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #55a3ff 0%, #2a8aff 48%, #0a66e4 100%);
  border-color: #0b4db0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), inset 0 -1px 0 rgba(0,0,0,.18),
              0 1px 2px rgba(0,30,90,.25), 0 12px 28px -10px rgba(0,113,227,.65);
}
.btn.primary:active { filter: brightness(.97); box-shadow: inset 0 2px 5px rgba(0,20,70,.35), 0 1px 2px rgba(0,30,90,.2); }
.btn.primary::after {
  content: ""; position: absolute; top: -40%; bottom: -40%; left: 0; width: 34%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.38) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg) translateX(-180%); transition: transform .7s var(--ease); pointer-events: none;
}
.btn svg { flex: none; }
.btn .apple { width: 15px; height: 15px; margin-top: -2px; }
.btn.small { padding: 6px 13px; font-size: 13.5px; gap: 6px; }
.btn.small .apple { width: 12px; height: 12px; }
.btn.large { padding: 14px 28px; font-size: 17px; }
@media (prefers-reduced-motion: reduce) { .btn, .btn.primary::after { transition: none; } }

/* ───────────────────────── Nav ───────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 251, 253, .72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 17px; }
.brand .wordmark { height: 18px; width: auto; }
.footer .brand .wordmark { height: 15px; }
.brand .mark { height: 15px; width: auto; }
.brand .wordmark { border-radius: 0; overflow: visible; }
.links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); }
.links a:hover { color: var(--fg); }
@media (max-width: 700px) { .nav .links { display: none; } }

/* ───────────────────────── Hero ───────────────────────── */
.hero { padding: clamp(56px, 8vw, 96px) 0 40px; text-align: center; overflow: hidden; position: relative; }
.hero-inner { position: relative; z-index: 1; }
/* A faint dot grid, fading out towards the edges. */
.hero-grid {
  position: absolute; inset: 0 0 auto 0; height: 720px; pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,.13) 1px, transparent 1.4px);
  background-size: 24px 24px; background-position: 12px 12px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 38%, #000 20%, transparent 100%);
          mask-image: radial-gradient(70% 60% at 50% 38%, #000 20%, transparent 100%);
}
.hero-glow {
  position: absolute; left: 50%; top: 420px; width: 1100px; height: 700px;
  transform: translateX(-50%);
  background:
    radial-gradient(40% 40% at 30% 40%, rgba(255, 190, 150, .55) 0%, transparent 70%),
    radial-gradient(40% 40% at 70% 45%, rgba(150, 170, 255, .55) 0%, transparent 70%),
    radial-gradient(50% 50% at 50% 70%, rgba(220, 160, 255, .45) 0%, transparent 70%);
  filter: blur(40px); opacity: .9; pointer-events: none;
}
.pill-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 11px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13px; font-weight: 600; letter-spacing: .01em; color: #3a3a3c;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: #34c759; box-shadow: 0 0 0 0 rgba(52,199,89,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,199,89,.5); } 70% { box-shadow: 0 0 0 8px rgba(52,199,89,0); } 100% { box-shadow: 0 0 0 0 rgba(52,199,89,0); } }

/* Type: medium weight, tight, calm. */
.hero h1 {
  margin: 0 auto; max-width: 900px;
  font-size: clamp(46px, 7.2vw, 88px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.04;
  text-wrap: balance;
}
.notch-word {
  display: inline-block; padding: 0 .16em 0 .18em; margin: 0 .02em;
  background: #000; color: #fff; border-radius: 0 0 .26em .26em;
  line-height: 1.02; letter-spacing: -0.03em; font-weight: 600;
  box-shadow: 0 .18em .5em -.2em rgba(0,0,0,.6);
  transform: translateY(-.02em);
}
.hero .lede {
  max-width: 640px; margin: 22px auto 0;
  font-size: clamp(17px, 1.65vw, 20px); font-weight: 400; line-height: 1.5; letter-spacing: -0.012em; color: #3a3a3c;
  text-wrap: pretty;
}
.cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 34px; }
.cta.row { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.cta .meta { display: inline-flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; color: var(--muted); }
.cta .meta i { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .5; }
.caption { margin-top: 16px; font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: .005em; }
.hint { text-align: center; font-size: 13px; color: var(--muted); margin-top: 18px; }

/* Floating cards around the headline, like things the notch shows. Desktop only. */
.float {
  position: absolute; display: none; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 14px; background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.08); box-shadow: 0 18px 40px -22px rgba(0,0,0,.35), 0 1px 2px rgba(0,0,0,.04);
  font-size: 13px; color: var(--fg); white-space: nowrap; pointer-events: none;
  animation: floaty 6s ease-in-out infinite;
}
.float b { font-weight: 600; }
.float span { color: var(--muted); }
.float .dot.orange { background: #ff9f0a; }
.float .join.sm { font-size: 11px; padding: 4px 9px; font-style: normal; }
.float kbd { font-size: 11.5px; padding: 1px 6px; }
.float .caret { width: 1.5px; height: 14px; background: var(--fg); margin-left: -4px; animation: blink 1s steps(1) infinite; }
.f1 { left: -50px; top: 10px; transform: rotate(-5deg); }
.f2 { right: -40px; top: 26px; transform: rotate(4deg); animation-delay: -2s; }
.f3 { left: -70px; top: 196px; transform: rotate(3deg); animation-delay: -4s; }
.f4 { right: -80px; top: 206px; transform: rotate(-3deg); animation-delay: -1s; }
@keyframes floaty { 0%, 100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@media (min-width: 1100px) { .float { display: inline-flex; } }
@media (prefers-reduced-motion: reduce) { .float { animation: none; } }

/* The MacBook mock. Fixed 960 px design, scaled by JS to fit. */
.demo-wrap { margin: 56px auto 0; width: min(960px, calc(100% - 32px)); position: relative; z-index: 1; }
.mac {
  text-align: left;
  width: 960px; height: 400px;
  transform-origin: top left;
  position: absolute; left: 0; top: 0;
  border-radius: 26px 26px 0 0;
  background: #0b0b0c;
  padding: 10px 10px 0;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.45), 0 0 0 1px rgba(0,0,0,.06);
}
.screen {
  position: relative; height: 100%; overflow: hidden;
  border-radius: 18px 18px 0 0;
  background:
    radial-gradient(60% 90% at 15% 10%, #ffd1a6 0%, transparent 60%),
    radial-gradient(50% 80% at 85% 20%, #9fb7ff 0%, transparent 60%),
    radial-gradient(70% 70% at 55% 100%, #e7a3ff 0%, transparent 60%),
    linear-gradient(180deg, #f5d4c2 0%, #c6b9f0 45%, #7f86d6 100%);
}
.menubar {
  height: 30px; padding: 0 14px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: rgba(0,0,0,.85);
  background: rgba(255,255,255,.42);
  backdrop-filter: blur(20px);
}
.mb-left, .mb-right { display: flex; align-items: center; gap: 14px; }
.mb-left b { font-weight: 700; margin-left: 2px; }
.mb-right { gap: 12px; }
.batt { width: 22px; height: 11px; border: 1.5px solid rgba(0,0,0,.6); border-radius: 3.5px; position: relative; }
.batt i { position: absolute; left: 1.5px; top: 1.5px; bottom: 1.5px; width: 70%; background: rgba(0,0,0,.7); border-radius: 1.5px; }
.batt::after { content: ""; position: absolute; right: -4px; top: 3px; width: 2px; height: 4px; background: rgba(0,0,0,.5); border-radius: 0 1px 1px 0; }
.time { font-variant-numeric: tabular-nums; }

/* The notch itself */
.notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 160px; height: 30px;
  background: #000; color: #fff;
  border-radius: 0 0 14px 14px;
  transition: width .45s var(--ease), height .45s var(--ease), border-radius .45s var(--ease), box-shadow .45s;
  cursor: default;
  z-index: 2;
}
.notch::before, .notch::after {
  content: ""; position: absolute; top: 0; width: 8px; height: 8px;
}
.notch::before { left: -8px; background: radial-gradient(circle at 0 100%, transparent 8px, #000 8.5px); }
.notch::after  { right: -8px; background: radial-gradient(circle at 100% 100%, transparent 8px, #000 8.5px); }
.notch[data-state="pill"] { width: 470px; border-radius: 0 0 16px 16px; }
.notch[data-state="expanded"] {
  width: 600px; height: 330px; border-radius: 0 0 24px 24px;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,.55);
}

.pill, .panel {
  position: absolute; inset: 0;
  overflow: hidden; border-radius: inherit;
  opacity: 0; transition: opacity .18s;
}
.notch[data-state="pill"] .pill { opacity: 1; transition-delay: .2s; }
.notch[data-state="expanded"] .panel { opacity: 1; transition-delay: .22s; }

.pill { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; font-size: 13px; font-weight: 600; }
.pill-l, .pill-r { display: flex; align-items: center; gap: 8px; }
.pill-l { width: 150px; }
.pill-r { width: 150px; justify-content: flex-end; }
.dim { color: rgba(255,255,255,.7); font-weight: 500; }
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot.blue { background: #5b8cf8; }
.join {
  display: inline-flex; align-items: center; gap: 5px;
  background: #fff; color: #000;
  font-weight: 700; font-size: 12px;
  padding: 5px 11px; border-radius: 999px;
}
.join::before { content: ""; width: 10px; height: 8px; background: #000; border-radius: 2px; clip-path: polygon(0 0, 68% 0, 68% 30%, 100% 10%, 100% 90%, 68% 70%, 68% 100%, 0 100%); }
.join.sm { font-size: 11px; padding: 4px 9px; }

.panel { padding: 0 30px 14px; display: flex; flex-direction: column; }
.p-head { height: 30px; display: flex; align-items: center; justify-content: space-between; }
.p-date { display: flex; flex-direction: column; line-height: 1.15; }
.p-date b { font-size: 13px; }
.p-date span { font-size: 10.5px; color: rgba(255,255,255,.55); }
.p-icons { display: flex; gap: 5px; }
.p-icons i { width: 24px; height: 22px; border-radius: 6px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.p-icons svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.week { display: flex; align-items: center; gap: 2px; margin: 10px 0 4px; }
.week > i { width: 24px; height: 22px; display: grid; place-items: center; font-style: normal; font-size: 14px; border-radius: 6px; background: rgba(255,255,255,.08); }
.week > div { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 2px 0; }
.week s { text-decoration: none; font-size: 9.5px; font-weight: 500; text-transform: uppercase; color: rgba(255,255,255,.45); }
.week b { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 13.5px; font-weight: 500; font-variant-numeric: tabular-nums; }
.week .sel s { color: rgba(255,255,255,.9); }
.week .sel b { background: #fff; color: #000; font-weight: 700; }
.week em { display: flex; gap: 2.5px; height: 4px; }
.week em u { width: 4px; height: 4px; border-radius: 50%; display: block; }
.week em u.o { background: #f8a04a; } .week em u.g { background: #59c780; } .week em u.b { background: #5b8cf8; }
.week div:not(:has(em))::after { content: ""; height: 4px; display: block; }

.rows { display: flex; flex-direction: column; gap: 1px; margin-top: 4px; }
.row { display: flex; align-items: center; gap: 10px; padding: 5px 8px; border-radius: 8px; }
.row.past { opacity: .45; }
.row .t { width: 50px; text-align: right; display: flex; flex-direction: column; line-height: 1.15; }
.row .t b { font-size: 12px; font-variant-numeric: tabular-nums; }
.row .t span { font-size: 10px; color: rgba(255,255,255,.45); font-variant-numeric: tabular-nums; }
.bar { width: 3px; height: 30px; border-radius: 2px; display: block; }
.bar.o { background: #f8a04a; } .bar.g { background: #59c780; } .bar.b { background: #5b8cf8; }
.rm { display: flex; flex-direction: column; line-height: 1.2; flex: 1; min-width: 0; }
.rm b { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rm span { font-size: 10.5px; color: rgba(255,255,255,.55); }
.cd { font-size: 10px; color: rgba(255,255,255,.55); font-variant-numeric: tabular-nums; }
.nb { width: 14px; height: 14px; border-radius: 3px; background: rgba(255,255,255,.15); font: 900 9px/14px Georgia, serif; text-align: center; }
.vid { width: 12px; height: 9px; background: rgba(255,255,255,.6); border-radius: 2px; clip-path: polygon(0 0, 68% 0, 68% 30%, 100% 10%, 100% 90%, 68% 70%, 68% 100%, 0 100%); }

/* ───────────────────────── Integrations ───────────────────────── */
.integrations {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #fff; padding: clamp(64px, 9vw, 120px) 0; text-align: center;
}
.integrations h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 500; letter-spacing: -0.035em; text-wrap: balance; }
.integrations .sub { max-width: 560px; margin: 18px auto 0; font-size: 18px; color: var(--muted); }

/* Logos on the left, a stream of light, the notch on the right. */
.sync { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: clamp(40px, 6vw, 64px); }
.sync-sources { list-style: none; margin: 0; padding: 0; display: flex; gap: 14px; }
.sync-sources li { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sync-sources img {
  width: 68px; height: 68px; padding: 15px; object-fit: contain; border-radius: 20px;
  background: var(--bg); border: 1px solid var(--line);
  animation: bob 4s ease-in-out infinite;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.sync-sources img.wide { padding: 14px 10px; }
.sync-sources li:nth-child(2) img { animation-delay: -1s; }
.sync-sources li:nth-child(3) img { animation-delay: -2s; }
.sync-sources li:nth-child(4) img { animation-delay: -3s; }
.sync-sources span { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.sync-flow { position: relative; width: clamp(90px, 14vw, 180px); height: 2px; margin: 0 18px 26px; background: var(--line); border-radius: 2px; overflow: hidden; }
.sync-flow i {
  position: absolute; top: 50%; left: 0; width: 34px; height: 3px; margin-top: -1.5px; border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: stream 2.4s cubic-bezier(.4, 0, .2, 1) infinite;
}
.sync-flow i:nth-child(2) { animation-delay: .8s; }
.sync-flow i:nth-child(3) { animation-delay: 1.6s; }
@keyframes stream { 0% { left: -34px; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: calc(100% + 24px); opacity: 0; } }

.sync-notch {
  display: flex; align-items: center; gap: 9px; height: 48px; padding: 0 10px 0 18px; margin-bottom: 26px;
  border-radius: 999px; background: #000; color: #fff; font-size: 13.5px; font-weight: 600;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.6); position: relative;
}
.sync-notch::before { content: ""; position: absolute; inset: -2px; border-radius: 999px; border: 2px solid rgba(0,113,227,.45); animation: ring 2.4s ease-out infinite; pointer-events: none; }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 70%, 100% { transform: scale(1.18); opacity: 0; } }
.sync-dot { width: 7px; height: 7px; border-radius: 50%; background: #3b82f6; }
.sync-in { color: rgba(255,255,255,.65); font-weight: 500; }
.sync-notch .join.sm { font-size: 11px; padding: 4px 10px; }
@media (prefers-reduced-motion: reduce) { .sync-sources img, .sync-flow i, .sync-notch::before, .caret, .dot-live, .note-body .caret, .float .caret { animation: none; } .marquee { -webkit-mask-image: none; mask-image: none; } }

@media (max-width: 760px) {
  .sync { flex-direction: column; gap: 0; }
  .sync-sources { gap: 10px; }
  .sync-sources img { width: 56px; height: 56px; padding: 12px; border-radius: 17px; }
  .sync-flow { width: 2px; height: 44px; margin: 12px 0; }
  .sync-flow i { top: 0; left: 50%; width: 2px; height: 26px; margin: 0 0 0 -1px; background: linear-gradient(180deg, transparent, var(--accent), transparent); animation-name: streamDown; }
  @keyframes streamDown { 0% { top: -26px; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
  .sync-notch { margin-bottom: 0; height: 44px; font-size: 13px; padding: 0 8px 0 16px; }
}
@media (max-width: 600px) {
  .integrations { padding: 56px 0; }
  .integrations h2 { font-size: 30px; }
  .integrations .sub { font-size: 16px; margin-top: 12px; }
  .sync { margin-top: 28px; }
  .sync-sources { gap: 8px; }
  .sync-sources img { width: 52px; height: 52px; padding: 11px; border-radius: 16px; }
  .sync-sources span { font-size: 11px; }
}

/* ───────────────────────── Shared section bits ───────────────────────── */
.label {
  display: inline-flex; align-items: center; padding: 5px 11px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(0,0,0,.04);
  font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #3a3a3c;
}
.head { text-align: center; position: relative; z-index: 1; }
.head h2 { margin-top: 18px; font-size: clamp(30px, 4.4vw, 50px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.06; text-wrap: balance; }
.head p { max-width: 560px; margin: 16px auto 0; font-size: 17.5px; line-height: 1.5; color: #515154; text-wrap: pretty; }
.dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,0,0,.12) 1px, transparent 1.4px);
  background-size: 24px 24px; background-position: 12px 12px;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000 10%, transparent 100%);
          mask-image: radial-gradient(60% 60% at 50% 50%, #000 10%, transparent 100%);
}
.text-link { display: inline-block; margin-top: 22px; font-weight: 600; color: var(--accent); }
.text-link:hover { text-decoration: underline; }
section.what, section.list, section.sayit, section.whynote, section.trust, section.pricing { position: relative; }

/* ───────────────────────── What it does ───────────────────────── */
.what { padding: clamp(64px, 9vw, 120px) 0 clamp(24px, 4vw, 48px); border-top: 1px solid var(--line); }
.what .dots { height: 600px; inset: 0 0 auto 0; }
.what .head { margin-bottom: clamp(8px, 2vw, 24px); }
.frow {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 5vw, 72px); align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
}
.frow.reverse .visual { order: 2; }
.frow.reverse .text { order: 1; }
.frow .text h3 { margin-top: 16px; font-size: clamp(26px, 3.2vw, 36px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; text-wrap: balance; }
.frow .text p { margin-top: 14px; font-size: 16.5px; line-height: 1.55; color: #515154; text-wrap: pretty; }
.frow .text em { font-style: normal; font-weight: 600; color: var(--fg); }
.frow .text kbd { font-size: .85em; }
.visual { position: relative; }
.bubble {
  position: absolute; z-index: 2; top: -18px; left: 22px; max-width: 78%;
  padding: 9px 14px; border-radius: 18px; font-size: 14px; font-weight: 500; line-height: 1.3;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.45);
  animation: bubbleIn .6s var(--ease) both;
}
.reveal .bubble { opacity: 0; animation: none; }
.reveal.in .bubble { animation: bubbleIn .6s .35s var(--ease) both; }
.bubble.blue { background: #0a84ff; color: #fff; border-bottom-left-radius: 5px; }
.bubble.gray { background: #e9e9eb; color: #111; border-bottom-left-radius: 5px; }
.frow.reverse .bubble { left: auto; right: 22px; border-bottom-left-radius: 18px; border-bottom-right-radius: 5px; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(8px) scale(.96); } to { opacity: 1; transform: none; } }
.shot {
  padding: clamp(14px, 2.4vw, 26px); border-radius: 20px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.04);
  transform: rotate(var(--tilt, 0deg)); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.shot img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 26px -12px rgba(0,0,0,.35), 0 0 0 1px rgba(0,0,0,.06); }
.visual .qa, .visual .alert-stage { border-radius: 20px; box-shadow: 0 30px 60px -28px rgba(0,0,0,.4), 0 0 0 1px rgba(0,0,0,.06); }
.logos { display: flex; align-items: center; gap: 8px; margin-top: 18px !important; }
.logos img { width: 22px; height: 22px; border-radius: 6px; }
.logos span { font-size: 13px !important; color: var(--muted) !important; margin-left: 4px; }
@media (max-width: 820px) {
  .frow { grid-template-columns: 1fr; gap: 26px; padding: 44px 0 36px; }
  .frow.reverse .visual { order: 1; } .frow.reverse .text { order: 2; }
  .frow .text { text-align: left; }
  .frow .visual { margin-top: 30px; }
  .bubble { top: -34px; left: 10px; font-size: 13px; }
  .frow.reverse .bubble { right: 10px; }
}

/* Quick-add demo card */
.qa {
  background: #000; color: #fff;
  padding: 22px 26px 20px;
  font-size: 13px;
}
.qa-top { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.qa-back { width: 24px; height: 22px; border-radius: 6px; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 16px; }
.kbd-dim { margin-left: auto; font-size: 11px; color: rgba(255,255,255,.35); }
.qa-field {
  margin-top: 16px; padding: 12px 14px; min-height: 48px;
  border-radius: 10px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 17px; font-weight: 500;
  display: flex; align-items: center;
}
.caret { width: 1.5px; height: 20px; background: #fff; margin-left: 1px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.qa-preview { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-weight: 500; color: rgba(255,255,255,.9); }
.qa-preview svg { color: rgba(255,255,255,.5); flex: none; }
.qa-preview.empty { color: rgba(255,255,255,.5); font-weight: 400; }
.qa-preview.added { color: #59c780; }
.qa-hint { margin-top: 10px; font-size: 11px; color: rgba(255,255,255,.4); }
.qa-foot { display: flex; align-items: center; gap: 10px; margin-top: 44px; font-size: 11px; }
.qa-cal { display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border-radius: 999px; background: rgba(255,255,255,.12); font-weight: 500; }
.qa-cal small { font-size: 8px; opacity: .6; }
.qa-foot .dim { color: rgba(255,255,255,.4); }
.grow { flex: 1; }
.qa-btn { padding: 4px 11px; border-radius: 999px; background: rgba(255,255,255,.12); font-weight: 600; font-size: 11.5px; }
.qa-btn.primary { background: #fff; color: #000; transition: transform .12s; }
.qa-btn.primary.press { transform: scale(.94); }

/* Alert demo */
.alert-stage {
  position: relative; height: 200px; overflow: hidden;
  background:
    radial-gradient(60% 90% at 15% 10%, #ffd1a6 0%, transparent 60%),
    radial-gradient(50% 80% at 85% 20%, #9fb7ff 0%, transparent 60%),
    linear-gradient(180deg, #f5d4c2 0%, #c6b9f0 60%, #7f86d6 100%);
}
.alert-menubar { height: 30px; background: rgba(255,255,255,.42); }
.alert {
  position: absolute; top: 0; left: 50%; width: min(520px, 92%);
  transform: translate(-50%, -100%);
  background: #000; color: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,.55);
  transition: transform .6s var(--ease);
  font-size: 13px;
}
.alert-stage.in .alert { transform: translate(-50%, 0); }
.alert::before, .alert::after { content: ""; position: absolute; top: 0; width: 10px; height: 10px; }
.alert::before { left: -10px; background: radial-gradient(circle at 0 100%, transparent 10px, #000 10.5px); }
.alert::after  { right: -10px; background: radial-gradient(circle at 100% 100%, transparent 10px, #000 10.5px); }
.a-top { height: 30px; display: flex; align-items: center; gap: 8px; padding: 0 22px; font-size: 12px; }
.a-bell { font-size: 11px; }
.a-time { margin-left: auto; color: rgba(255,255,255,.7); font-variant-numeric: tabular-nums; font-weight: 500; }
.a-main { display: flex; align-items: center; gap: 10px; padding: 4px 22px 14px; }
.a-main .bar { height: 26px; }
.a-x { width: 24px; height: 22px; border-radius: 6px; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 11px; }



/* ───────────────────────── The full list ───────────────────────── */
.list { padding: clamp(56px, 8vw, 100px) 0; border-top: 1px solid var(--line); background: #fff; }
.tiles { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.tiles li {
  padding: 16px 16px 18px; border-radius: 16px; background: var(--bg); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px; transition: transform .25s var(--ease), border-color .25s;
}
.tiles b { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.tiles span { font-size: 13.5px; color: var(--muted); line-height: 1.45; }
@media (max-width: 1000px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .tiles li { padding: 13px 12px 14px; } .tiles b { font-size: 14px; } .tiles span { font-size: 12.5px; } }
@media (max-width: 480px) { .tiles { grid-template-columns: 1fr; gap: 8px; } .tiles li { padding: 12px 14px; flex-direction: row; align-items: baseline; gap: 10px; flex-wrap: wrap; } .tiles b { font-size: 15px; flex: none; } .tiles span { font-size: 14px; flex: 1 1 160px; } }

/* ───────────────────────── Say it (marquee) ───────────────────────── */
.sayit { padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--line); overflow: hidden; }
.marquee { margin-top: 24px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.track { display: flex; gap: 10px; width: max-content; animation: slide 46s linear infinite; }
.track span {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 500; color: var(--fg);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.track span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #5b8cf8; }
.track span:nth-child(3n)::before { background: #34c759; }
.track span:nth-child(3n+1)::before { background: #ff9f0a; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* ───────────────────────── Why we made it (a note) ───────────────────────── */
.whynote { padding: clamp(64px, 9vw, 120px) 0; border-top: 1px solid var(--line); }
.whynote .dots { -webkit-mask-image: radial-gradient(50% 70% at 50% 50%, #000 10%, transparent 100%); mask-image: radial-gradient(50% 70% at 50% 50%, #000 10%, transparent 100%); }
.note {
  position: relative; z-index: 1; max-width: 620px; margin: 28px auto 0;
  background: #fff; border-radius: 14px; border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.05);
  transform: rotate(-.6deg); transition: transform .5s var(--ease);
}
.note-bar, .plan-bar { display: flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px; border-bottom: 1px solid var(--line); background: linear-gradient(#f7f7f9, #efeff3); border-radius: 14px 14px 0 0; position: relative; }
.note-bar i, .plan-bar i { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.note-bar i:nth-child(2), .plan-bar i:nth-child(2) { background: #febc2e; }
.note-bar i:nth-child(3), .plan-bar i:nth-child(3) { background: #28c840; }
.note-bar span, .plan-bar span { position: absolute; left: 0; right: 0; text-align: center; font-size: 12.5px; font-weight: 600; color: #8e8e93; pointer-events: none; }
.note-body { padding: 26px 30px 24px; font-size: 17px; line-height: 1.55; color: #2c2c2e; }
.note-body p { margin: 0 0 14px; }
.note-body mark { background: linear-gradient(transparent 8%, #fff2a8 8%, #fff2a8 92%, transparent 92%); color: inherit; padding: 0 3px; }
.note-body .caret { display: inline-block; width: 1.5px; height: 18px; background: #111; vertical-align: -3px; margin-left: 2px; animation: blink 1s steps(1) infinite; }
.note-sig { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 14px; color: var(--muted); }
.note-sig img { height: 16px; }

/* ───────────────────────── Trust ───────────────────────── */
.trust { padding: clamp(64px, 9vw, 120px) 0; border-top: 1px solid var(--line); background: #fff; text-align: center; }
.trust-grid { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: left; }
.trust-grid li { padding: 22px; border-radius: 18px; background: var(--bg); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.trust-grid b { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.trust-grid span { font-size: 15px; color: var(--muted); line-height: 1.5; }
@media (max-width: 820px) { .trust-grid { grid-template-columns: 1fr; } }

/* ───────────────────────── Pricing (one plan, free) ───────────────────────── */
.pricing { padding: clamp(64px, 9vw, 120px) 0; border-top: 1px solid var(--line); }
.plan {
  max-width: 420px; margin: 32px auto 0; background: #fff; border-radius: 16px; border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.05); text-align: center;
}
.plan-bar { border-radius: 16px 16px 0 0; }
.plan-body { padding: 28px 28px 30px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.plan-body > b { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.price { font-size: 64px; font-weight: 600; letter-spacing: -0.05em; line-height: 1; margin-top: 6px; }
.price span { font-size: 30px; vertical-align: top; margin-right: 4px; font-weight: 500; letter-spacing: 0; }
.plan-body > p { font-size: 15px; color: var(--muted); text-wrap: balance; }
.plan-body ul { list-style: none; margin: 14px 0 20px; padding: 14px 0 0; border-top: 1px solid var(--line); width: 100%; display: flex; flex-direction: column; gap: 8px; font-size: 15px; color: #3a3a3c; }
.plan-body li::before { content: "✓"; color: #28a745; font-weight: 700; margin-right: 8px; }

/* ───────────────────────── Final CTA ───────────────────────── */
.final { padding: 0 0 clamp(64px, 9vw, 120px); }
.final-card {
  position: relative; overflow: hidden; text-align: center;
  background: #121214; color: #fff;
  border-radius: 28px; padding: 0 24px 64px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.5);
}
.final-card::before {
  content: ""; position: absolute; inset: auto -20% -60% -20%; height: 120%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,113,227,.45) 0%, transparent 70%);
  pointer-events: none;
}
.final-notch { position: relative; width: 170px; height: 30px; margin: 0 auto 40px; background: #000; border-radius: 0 0 16px 16px; }
.final-notch::before, .final-notch::after { content: ""; position: absolute; top: 0; width: 9px; height: 9px; }
.final-notch::before { left: -9px; background: radial-gradient(circle at 0 100%, transparent 9px, #000 9.5px); }
.final-notch::after { right: -9px; background: radial-gradient(circle at 100% 100%, transparent 9px, #000 9.5px); }
.final-inner { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.final-mascot { width: 220px; height: 220px; border-radius: 22.37%; flex: none; box-shadow: 0 30px 60px -20px rgba(0,0,0,.7); }
.final-text { max-width: 560px; }
.final-card h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 500; letter-spacing: -0.035em; }
.final-card p { margin: 16px 0 0; font-size: 18px; color: rgba(255,255,255,.7); }
.final-card .cta { margin-top: 30px; align-items: center; }
@media (max-width: 720px) {
  .final-inner { flex-direction: column; text-align: center; }
  .final-mascot { width: 160px; height: 160px; }
  .final-card .cta { align-items: center; }
}
.final-card .meta { color: rgba(255,255,255,.55); }
.final-card .meta i { background: currentColor; }
.final-card .meta a { color: rgba(255,255,255,.8); text-decoration: underline; text-underline-offset: 2px; }
.faq details p a { color: var(--accent); }

/* ───────────────────────── FAQ ───────────────────────── */
.faq { padding: 0 0 clamp(64px, 9vw, 120px); }
.faq .head { margin-bottom: 32px; }
.faq .wrap.narrow { width: min(760px, calc(100% - 48px)); }
details.q {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-top: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
details.q[open] { border-color: rgba(0,113,227,.35); box-shadow: 0 24px 50px -36px rgba(0,113,227,.45), 0 1px 2px rgba(0,0,0,.03); }
@media (hover: hover) { details.q:not([open]):hover { border-color: rgba(0,0,0,.18); transform: translateY(-1px); } }
details.q summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none; padding: 17px 18px 17px 22px;
  font-weight: 600; font-size: 16.5px; letter-spacing: -0.01em; line-height: 1.3; color: var(--fg);
}
details.q summary::-webkit-details-marker { display: none; }
details.q summary::after { content: none; }
.plus {
  flex: none; position: relative; width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
  transition: transform .3s var(--ease), background .2s, border-color .2s;
}
.plus::before, .plus::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--fg); border-radius: 2px; transform: translate(-50%, -50%); }
.plus::before { width: 12px; height: 2px; }
.plus::after { width: 2px; height: 12px; }
details.q[open] .plus { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
details.q[open] .plus::before, details.q[open] .plus::after { background: #fff; }
.ans { overflow: hidden; }
.ans-in { padding: 0 22px 20px; }
.ans-in p { margin: 0; color: #515154; font-size: 16px; line-height: 1.6; text-wrap: pretty; }
.ans-in p + p, .ans-in pre { margin-top: 10px; }
.ans-in a { color: var(--accent); }
.ans-in em { font-style: normal; font-weight: 600; color: var(--fg); }
.ans-in pre { margin-bottom: 4px; }
.faq-more { margin-top: 26px; text-align: center; font-size: 14.5px; color: var(--muted); }
.faq-more a { color: var(--accent); font-weight: 500; }

/* ───────────────────────── Footer ───────────────────────── */
.footer { position: relative; overflow: hidden; border-top: 1px solid var(--line); padding: 56px 0 0; font-size: 14px; color: var(--muted); background: #fff; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; }
.footer-brand .brand { color: var(--fg); }
.footer-brand .brand .wordmark { height: 15px; }
.footer-brand .brand .mark { height: 13px; }
.footer-brand p { margin: 14px 0 18px; line-height: 1.5; }
.footer-links { display: flex; gap: clamp(32px, 6vw, 80px); }
.footer-links div { display: flex; flex-direction: column; gap: 9px; }
.footer-links b { color: var(--fg); font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 4px; }
.footer-links a { color: var(--muted); transition: color .15s, transform .15s var(--ease); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding: 18px 0; border-top: 1px solid var(--line); font-size: 13px; }
.clock { display: inline-flex; align-items: center; gap: 8px; font-variant-numeric: tabular-nums; }
.clock .dot-live { width: 7px; height: 7px; }

/* The wordmark, huge and half sunk below the page edge. The notch keeps breathing. */
.footer-giant { position: relative; height: clamp(72px, 11vw, 150px); margin-top: 8px; }
.footer-giant svg { display: block; width: min(1080px, calc(100% - 48px)); height: auto; margin: 0 auto; transform: translateY(14%); transition: transform .8s var(--ease); }
.g-text { fill: var(--fg); opacity: .055; }
.g-cut { fill: #fff; }
.g-notch { fill: var(--accent); opacity: .3; animation: notchGlow 3s ease-in-out infinite; }
@keyframes notchGlow { 0%, 100% { opacity: .22; } 50% { opacity: .6; } }
@media (prefers-reduced-motion: reduce) { .g-notch { animation: none; } .footer-giant svg { transition: none; } }
@media (max-width: 700px) {
  .footer { padding-top: 40px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 30px; }
  .clock { align-items: flex-start; }
  .clock .dot-live { margin-top: 6px; flex: none; }
  .footer-giant { height: 64px; }
  .footer-giant svg { width: calc(100% - 40px); }
}

/* ───────────────────────── Motion ───────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .notch, .alert { transition: none; }
}

/* ───────────────────────── Phones ───────────────────────── */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap, .wrap.narrow { width: calc(100% - 40px); }
  .nav-inner { height: 52px; }
  .brand { font-size: 16px; }

  /* Hero */
  .hero { padding: 64px 0 20px; }
  .hero-grid { height: 520px; background-size: 20px 20px; }
  .hero h1 { font-size: min(44px, 12.5vw); letter-spacing: -0.03em; }
  .hero .lede { font-size: 16.5px; margin-top: 14px; }
  .cta .meta { flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 12.5px; padding: 0 12px; }
  .cta { margin-top: 26px; gap: 10px; }
  .cta.row { margin-top: 24px; gap: 8px; }
  .cta.row .btn { width: min(100%, 320px); justify-content: center; padding: 13px 22px; font-size: 16px; }
  .caption { font-size: 12.5px; margin-top: 12px; }
  .btn.large { width: min(100%, 320px); justify-content: center; padding: 14px 24px; font-size: 17px; }
  .hero-glow { width: 720px; height: 520px; top: 340px; filter: none; opacity: .8;
    background: radial-gradient(45% 45% at 30% 40%, rgba(255,190,150,.45) 0%, transparent 70%), radial-gradient(45% 45% at 70% 45%, rgba(150,170,255,.45) 0%, transparent 70%), radial-gradient(55% 55% at 50% 70%, rgba(220,160,255,.35) 0%, transparent 70%); }
  .hint { margin-top: 12px; font-size: 12px; }

  /* The mock: no scaling, its own compact layout, tap to open */
  .demo-wrap { width: calc(100% - 20px); margin-top: 32px; height: auto !important; }
  .mac { position: relative; width: 100% !important; height: 288px; transform: none !important; padding: 6px 6px 0; border-radius: 18px 18px 0 0; }
  .screen { border-radius: 13px 13px 0 0; }
  .menubar { height: 26px; padding: 0 10px; font-size: 11px; }
  .mb-left span { display: none; }
  .mb-right { gap: 8px; }
  .batt { width: 18px; height: 9px; }
  .notch { width: 104px; height: 26px; border-radius: 0 0 10px 10px; cursor: pointer; }
  .notch::before, .notch::after { width: 6px; height: 6px; }
  .notch::before { left: -6px; background: radial-gradient(circle at 0 100%, transparent 6px, #000 6.5px); }
  .notch::after  { right: -6px; background: radial-gradient(circle at 100% 100%, transparent 6px, #000 6.5px); }
  .notch[data-state="pill"] { width: 300px; border-radius: 0 0 13px 13px; }
  .notch[data-state="expanded"] { width: 100%; height: 258px; border-radius: 0 0 18px 18px; }
  .pill { padding: 0 12px; font-size: 12px; }
  .pill-l { width: 92px; }
  .pill-r { width: 124px; white-space: nowrap; }
  .pill-l { gap: 6px; }
  .join.sm { font-size: 10px; padding: 3px 8px; }
  .panel { padding: 0 12px 8px; }
  .p-head { height: 26px; }
  .p-date b { font-size: 12px; }
  .p-date span { font-size: 9.5px; }
  .p-icons { gap: 4px; }
  .p-icons i { width: 22px; height: 20px; }
  .p-icons i:nth-child(2), .p-icons i:nth-child(3) { display: none; }
  .week { margin: 8px 0 2px; gap: 0; }
  .week > i { width: 18px; height: 20px; font-size: 12px; }
  .week > div { min-width: 0; gap: 2px; }
  .week s { font-size: 8.5px; }
  .week b { width: 24px; height: 24px; font-size: 12px; }
  .rows { margin-top: 2px; gap: 0; }
  .row { gap: 8px; padding: 4px 2px; }
  .row .t { width: 40px; }
  .row .t b { font-size: 11px; }
  .row .t span { font-size: 9px; }
  .bar { height: 26px; }
  .panel .rm b { font-size: 12px; }
  .panel .rm span { font-size: 9.5px; }
  .a-main .rm b { font-size: 13px; }
  .a-main .rm span { font-size: 11px; }
  .cd { display: none; }
  .nb { width: 13px; height: 13px; font-size: 8px; line-height: 13px; }



  .final { padding-bottom: 48px; }
  .final-card { padding: 0 20px 40px; border-radius: 22px; }
  .final-notch { width: 120px; height: 24px; margin-bottom: 24px; }
  .final-card h2 { font-size: 32px; }
  .final-card p { font-size: 16px; }
}

/* ───────────────────────── Inner pages (install, privacy) ───────────────────────── */
.phero { position: relative; padding: clamp(56px, 8vw, 88px) 0 clamp(32px, 5vw, 56px); text-align: center; overflow: hidden; }
.phero .dots { height: 100%; -webkit-mask-image: radial-gradient(60% 70% at 50% 40%, #000 10%, transparent 100%); mask-image: radial-gradient(60% 70% at 50% 40%, #000 10%, transparent 100%); }
.phero .wrap { position: relative; z-index: 1; }
.phero h1 { margin-top: 18px; font-size: clamp(40px, 6.4vw, 68px); font-weight: 500; letter-spacing: -0.04em; line-height: 1.02; text-wrap: balance; }
.phero .lede { max-width: 540px; margin: 18px auto 0; font-size: clamp(17px, 1.7vw, 19px); line-height: 1.5; color: #3a3a3c; text-wrap: pretty; }
.phero .cta.row { margin-top: 26px; }
.phero .caption { margin-top: 14px; }

.steps { padding: clamp(16px, 3vw, 32px) 0 clamp(56px, 8vw, 96px); }
.step-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.step-list li {
  position: relative; padding: 24px 26px 26px; border-radius: 20px; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 24px 50px -36px rgba(0,0,0,.35), 0 1px 2px rgba(0,0,0,.03);
}
.step-list h3 { margin-top: 14px; font-size: clamp(21px, 2.4vw, 25px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; text-wrap: balance; }
.step-list p { margin-top: 8px; font-size: 16px; line-height: 1.55; color: #515154; }
.step-list em { font-style: normal; font-weight: 600; color: var(--fg); }
.step-list .alt { font-size: 14.5px; margin-top: 12px; color: var(--muted); }
.step-list .bubble { position: absolute; top: -14px; right: 22px; left: auto; max-width: 70%; animation: none; border-bottom-left-radius: 18px; border-bottom-right-radius: 5px; }
.dialog { display: flex; gap: 14px; align-items: flex-start; margin-top: 16px; padding: 16px 18px 14px; max-width: 440px; border-radius: 14px; background: #f5f5f7; border: 1px solid var(--line); }
.dialog img { border-radius: 9px; flex: none; }
.dialog > div { display: flex; flex-direction: column; gap: 4px; font-size: 13px; min-width: 0; }
.dialog > div > b { font-size: 13.5px; }
.dialog > div > span { color: var(--muted); }
.dialog-buttons { display: flex; gap: 8px; justify-content: flex-end; margin-top: 10px; }
.dialog-buttons i { font-style: normal; font-size: 12.5px; font-weight: 500; padding: 5px 12px; border-radius: 7px; background: #fff; border: 1px solid var(--line); white-space: nowrap; }
.dialog-buttons i.primary { background: var(--accent); color: #fff; border-color: transparent; }

.icals { padding: clamp(56px, 8vw, 96px) 0; border-top: 1px solid var(--line); background: #fff; }
.cal-list { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.cal-list li { display: grid; grid-template-columns: 40px 1fr auto; grid-template-rows: auto auto; column-gap: 18px; align-items: center; padding: 20px 22px; border-radius: 18px; background: var(--bg); border: 1px solid var(--line); }
.cal-list img { width: 40px; height: 40px; object-fit: contain; grid-row: 1 / span 2; align-self: start; }
.cal-list b { grid-column: 2; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.cal-list .tag { grid-column: 3; grid-row: 1; }
.cal-list p { grid-column: 2 / span 2; margin-top: 6px; font-size: 15px; line-height: 1.5; color: var(--muted); }
.cal-list em:not(.tag) { font-style: normal; color: var(--fg); font-weight: 600; }
.tag { font-style: normal; font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: rgba(0,0,0,.06); color: var(--fg); white-space: nowrap; }
.tag.blue { background: rgba(0,113,227,.12); color: #0b5bb5; }
.tag.green { background: rgba(52,199,89,.16); color: #1d7a3a; }

.itrouble { padding: clamp(56px, 8vw, 96px) 0; border-top: 1px solid var(--line); }
.itrouble .head { margin-bottom: 24px; }
.itrouble details p a { color: var(--accent); }
pre { margin: 0 0 18px; padding: 12px 14px; border-radius: 10px; background: #1d1d1f; color: #fff; overflow-x: auto; font-family: var(--mono); font-size: 13.5px; }
pre code { background: none; color: inherit; padding: 0; font-size: inherit; white-space: pre; }
code { font-family: var(--mono); font-size: 0.9em; padding: 1px 6px; border-radius: 6px; background: rgba(0,0,0,.06); }

.policy { padding: 0 0 clamp(56px, 8vw, 96px); }
.trust-grid.three { margin-top: 0; }
.doc {
  margin-top: 24px; background: #fff; border-radius: 14px; border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.05);
}
.doc-body { padding: 28px 32px 32px; font-size: 16px; line-height: 1.6; color: #2c2c2e; }
.doc-body h2 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin: 26px 0 8px; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body p, .doc-body li { margin-top: 8px; }
.doc-body ul { padding-left: 20px; margin: 0; }
.doc-body a { color: var(--accent); }
.doc-body em { font-style: normal; font-weight: 600; color: var(--fg); }

@media (max-width: 640px) {
  .phero { padding: 44px 0 24px; }
  .phero h1 { font-size: 38px; margin-top: 14px; }
  .phero .lede { font-size: 16px; }
  .phero .cta.row .btn { width: min(100%, 320px); justify-content: center; }
  .steps { padding: 12px 0 44px; }
  .step-list { gap: 10px; }
  .step-list li { padding: 20px 18px 22px; border-radius: 16px; }
  .step-list h3 { font-size: 20px; }
  .step-list p { font-size: 15px; }
  .step-list .bubble { position: static; display: inline-flex; margin-top: 12px; max-width: 100%; }
  .dialog { padding: 14px; gap: 10px; }
  .dialog img { width: 28px; height: 28px; }
  .dialog > div { font-size: 12.5px; }
  .dialog-buttons i { font-size: 12px; padding: 5px 10px; }
  .icals, .itrouble { padding: 44px 0; }
  .cal-list { margin-top: 22px; gap: 10px; }
  .cal-list li { grid-template-columns: 32px 1fr; column-gap: 12px; padding: 16px; }
  .cal-list img { width: 32px; height: 32px; grid-row: 1; }
  .cal-list .tag { grid-column: 1 / -1; grid-row: 3; justify-self: start; margin-top: 12px; }
  .cal-list p { grid-column: 1 / -1; grid-row: 2; margin-top: 10px; font-size: 14.5px; }
  .policy { padding-bottom: 44px; }
  .doc { margin-top: 16px; }
  .doc-body { padding: 20px 18px 22px; font-size: 15px; }
  .doc-body h2 { font-size: 18px; }
  pre { font-size: 12.5px; }
}

/* ───────────────────────── Phones (new sections) ───────────────────────── */
@media (max-width: 640px) {
  .what { padding: 52px 0 12px; }
  .head h2 { font-size: 30px; margin-top: 14px; }
  .head p { font-size: 16px; margin-top: 12px; }
  .frow .text h3 { font-size: 25px; }
  .frow .text p { font-size: 15.5px; }
  .shot { padding: 12px; border-radius: 16px; }
  .shot img { border-radius: 9px; }
  .qa { padding: 18px 16px 16px; font-size: 12.5px; }
  .qa-field { font-size: 15px; padding: 10px 12px; min-height: 44px; margin-top: 12px; }
  .qa-foot { flex-wrap: wrap; gap: 8px; margin-top: 24px; }
  .qa-foot .dim { display: none; }
  .qa-foot .grow { flex-basis: 100%; height: 0; }
  .qa-foot .qa-btn:not(.primary) { margin-left: auto; }
  .alert-stage { height: 170px; }
  .alert { width: 94%; }
  .a-top { padding: 0 16px; }
  .a-main { padding: 2px 16px 12px; }
  .list, .trust, .pricing, .whynote { padding: 52px 0; }
  .tiles { margin-top: 22px; gap: 8px; }
  .tiles li { padding: 14px; }
  .sayit { padding: 36px 0; }
  .track span { font-size: 13px; padding: 8px 12px; }
  .note { margin-top: 20px; transform: none; }
  .note-body { padding: 20px 18px 18px; font-size: 15.5px; }
  .trust-grid { margin-top: 22px; gap: 10px; }
  .trust-grid li { padding: 18px; }
  .plan { margin-top: 22px; }
  .plan-body { padding: 22px 20px 24px; }
  .price { font-size: 56px; }
  .faq { padding-bottom: 48px; }
  .faq h2 { margin-bottom: 18px; font-size: 30px; }
  .final { padding-bottom: 48px; }
  .final-card { padding: 0 20px 40px; border-radius: 22px; }
  .final-notch { width: 120px; height: 24px; margin-bottom: 24px; }
  .final-card h2 { font-size: 32px; }
  .final-card p { font-size: 16px; }
}

/* ───────────────────────── Hover effects, only where hover exists ───────────────────────── */
@media (hover: hover) {
  .btn:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.95), inset 0 -1px 0 rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.08), 0 14px 28px -12px rgba(0,0,0,.4); }
  .btn.primary:hover { filter: brightness(1.05); box-shadow: inset 0 1px 0 rgba(255,255,255,.45), inset 0 -1px 0 rgba(0,0,0,.18), 0 2px 4px rgba(0,30,90,.25), 0 16px 34px -10px rgba(0,113,227,.75); }
  .btn.primary:hover::after { transform: skewX(-20deg) translateX(420%); }
  .sync-sources li:hover img { box-shadow: 0 16px 28px -18px rgba(0,0,0,.4); animation-play-state: paused; transform: translateY(-4px); }
  .shot:hover { transform: rotate(0deg) translateY(-3px); box-shadow: 0 40px 70px -30px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.04); }
  .tiles li:hover { transform: translateY(-2px); border-color: rgba(0,0,0,.18); }
  .sayit:hover .track { animation-play-state: paused; }
  .note:hover { transform: rotate(0deg); }
  .footer-links a:hover { color: var(--fg); transform: translateX(2px); }
  .footer:hover .footer-giant svg { transform: translateY(4%); }
}

/* ───────────────────────── Phones (type sizes from the audit) ───────────────────────── */
@media (max-width: 640px) {
  .label { font-size: 12.5px; letter-spacing: .07em; padding: 5px 12px; }
  .caption, .hint, .cta .meta { font-size: 13.5px; }
  .sync-sources span { font-size: 12px; }
  .footer-bottom { font-size: 13.5px; }
  .qa-hint { font-size: 12.5px; line-height: 1.45; color: rgba(255,255,255,.55); }
  .qa-foot, .qa-cal { font-size: 12px; }
  .qa-btn { font-size: 12.5px; padding: 6px 12px; }
  .kbd-dim { font-size: 12px; color: rgba(255,255,255,.5); }
  .track span { font-size: 14px; padding: 9px 13px; }
  .track { animation-duration: 64s; }
  .marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
  .price span { font-size: 26px; }
}

@media (max-width: 640px) {
  .faq .head { margin-bottom: 20px; }
  details.q summary { padding: 15px 14px 15px 16px; font-size: 15.5px; gap: 12px; }
  .plus { width: 26px; height: 26px; }
  .plus::before { width: 10px; } .plus::after { height: 10px; }
  .ans-in { padding: 0 16px 16px; }
  .ans-in p { font-size: 15px; }
  .faq-more { font-size: 13.5px; }
}
