/* Four Notes for Mac: landing page.
   Colours come from the app's Design/Theme.swift (dark palette and the
   finance series); the serif stands in for New York, the app's title face. */

:root {
  color-scheme: dark;
  --bg: #0a0a0b;
  --surface: #151517;
  --ink: #f4f1eb;
  --ink-2: #c4beb4;
  --ink-3: #8f897f;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);
  --red: #ff3b3e;
  --peach: #ffc9b8;
  --violet: #b8a9ff;
  --green: #a6ec9f;
  --amber: #f5c26b;
  --blue: #7cc4f5;
  --teal: #62cdb5;
  --accent: #529cca;
  --serif: "Newsreader", "New York", ui-serif, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  /* A macOS window's corners at this capture size: 34px of 2360×1560. */
  --win-r: 1.45% / 2.2%;
  --pad: clamp(16px, 4vw, 48px);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
/* A whisper of film grain over everything. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark { stroke: none; }
button { font: inherit; color: inherit; }
kbd {
  display: inline-grid;
  place-items: center;
  min-width: 1.7em;
  height: 1.7em;
  margin: 0 2px;
  padding: 0 .35em;
  border-radius: 6px;
  border: 1px solid var(--line-2);
  border-bottom-width: 2px;
  background: rgba(255, 255, 255, .05);
  font: 600 .8125rem/1 var(--sans);
  color: var(--ink);
}
::selection { background: rgba(255, 59, 62, .35); color: #fff; }

:where(a, button, input, [tabindex]):focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 8px; }
[tabindex="-1"]:focus { outline: none; }

.visually-hidden:where(:not(:focus-within, :active)) {
  position: absolute !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
}
.skip-link:focus-within, .skip-link:active {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  padding: 10px 16px; border-radius: 10px; background: var(--ink); color: #111; text-decoration: none; font-weight: 600;
}

/* ─────────── Progress + nav ─────────── */
.progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 60; pointer-events: none; }
.progress span { display: block; height: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--red), var(--amber)); }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: transform .55s var(--ease), background-color .35s, border-color .35s;
}
.nav.is-scrolled {
  background: rgba(10, 10, 11, .64);
  -webkit-backdrop-filter: saturate(1.5) blur(18px);
  backdrop-filter: saturate(1.5) blur(18px);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-101%); }
.nav-inner {
  max-width: var(--maxw);
  height: 64px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 650; letter-spacing: -.015em; font-size: 1.0625rem; }
.brand-mark { width: 30px; height: 30px; color: var(--ink); }
.nav nav { margin-left: auto; }
.nav-links { display: flex; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-links a {
  position: relative;
  display: block;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: .9375rem;
  transition: color .2s, background-color .2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, .06); }
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 50%; bottom: 1px; width: 4px; height: 4px; margin-left: -2px;
  border-radius: 50%; background: var(--red);
}

/* ─────────── Buttons ─────────── */
.btn {
  --h: 44px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--h);
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .04);
  color: var(--ink);
  font: 600 .9375rem/1 var(--sans);
  letter-spacing: -.005em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: scale .16s var(--ease), background-color .2s, border-color .2s, box-shadow .35s var(--ease);
}
.btn:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .24); }
/* The same tactile press as the app's buttons (FNPressButtonStyle: 0.97). */
.btn:active { scale: .97; }
.btn .ico { width: 18px; height: 18px; flex: none; }
.btn-primary {
  color: #141414;
  background: var(--ink);
  border-color: transparent;
  box-shadow: 0 12px 34px -12px rgba(255, 59, 62, .55), inset 0 1px 0 rgba(255, 255, 255, .6);
}
.btn-primary:hover { background: #fff; border-color: transparent; box-shadow: 0 18px 44px -12px rgba(255, 59, 62, .7), inset 0 1px 0 rgba(255, 255, 255, .6); }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .95) 50%, transparent 65%);
  transform: translateX(-130%);
}
.btn-primary:hover::before { transform: translateX(130%); transition: transform .9s var(--ease); }
.btn-sm { --h: 36px; padding: 0 15px; font-size: .875rem; gap: 8px; }
.btn-sm .ico { width: 16px; height: 16px; }
.btn-lg { --h: 52px; padding: 0 24px; font-size: 1rem; }
.btn-xl { --h: 62px; padding: 0 30px; font-size: 1.0625rem; }
.btn-ghost { background: transparent; }
.btn-ghost .ico { transition: transform .35s var(--ease); }
.btn-ghost:hover .ico { transform: translateX(4px); }
.btn-tag {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.btn-icon { flex: none; width: var(--h); padding: 0; background: transparent; }
.nav .btn { flex: none; }
.nav .btn-icon { margin-left: -12px; }
.nav .btn-icon + .btn-icon { margin-left: -16px; }
.btn-icon--kofi { color: #ff7370; }
.btn-icon--kofi:hover { color: #fff; background: #ff5e5b; border-color: transparent; }
.btn-icon--kofi .ico { transition: rotate .4s var(--spring); }
.btn-icon--kofi:hover .ico { rotate: -12deg; }
/* Ko-fi: the coral of the app's own "Buy me a coffee" button. */
.btn-kofi { color: #fff; background: #ff5e5b; border-color: transparent; box-shadow: 0 10px 28px -12px rgba(255, 94, 91, .7); }
.btn-kofi:hover { background: #ff7370; border-color: transparent; }
.btn-kofi .ico { transition: rotate .4s var(--spring); }
.btn-kofi:hover .ico { rotate: -12deg; }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }

/* ─────────── Hero ─────────── */
.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(100px, 12vh, 128px) var(--pad) clamp(80px, 10vw, 140px);
}
.hero-canvas, .hero-fallback { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; display: block; }
.hero-fallback {
  background:
    radial-gradient(55% 45% at 42% 20%, rgba(122, 58, 46, .7), transparent 70%),
    radial-gradient(45% 45% at 84% 78%, rgba(36, 66, 104, .75), transparent 70%),
    radial-gradient(30% 30% at 8% 95%, rgba(90, 46, 38, .5), transparent 70%),
    var(--bg);
  transition: opacity 1.2s;
}
.hero.has-gl .hero-fallback { opacity: 0; }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  z-index: -1;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 4; max-width: 1000px; margin: 0 auto; text-align: center; }
.greet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  padding: 8px 16px 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .045);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--ink-2);
  font-size: .9375rem;
}
.greet [data-greeting] { color: var(--ink); font-weight: 600; }
.greet-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 194, 107, .16), 0 0 18px rgba(245, 194, 107, .9);
  animation: breathe 2.8s ease-in-out infinite;
}
@keyframes breathe { 50% { box-shadow: 0 0 0 7px rgba(245, 194, 107, .06), 0 0 26px rgba(245, 194, 107, .6); } }

.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7.25rem);
  line-height: .94;
  letter-spacing: -.028em;
  text-wrap: balance;
}
.display em, .final-title em { font-style: italic; font-weight: 300; color: var(--peach); }
.lede {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: clamp(1.0625rem, 1.55vw, 1.3125rem);
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}
.assure { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin: 24px 0 0; padding: 0; list-style: none; color: var(--ink-3); font-size: .9rem; }
.assure li { display: inline-flex; align-items: center; gap: 7px; }
.assure .ico { width: 16px; height: 16px; color: var(--teal); stroke-width: 2.2; }

.stage {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: clamp(44px, 5vw, 68px) auto 0;
  aspect-ratio: 2360 / 1560;
  perspective: 2200px;
  perspective-origin: 50% 20%;
}
/* Flat on purpose: in a shared 3D space the tilted window would cut through
   its own glow and wash half the screenshot out along a hard diagonal. */
.win { position: absolute; margin: 0; }
.win-front { inset: 0; z-index: 3; transform: rotateX(14deg); transform-origin: 50% 0; }
.win-back { z-index: 1; top: 8%; width: 70%; opacity: .5; filter: saturate(.8) brightness(.72); }
.win-left { left: -12%; transform: translateZ(-260px) rotateY(18deg) rotateX(8deg); }
.win-right { right: -12%; transform: translateZ(-260px) rotateY(-18deg) rotateX(8deg); }

.win-frame, .panel-frame {
  position: relative;
  overflow: hidden;
  background: var(--frame-bg, #191919);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .09),
    0 60px 120px -40px rgba(0, 0, 0, .9),
    0 30px 60px -30px rgba(0, 0, 0, .7);
}
.win-frame { border-radius: var(--win-r); }
.panel-frame { border-radius: 18px; }
.win-frame::after, .panel-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13), inset 0 0 0 1px rgba(255, 255, 255, .035);
}
.win-frame img, .panel-frame img { display: block; width: 100%; height: auto; }
.win-glow {
  position: absolute;
  inset: 6% 4% -4%;
  z-index: -1;
  opacity: .62;
  filter: blur(64px) saturate(1.7);
  pointer-events: none;
}
.win-glow img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Four floating cards, styled after the app's first-run cards. */
.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 340px;
  padding: 11px 16px 11px 11px;
  border-radius: 16px;
  background: rgba(30, 30, 33, .72);
  border: 1px solid rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  backdrop-filter: blur(22px) saturate(1.5);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.fc-ico { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--c); color: #141417; }
.fc-ico svg { width: 18px; height: 18px; stroke-width: 2; }
.fc-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.fc-text b { font-size: .9rem; font-weight: 600; letter-spacing: -.01em; }
.fc-text small { font-size: .78rem; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fc-meta { margin-left: 10px; font-size: .75rem; font-weight: 500; color: var(--ink-3); white-space: nowrap; }
.fc-meta.is-due { color: #ff8b76; font-weight: 650; }
/* Kept off the parts of the window worth reading: the logo, the brief, quick notes. */
.fc-note { left: -10%; top: 31%; }
.fc-todo { right: -9%; top: 8%; }
.fc-money { left: -11%; top: 63%; }
.fc-ai { right: -8%; top: 79%; }

/* ─────────── Statement ─────────── */
.statement-wrap { max-width: 1120px; margin: 0 auto; padding: clamp(56px, 9vw, 120px) var(--pad) clamp(40px, 6vw, 80px); text-align: center; }
.statement {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.3vw, 3.55rem);
  line-height: 1.15;
  letter-spacing: -.018em;
  text-wrap: balance;
}
.statement .hl { font-style: italic; color: var(--peach); }
.quartet { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 48px 0 0; padding: 0; list-style: none; }
.quartet li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--c) 32%, transparent);
  background: color-mix(in srgb, var(--c) 8%, transparent);
  color: var(--c);
  font-weight: 600;
  font-size: .9375rem;
}
.quartet svg { width: 18px; height: 18px; }

/* ─────────── Features ─────────── */
.feature { position: relative; isolation: isolate; padding: clamp(88px, 12vw, 170px) var(--pad); }
.feature::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -18%;
  width: min(1100px, 130vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: radial-gradient(closest-side, color-mix(in srgb, var(--tint) 15%, transparent), transparent);
  pointer-events: none;
}
.feature-flip::before { right: auto; left: -18%; }
.feature-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 4.3fr) minmax(0, 7.7fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.feature-flip .feature-grid { grid-template-columns: minmax(0, 7.7fr) minmax(0, 4.3fr); }
.feature-flip .feature-copy { order: 2; }
.kicker { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--tint); font-size: .9375rem; font-weight: 600; }
.kicker svg { width: 18px; height: 18px; }
.kicker-num { font: 500 .75rem/1 var(--mono); color: var(--ink-3); padding: 4px 7px; border: 1px solid var(--line-2); border-radius: 6px; }
.feature h2 {
  margin: 0 0 40px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.8vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -.024em;
  text-wrap: balance;
}
.whatwhy { display: grid; gap: 26px; }
.whatwhy--row { grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.ww { position: relative; padding-left: 22px; }
.ww::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(var(--tint), color-mix(in srgb, var(--tint) 0%, transparent));
}
.ww + .ww::before { background: linear-gradient(var(--ink-3), transparent); }
.ww h3 { margin: 0 0 7px; font-size: .9375rem; font-weight: 650; letter-spacing: -.005em; color: var(--tint); }
.ww + .ww h3 { color: var(--ink); }
.ww p { margin: 0; max-width: 54ch; font-size: 1.0625rem; line-height: 1.65; color: var(--ink-2); text-wrap: pretty; }
.fine { margin: 30px 0 0; font-size: .9375rem; color: var(--ink-3); }
.feature-visual { position: relative; min-width: 0; }
.shot { position: relative; margin: 0; }
.shot figcaption { margin-top: 22px; text-align: center; color: var(--ink-3); font-size: .9375rem; }

/* Today: hotspots with a spotlight on the part they describe. */
.spot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--sx, 50%) var(--sy, 50%), transparent 0, transparent var(--sr, 18%), rgba(5, 5, 7, .55) calc(var(--sr, 18%) + 18%));
  transition: opacity .6s var(--ease), background-position .6s var(--ease);
}
.is-spot .spot { opacity: 1; }
.hotspots { position: absolute; inset: 0; margin: 0; padding: 0; list-style: none; pointer-events: none; }
.hotspots li { position: absolute; left: var(--x); top: var(--y); width: 0; height: 0; }
.hs-dot {
  position: absolute;
  left: -9px; top: -9px;
  width: 18px; height: 18px;
  padding: 0;
  border: 2px solid rgba(20, 20, 22, .9);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  background: var(--tint);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--tint) 30%, transparent), 0 6px 18px rgba(0, 0, 0, .6);
  transition: scale .3s var(--spring);
}
/* A bigger target than it looks. */
.hs-dot::before { content: ""; position: absolute; inset: -12px; border-radius: 50%; }
.hs-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--tint);
  opacity: 0;
  animation: ring 2.6s var(--ease) infinite;
}
.hs-dot:hover, .is-on .hs-dot { scale: 1.12; }
@keyframes ring { 0% { opacity: .7; transform: scale(.6); } 80%, 100% { opacity: 0; transform: scale(1.7); } }
.hs-label {
  position: absolute;
  top: 0;
  right: 22px;
  translate: 0 -50%;
  width: max-content;
  max-width: 216px;
  padding: 11px 15px;
  border-radius: 13px;
  background: rgba(20, 20, 23, .9);
  border: 1px solid var(--line-2);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px -16px rgba(0, 0, 0, .85);
  color: var(--ink-2);
  font-size: .8125rem;
  line-height: 1.4;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease), translate .5s var(--ease);
}
.hs-label b { display: block; margin-bottom: 2px; color: var(--ink); font-size: .9rem; font-weight: 600; }
.hs-dot:hover + .hs-label, .hs-dot:focus-visible + .hs-label, .is-on .hs-label { opacity: 1; }
@media (max-width: 1200px) {
  .hs-label { top: 20px; right: auto; left: 0; translate: -50% 0; text-align: center; }
  .hotspots li:first-child .hs-label, .hotspots li:nth-child(2) .hs-label { translate: -24px 0; text-align: left; }
}

/* ─────────── Assistant demo ─────────── */
.demo {
  position: relative;
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: #202020;
  border: 1px solid var(--line-2);
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, .9), 0 0 80px -30px color-mix(in srgb, var(--violet) 40%, transparent);
}
.demo-side { display: flex; flex-direction: column; gap: 18px; padding: 20px 12px; background: #202020; border-right: 1px solid #2f2f2f; }
.demo-brand { display: flex; align-items: center; gap: 9px; padding: 0 8px; }
.demo-brand .brand-mark { width: 30px; height: 30px; }
.demo-brand span { display: flex; flex-direction: column; line-height: 1.2; }
.demo-brand b { font-size: .9375rem; font-weight: 700; letter-spacing: -.02em; }
.demo-brand small { font-size: .75rem; color: #aaa9a5; }
.buckets { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.buckets li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: .875rem;
  color: #e6e6e4;
  transition: background-color .4s;
}
.buckets li svg { width: 17px; height: 17px; color: #aaa9a5; flex: none; }
.buckets li b { margin-left: auto; font-weight: 500; font-size: .8125rem; color: #aaa9a5; font-variant-numeric: tabular-nums; }
.buckets li .beta { padding: 1px 6px; border-radius: 5px; border: 1px solid rgba(255, 115, 105, .5); color: #ff7369; font-size: .6875rem; font-weight: 600; }
.buckets li.is-hit { background: color-mix(in srgb, var(--c) 16%, transparent); }
.buckets li.is-hit svg, .buckets li.is-hit b { color: var(--c); }
.demo-main { position: relative; min-width: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; overflow: hidden; }
.demo-backdrop { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.demo-backdrop img {
  position: absolute;
  top: 0;
  left: -27.8%;
  width: 127.8%;
  max-width: none;
  height: auto;
  opacity: .5;
  filter: blur(1.5px) saturate(1.1);
}
.demo-backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25, 25, 25, .1), rgba(25, 25, 25, .72) 55%, rgba(25, 25, 25, .9)); }

.assist {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  border-radius: 16px;
  background: rgba(31, 31, 31, .94);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.assist-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px 0; font-size: .8125rem; }
.assist-title { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: #e6e6e4; }
.assist-title svg { width: 15px; height: 15px; color: var(--accent); }
.pill-mac { display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; border-radius: 999px; background: rgba(255, 255, 255, .06); color: #aaa9a5; font-size: .7rem; }
.pill-mac svg { width: 12px; height: 12px; }
.assist-clear { margin-left: auto; padding: 4px 8px; border: 0; border-radius: 6px; background: none; color: #aaa9a5; font-size: .78rem; cursor: pointer; }
.assist-clear:hover { color: #e6e6e4; background: rgba(255, 255, 255, .06); }
.assist-log { display: flex; flex-direction: column; gap: 14px; min-height: 168px; max-height: 300px; overflow-y: auto; padding: 16px 14px 14px; scrollbar-width: thin; scrollbar-color: #444 transparent; overscroll-behavior: contain; }
.assist-empty { margin: auto 0; text-align: center; color: #8a8984; font-size: .875rem; }
.msg-user {
  align-self: flex-end;
  max-width: 88%;
  padding: 8px 13px;
  border-radius: 13px;
  background: #2e2e2e;
  color: #ecebe8;
  font-size: .9rem;
  line-height: 1.4;
}
.msg-ai { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; max-width: 100%; }
.msg-ai p { margin: 0; color: #ecebe8; font-size: .9rem; line-height: 1.45; }
.msg-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip-ref { display: inline-flex; align-items: center; gap: 6px; height: 26px; padding: 0 9px; border-radius: 8px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .06); color: #cfcecb; font-size: .78rem; }
.chip-ref svg { width: 13px; height: 13px; color: var(--c, #aaa9a5); }
.chip-show { display: inline-flex; align-items: center; gap: 4px; height: 26px; padding: 0 10px; border-radius: 999px; background: var(--accent); color: #fff; font-size: .78rem; font-weight: 600; }
.chip-show svg { width: 12px; height: 12px; stroke-width: 2.2; }
.msg-ai .pill-mac { font-size: .68rem; }
.typing { display: inline-flex; gap: 4px; padding: 10px 0 4px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #8a8984; animation: dot 1s ease-in-out infinite; }
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes dot { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.assist-input { display: flex; align-items: center; gap: 10px; margin: 0 10px 10px; padding: 8px 8px 8px 14px; border-radius: 12px; background: #262626; border: 1px solid rgba(255, 255, 255, .07); }
.assist-input input { flex: 1; min-width: 0; height: 32px; border: 0; outline: 0; background: none; color: #ecebe8; font: 400 .9rem var(--sans); }
.assist-input input::placeholder { color: #8a8984; }
.assist-input:focus-within { border-color: rgba(82, 156, 202, .7); box-shadow: 0 0 0 3px rgba(82, 156, 202, .2); }
.assist-model { font-size: .75rem; color: #8a8984; white-space: nowrap; }
.assist-send { flex: none; display: grid; place-items: center; width: 32px; height: 32px; border: 0; border-radius: 50%; background: #3a3a3a; color: #e6e6e4; cursor: pointer; transition: background-color .2s, scale .15s; }
.assist-send:hover { background: var(--accent); }
.assist-send:active { scale: .92; }
.assist-send svg { width: 15px; height: 15px; stroke-width: 2; }
.flying { position: fixed; z-index: 80; pointer-events: none; margin: 0; }

.prompts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.prompt {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .035);
  color: var(--ink-2);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: color .2s, border-color .2s, background-color .2s, scale .16s var(--ease);
}
.prompt::before { content: "“"; color: var(--violet); }
.prompt::after { content: "”"; color: var(--violet); }
.prompt:hover { color: var(--ink); border-color: color-mix(in srgb, var(--violet) 55%, transparent); background: color-mix(in srgb, var(--violet) 9%, transparent); }
.prompt:active { scale: .97; }
.prompt[aria-disabled="true"] { opacity: .45; cursor: default; }
.demo-note { margin: 16px 0 0; font-size: .8125rem; color: var(--ink-3); }

.marquee {
  display: grid;
  gap: 14px;
  margin-top: clamp(64px, 9vw, 120px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-row { display: flex; gap: 14px; width: max-content; }
.marquee.is-ready .marquee-row { animation: marquee 70s linear infinite; }
.marquee.is-ready .marquee-row--rev { animation-direction: reverse; animation-duration: 80s; }
.marquee:hover .marquee-row { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee span {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  color: var(--ink-3);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  white-space: nowrap;
}

/* ─────────── Tabs ─────────── */
.feature-head { max-width: var(--maxw); margin: 0 auto; }
.feature-head h2 { max-width: 16ch; }
.tabs { max-width: 1160px; margin: clamp(56px, 7vw, 88px) auto 0; }
.tabs-bar { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 30px; }
.tablist { display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255, 255, 255, .04); }
[role="tab"] {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-3);
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  transition: color .25s, background-color .25s;
}
[role="tab"]:hover { color: var(--ink); }
[role="tab"][aria-selected="true"] { color: var(--ink); background: rgba(255, 255, 255, .1); }
[role="tab"] svg { width: 17px; height: 17px; color: var(--c); }
.tab-progress { position: absolute; left: 20px; right: 20px; bottom: 6px; height: 2px; border-radius: 2px; background: var(--c); transform: scaleX(0); transform-origin: 0 50%; opacity: 0; }
[aria-selected="true"] .tab-progress { opacity: .85; }
.tabs-pause { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, .04); color: var(--ink-2); cursor: pointer; }
.tabs-pause:hover { color: var(--ink); background: rgba(255, 255, 255, .08); }
.tabs-pause svg { width: 15px; height: 15px; stroke-width: 2.2; }
.tabs-pause .ico-play { display: none; }
.tabs-pause[aria-pressed="true"] .ico-play { display: block; }
.tabs-pause[aria-pressed="true"] .ico-pause { display: none; }
.tab-stage { display: grid; }
.tab-panel { grid-area: 1 / 1; min-width: 0; }
.tab-panel:focus-visible { outline-offset: 8px; border-radius: 12px; }
.js .tab-panel[hidden] { display: block; visibility: hidden; }

/* ─────────── Edge dock demo ─────────── */
.desk {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1470 / 922;
  border-radius: 18px;
  border: 1px solid var(--line-2);
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, .9), 0 0 80px -30px color-mix(in srgb, var(--blue) 35%, transparent);
}
.desk-wall {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 90% at 18% 8%, rgba(64, 104, 196, .55), transparent 62%),
    radial-gradient(60% 80% at 88% 100%, rgba(170, 70, 110, .45), transparent 62%),
    radial-gradient(40% 50% at 70% 30%, rgba(92, 64, 170, .35), transparent 70%),
    linear-gradient(160deg, #111a33, #1a1133 55%, #26121f);
}
.desk-app {
  position: absolute;
  left: 5%; top: 9%;
  width: 56%; height: 80%;
  border-radius: 12px;
  overflow: hidden;
  background: #1d1d1f;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .75), 0 0 0 1px rgba(255, 255, 255, .07);
}
.desk-bar { display: flex; align-items: center; gap: 7px; height: 32px; padding: 0 12px; background: #262628; border-bottom: 1px solid rgba(255, 255, 255, .06); font-size: .72rem; color: var(--ink-3); }
.desk-bar i { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; }
.desk-bar i:nth-child(2) { background: #febc2e; }
.desk-bar i:nth-child(3) { background: #28c840; }
.desk-bar span { margin: 0 auto; padding-right: 40px; }
.desk-doc { padding: 9% 11%; }
.desk-doc b { display: block; width: 52%; height: 14px; margin-bottom: 20px; border-radius: 4px; background: rgba(255, 255, 255, .22); }
.desk-doc p { height: 8px; margin: 0 0 12px; border-radius: 4px; background: rgba(255, 255, 255, .08); }
.desk-doc p.short { width: 64%; margin-bottom: 26px; }
/* The real handle is 46×108pt; drawn 1.5× here so it reads at this size. */
.dock-handle {
  position: absolute;
  z-index: 3;
  right: 0; top: 40.1%;
  width: 4.7%; height: 17.6%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: translate .4s var(--spring), opacity .3s;
}
.dock-handle img { display: block; width: 100%; height: 100%; filter: drop-shadow(0 0 12px rgba(124, 196, 245, .55)); animation: handle-glow 2.6s ease-in-out infinite; }
@keyframes handle-glow { 50% { filter: drop-shadow(0 0 22px rgba(124, 196, 245, .95)); } }
.dock-handle:hover { translate: -6px 0; }
.dock-handle:focus-visible { outline-offset: 2px; }
.dock-drawer { position: absolute; z-index: 4; right: 0; top: 7.05%; width: 51%; visibility: hidden; transform: translateX(104%); }
.dock-drawer.is-open { visibility: visible; }
.dock-drawer img { display: block; width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .55)); }
.dock-close { position: absolute; left: 95.1%; top: 11.9%; width: 5%; aspect-ratio: 1; translate: -50% -50%; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }

/* Stuck notes. Captured on a 1470×922pt screen and drawn 1.5× like the
   handle, anchored to the screen edge and the handle's centre (451pt). */
.edge-island, .edge-sticky { position: absolute; z-index: 3; right: 0; visibility: hidden; opacity: 0; }
.edge-island { top: 25.49%; width: 25.61%; aspect-ratio: 251 / 240; }
.edge-sticky { top: 18.66%; width: 32.65%; aspect-ratio: 320 / 372; }
.edge-island.is-open, .edge-sticky.is-open { visibility: visible; opacity: 1; }
.island-img, .edge-sticky picture { position: absolute; inset: 0; opacity: 0; transition: opacity .18s ease-out; pointer-events: none; }
.island-img.is-on, .edge-sticky picture.is-on { opacity: 1; }
.island-img img, .edge-sticky img { display: block; width: 100%; height: 100%; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .5)); }
.bubble-hit {
  position: absolute;
  left: 10%; right: 0;
  top: var(--y);
  height: 15.5%;
  translate: 0 -50%;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  font-size: 0;
  cursor: pointer;
}
.bubble-hit:focus-visible { outline-offset: 0; }
.island-handle { position: absolute; left: 84%; right: 0; top: 46.9%; height: 26.1%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.sticky-close { position: absolute; left: 90.6%; top: 20.2%; width: 9%; aspect-ratio: 1; translate: -50% -50%; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.desk-hint b { font-weight: 500; }
.desk-hint {
  position: absolute;
  z-index: 2;
  right: 6.8%; top: 48.9%;
  display: flex; align-items: center; gap: 8px;
  margin: 0;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(20, 20, 23, .8);
  border: 1px solid var(--line-2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: .8125rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  translate: 0 -50%;
  pointer-events: none;
}
.desk-hint span { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }

/* ─────────── Private & free ─────────── */
.trust { display: grid; gap: 16px; }
.shot-panel .panel-frame { border: 0; }
.trust-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.trust-tiles li {
  position: relative;
  overflow: hidden;
  padding: 56px 20px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
}
.trust-tiles li::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--teal) 14%, transparent), transparent 70%);
  transition: opacity .4s;
}
.trust-tiles li:hover::before { opacity: 1; }
.trust-tiles svg { position: absolute; left: 20px; top: 20px; width: 22px; height: 22px; color: var(--teal); }
.trust-tiles b { position: relative; display: block; margin-bottom: 3px; font-weight: 650; }
.trust-tiles span { position: relative; display: block; color: var(--ink-3); font-size: .9375rem; line-height: 1.5; }

/* ─────────── Themes ─────────── */
.themes {
  --t-bg: #191919; --t-ink: #e6e6e4; --t-muted: #aaa9a5; --t-shadow: rgba(0, 0, 0, .8);
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(96px, 12vw, 170px) var(--pad);
  background: var(--t-bg);
  color: var(--t-ink);
  transition: background-color .9s var(--ease), color .9s var(--ease);
}
.themes[data-theme="light"] { --t-bg: #ffffff; --t-ink: #37352f; --t-muted: #6b6a66; --t-shadow: rgba(40, 30, 20, .28); color-scheme: light; }
.themes[data-theme="paper"] { --t-bg: #fbf6e8; --t-ink: #3a3326; --t-muted: #6b624f; --t-shadow: rgba(90, 70, 30, .3); color-scheme: light; }
.themes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(50% 40% at 30% 20%, rgba(242, 201, 168, .55), transparent 70%),
    radial-gradient(45% 40% at 80% 85%, rgba(211, 225, 214, .6), transparent 70%);
  transition: opacity .9s var(--ease);
}
.themes[data-theme="paper"]::before, .themes[data-theme="light"]::before { opacity: 1; }
.themes[data-theme="light"]::before {
  background:
    radial-gradient(50% 40% at 30% 20%, rgba(246, 199, 182, .5), transparent 70%),
    radial-gradient(45% 40% at 80% 85%, rgba(201, 221, 243, .6), transparent 70%);
}
.themes-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.themes h2 { margin: 0 0 18px; font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 6vw, 5.25rem); line-height: 1; letter-spacing: -.026em; }
.themes-head p { margin: 0 0 30px; color: var(--t-muted); font-size: 1.125rem; transition: color .9s var(--ease); }
.seg {
  position: relative;
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--t-ink) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--t-ink) 12%, transparent);
}
.seg button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--t-muted);
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  transition: color .3s;
}
.seg button svg { width: 17px; height: 17px; }
.seg button[aria-pressed="true"] { color: var(--t-ink); }
.seg-thumb {
  position: absolute;
  z-index: 0;
  top: 4px; bottom: 4px; left: 0;
  width: var(--w, 0px);
  translate: var(--x, 0px) 0;
  border-radius: 999px;
  background: var(--t-bg);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .18), 0 0 0 1px color-mix(in srgb, var(--t-ink) 10%, transparent);
  transition: translate .55s var(--spring), width .55s var(--spring), background-color .9s var(--ease);
}
.themes-shot { max-width: 1100px; margin: 0 auto; }
.themes-shot .win-frame { display: grid; background: transparent; box-shadow: 0 0 0 1px color-mix(in srgb, var(--t-ink) 10%, transparent), 0 60px 120px -40px var(--t-shadow); transition: box-shadow .9s var(--ease); }
.themes-shot picture { grid-area: 1 / 1; opacity: 0; scale: 1.02; transition: opacity .7s var(--ease), scale 1s var(--ease); }
.themes-shot picture.is-on { opacity: 1; scale: 1; }

/* ─────────── Download ─────────── */
.final { position: relative; isolation: isolate; overflow: clip; padding: clamp(120px, 16vw, 220px) var(--pad) clamp(96px, 12vw, 160px); text-align: center; }
.final-glow {
  position: absolute;
  z-index: -1;
  left: 50%; top: 34%;
  width: min(1000px, 150vw);
  aspect-ratio: 1;
  translate: -50% -50%;
  background: radial-gradient(closest-side, rgba(255, 59, 62, .2), rgba(122, 58, 46, .22) 45%, transparent 75%);
  pointer-events: none;
}
.final-icon {
  display: block;
  width: 132px;
  height: 132px;
  margin: 0 auto 44px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 34px 90px -24px rgba(255, 59, 62, .55), 0 0 0 1px rgba(255, 255, 255, .12), inset 0 0 0 1px rgba(0, 0, 0, .04);
}
.final-title { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(3rem, 8.4vw, 7.5rem); line-height: .95; letter-spacing: -.03em; text-wrap: balance; }
.final-lede { max-width: 560px; margin: 30px auto 0; color: var(--ink-2); font-size: clamp(1.0625rem, 1.5vw, 1.25rem); }
.final-meta { margin: 22px 0 0; color: var(--ink-3); font-size: .875rem; }
.cta-row--center { justify-content: center; }
.support {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 18px;
  width: fit-content; max-width: 100%; margin: 44px auto 0; padding: 14px 14px 14px 22px;
  border-radius: 999px; border: 1px solid var(--line); background: rgba(255, 255, 255, .03);
}
.support p { margin: 0; color: var(--ink-2); font-size: .9375rem; }

.footer { border-top: 1px solid var(--line); padding: 36px var(--pad) calc(40px + env(safe-area-inset-bottom)); color: var(--ink-3); font-size: .875rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; }
.footer p { margin: 0; }
.footer-copy { margin-left: auto !important; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; margin: 0; padding: 0; list-style: none; }
.footer-links a { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-links .ico { width: 15px; height: 15px; }

.mobile-cta { display: none; }

/* ─────────── Motion states (only when the script runs) ─────────── */
.js [data-hero-in], .js .stage, .js [data-rise] { opacity: 0; }
.js [data-split] { visibility: hidden; }

/* ─────────── Responsive ─────────── */
@media (max-width: 1100px) {
  .fc-note, .fc-money { left: -3%; }
  .fc-todo, .fc-ai { right: -3%; }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav .btn-icon { margin-left: auto; }
  .nav .btn-icon + .btn { margin-left: 0; }
  .nav .btn-icon + .btn-icon { margin-left: -16px; }
  .feature-grid, .feature-flip .feature-grid { grid-template-columns: 1fr; }
  .feature-flip .feature-copy { order: 0; }
  .feature::before { right: -40%; top: 70%; }
  .feature-flip::before { left: -40%; }
  .whatwhy { grid-template-columns: 1fr 1fr; gap: 24px; }
  .win-back { display: none; }
  .stage { perspective: 1600px; }
  .fc-note { left: -2%; top: -4%; }
  .fc-ai { right: -2%; top: auto; bottom: -6%; }
  .fc-todo, .fc-money { display: none; }
}
@media (max-width: 700px) {
  body { font-size: 1rem; }
  .hero { padding-top: 104px; }
  .greet { font-size: .8125rem; margin-bottom: 24px; }
  .greet-rest { display: none; }
  .cta-row .btn-lg { width: 100%; }
  .whatwhy, .whatwhy--row { grid-template-columns: 1fr; }
  .float-card { display: none; }
  /* Phones: the callouts become a short list under the screenshot. */
  .hotspots { position: static; display: grid; gap: 8px; margin-top: 16px; counter-reset: hs; pointer-events: auto; }
  .hotspots li { position: static; width: auto; height: auto; }
  .hotspots .hs-dot { display: none; }
  .hotspots .hs-label {
    position: static; display: block; max-width: none; width: auto; translate: none; text-align: left;
    padding: 12px 14px 12px 44px; opacity: 1; background: rgba(255, 255, 255, .03); border-color: var(--line);
    -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; transition: border-color .4s, background-color .4s;
  }
  .hotspots li:first-child .hs-label, .hotspots li:nth-child(2) .hs-label { translate: none; }
  .hotspots .hs-label::before {
    counter-increment: hs; content: counter(hs);
    position: absolute; left: 14px; top: 13px; width: 20px; height: 20px; border-radius: 50%;
    display: grid; place-items: center; background: var(--tint); color: #141414; font-size: .7rem; font-weight: 700;
  }
  .hotspots li { position: relative; left: 0; top: 0; }
  .hotspots .is-on .hs-label { border-color: color-mix(in srgb, var(--tint) 55%, transparent); background: color-mix(in srgb, var(--tint) 8%, transparent); }
  .demo { grid-template-columns: 1fr; min-height: 0; }
  .demo-side { padding: 8px; border-right: 0; border-bottom: 1px solid #2f2f2f; }
  .demo-brand { display: none; }
  .buckets { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; }
  .buckets li { justify-content: center; height: 34px; padding: 0 4px; gap: 5px; font-size: .75rem; white-space: nowrap; }
  .buckets li svg, .buckets li .beta { display: none; }
  .buckets li b { margin-left: 0; }
  .demo-main { padding: 10px; min-height: 420px; }
  .assist-model { display: none; }
  .tabs-bar { gap: 8px; }
  [role="tab"] { padding: 0 13px; height: 38px; font-size: .875rem; }
  [role="tab"] svg { display: none; }
  .tab-progress { left: 13px; right: 13px; }
  .tabs-pause { width: 38px; height: 38px; flex: none; }
  .desk-bar span { display: none; }
  .trust-tiles { grid-template-columns: 1fr; }
  .trust-tiles li { padding: 18px 18px 18px 56px; }
  .trust-tiles svg { top: 19px; }
  .seg button { padding: 0 14px; }
  .desk-hint { font-size: .72rem; padding: 6px 10px; right: 6.5%; }
  .footer-copy { margin-left: 0 !important; }
  .cta-row .btn-xl { width: 100%; }
  .support { border-radius: 20px; padding: 18px; text-align: center; }
  .mobile-cta {
    display: block;
    position: fixed;
    z-index: 55;
    left: 12px; right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    translate: 0 140%;
    transition: translate .55s var(--ease);
  }
  .mobile-cta.is-shown { translate: 0 0; }
  .mobile-cta .btn { width: 100%; --h: 52px; box-shadow: 0 18px 40px -10px rgba(0, 0, 0, .8), 0 12px 34px -12px rgba(255, 59, 62, .6); }
}

/* Narrow phones: the logo alone, so the header buttons keep their size. */
@media (max-width: 400px) { .nav .brand span { display: none; } }

/* No keyboard shortcut to try on a phone or tablet. */
@media (hover: none) and (pointer: coarse) { .kbd-hint { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .marquee.is-ready .marquee-row { animation: none; }
}
