/* ── Tokens ──────────────────────────────────────────────────────────── */
:root {
  color-scheme: light;
  --bg:          #ffffff;
  --bg-soft:     #f4f7fd;
  --bg-hero:     #ebf0fc;
  --ink:         #0f1627;
  --ink-2:       #3d506e;
  --ink-3:       #7e93b2;
  --blue:        #0a84ff;
  --teal:        #17c8da;
  --green:       #30d158;
  --orange:      #ff9f0a;
  --border:      rgba(15,22,39,0.09);
  --border-mid:  rgba(15,22,39,0.13);
  --shadow-sm:   0 2px 8px rgba(15,22,39,0.06), 0 1px 2px rgba(15,22,39,0.04);
  --shadow:      0 8px 28px rgba(15,22,39,0.10), 0 2px 6px rgba(15,22,39,0.05);
  --shadow-lg:   0 24px 60px rgba(15,22,39,0.14);
  --max:         1160px;
}

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Figtree", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
button, input { font: inherit; }
[hidden] { display: none !important; }

svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

/* ── Layout ──────────────────────────────────────────────────────────── */
.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

#features,
#workflow,
#privacy,
#permissions,
#download,
#faq {
  scroll-margin-top: 84px;
}

/* ── Section label ───────────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 14px;
  border: 1.5px solid rgba(10,132,255,0.22);
  border-radius: 100px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(10,132,255,0.06);
}

h2 {
  font-family: "Figtree", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h3 {
  font-family: "Figtree", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

/* ── Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 64px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(22px) saturate(160%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: "Pacifico", cursive;
  font-size: 19px;
  color: var(--ink);
}

.brand img {
  width: 34px; height: 34px;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 160ms;
}

.nav-links a:hover { color: var(--ink); }
.nav-links svg { width: 13px; height: 13px; }

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 104px;
  padding: 0 18px;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  background: var(--ink);
  transition: opacity 160ms;
}

.header-action:hover { opacity: 0.85; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero-wrap {
  background:
    radial-gradient(ellipse 55% 70% at 68% 55%, rgba(10,132,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 30% 30%, rgba(23,200,218,0.07) 0%, transparent 55%),
    var(--bg-hero);
  background-image:
    radial-gradient(ellipse 55% 70% at 68% 55%, rgba(10,132,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 30% 30%, rgba(23,200,218,0.07) 0%, transparent 55%),
    radial-gradient(rgba(15,22,39,0.055) 1px, transparent 1px),
    linear-gradient(var(--bg-hero), var(--bg-hero));
  background-size: auto, auto, 26px 26px, auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: calc(100svh - 64px);
  padding: clamp(48px, 7vw, 80px) 0 clamp(44px, 7vw, 80px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
  padding: 6px 14px 6px 10px;
  border: 1.5px solid var(--border-mid);
  border-radius: 100px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-sm);
}

.hero-badge svg {
  width: 16px; height: 16px;
  stroke: var(--blue);
  flex: none;
}

.hero-title {
  font-family: "Pacifico", cursive;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 28px;
  padding-bottom: 8px;
}

.teal-i { color: var(--teal); }

.hero-lede {
  color: var(--ink-2);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 150ms, box-shadow 150ms, opacity 150ms;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; height: 17px; flex: none; }

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 28px rgba(15,22,39,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
}

.button-primary:hover { box-shadow: 0 16px 36px rgba(15,22,39,0.28); }

.button-ghost {
  border: 1.5px solid var(--border-mid);
  color: var(--ink);
  background: rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
}

.button-ghost:hover { background: #fff; box-shadow: var(--shadow); }

/* dark CTA variants */
.button-primary-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 32px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.3);
}

.button-primary-light:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.24); }

.button-ghost-light {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
}

.button-ghost-light:hover { background: rgba(255,255,255,0.14); }
.button-ghost-light svg { stroke: rgba(255,255,255,0.9); }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 10px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  background: rgba(255,255,255,0.7);
}

.hero-pills svg {
  width: 15px; height: 15px;
  stroke: var(--blue);
  flex: none;
}

/* ── Hero product mockup ─────────────────────────────────────────────── */
.hero-product {
  position: relative;
  display: grid;
  align-content: start;
  justify-items: center;
  min-width: 0;
  padding: 0;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.picker-glow {
  position: absolute;
  inset: -58px -54px;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 70% 64% at 46% 36%, rgba(10,132,255,0.17) 0%, transparent 62%),
    radial-gradient(ellipse 58% 54% at 72% 66%, rgba(23,200,218,0.13) 0%, transparent 56%);
  filter: blur(30px);
}

/* ── Picker window ───────────────────────────────────────────────────── */
.picker-window {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
  min-height: 760px;
  border: 1px solid rgba(101,113,126,0.3);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(242,250,252,0.78), rgba(232,242,246,0.9)),
    rgba(235,247,250,0.92);
  backdrop-filter: blur(30px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.98),
    inset 0 0 0 1px rgba(255,255,255,0.5),
    0 1px 2px rgba(15,22,39,0.18),
    0 28px 70px rgba(15,22,39,0.18);
}

.picker-search, .picker-footer { display: flex; align-items: center; }

.picker-search {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  height: 95px;
  padding: 16px 27px;
  border-bottom: 1px solid rgba(100,120,160,0.1);
  background: rgba(232,248,252,0.42);
}

.picker-search::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 18px;
  left: 25px;
  right: 150px;
  border: 1.5px solid rgba(10,132,255,0.55);
  border-radius: 15px;
  background: rgba(223,247,253,0.48);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.38),
    0 0 0 1px rgba(10,132,255,0.06);
}

.picker-search svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  margin-left: 18px;
  color: #6b7f86;
}

.picker-search input {
  position: relative;
  z-index: 1;
  min-width: 0; flex: 1;
  border: 0; outline: 0;
  color: #5f6d70;
  font-size: 24px;
  line-height: 1;
  background: transparent;
  caret-color: var(--blue);
}

.picker-search input::placeholder { color: #697679; }
.picker-search span {
  position: relative;
  z-index: 1;
  color: #6d7578;
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}

.history-list {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 10px;
  padding: 16px 20px 18px;
}

.history-row {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) 34px;
  align-items: center;
  width: 100%;
  min-height: 92px;
  gap: 15px;
  padding: 10px 17px;
  border: 0;
  border-radius: 15px;
  color: var(--ink);
  text-align: left;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  transition: background 120ms, box-shadow 120ms;
}

.history-row + .history-row { border-top: 0; }

.history-row:hover,
.history-row.selected {
  background:
    linear-gradient(90deg, rgba(193,230,250,0.8), rgba(206,239,251,0.72)),
    rgba(255,255,255,0.34);
  box-shadow:
    inset 0 0 0 1.5px rgba(10,132,255,0.42),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

.image-row {
  grid-template-columns: 58px 107px minmax(0,1fr) 34px;
  min-height: 116px;
}

.text-row {
  grid-template-columns: 58px minmax(0,1fr);
}

/* ── Row icons ───────────────────────────────────────────────────────── */
.row-icon, .step-icon {
  display: grid; place-items: center;
  flex: none;
}

.row-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
}

.row-icon svg { width: 20px; height: 20px; }

.picker-window .row-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #94a5aa;
  background: rgba(205,221,226,0.48);
}

.picker-window .row-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.1;
}

.picker-window .image-kind {
  color: #248cff;
  background: rgba(10,132,255,0.14);
}

.active-dot::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0a84ff;
  box-shadow: 0 0 0 2px rgba(232,248,252,0.9);
}

.quote-kind svg {
  stroke-width: 2.3;
}

.green  { background: rgba(48,209,88,0.12);   color: #1a9e3a; }
.orange { background: rgba(255,159,10,0.12);  color: #b86500; }
.blue   { background: rgba(10,132,255,0.12);  color: var(--blue); }
.cyan   { background: rgba(23,200,218,0.12);  color: #0a8fa0; }

/* ── Enter hint ──────────────────────────────────────────────────────── */
.row-enter {
  align-self: center;
  justify-self: end;
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  color: #4aa0ff;
  background: rgba(10,132,255,0.12);
  opacity: 1;
  transition: opacity 120ms;
}

.row-enter svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.text-row .row-enter { display: none; }

.thumb {
  display: block;
  width: 38px; height: 38px;
  border-radius: 9px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.22), transparent 36%),
    linear-gradient(145deg, #81c2de 0 34%, #d5dfa3 34% 51%, #3d8449 51% 68%, #2b6040 68%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4), 0 5px 14px rgba(0,0,0,0.1);
}

.row-main { min-width: 0; display: grid; gap: 4px; }

.row-main strong {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #172126;
}

.row-main span {
  color: #1f2a2e;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.18;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mono span, code {
  font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
}

.history-row.mono span,
.history-row .mono span {
  letter-spacing: -0.04em;
}

.image-preview {
  display: grid;
  place-items: center;
  width: 107px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(15,22,39,0.06),
    0 4px 12px rgba(15,22,39,0.08);
}

.app-icon-preview img {
  width: 62px;
  height: 62px;
  border-radius: 15px;
}

.device-preview {
  background:
    radial-gradient(circle at 74% 24%, rgba(255,255,255,0.78) 0 7%, transparent 8%),
    radial-gradient(circle at 30% 68%, rgba(255,255,255,0.46) 0 11%, transparent 12%),
    linear-gradient(135deg, #7cc7ff 0%, #95f2d0 42%, #f6d27a 100%);
}

.row-meta {
  align-self: start;
  display: grid;
  justify-items: end;
  gap: 7px;
  color: var(--ink-3);
  font-size: 12px;
  white-space: nowrap;
}

kbd {
  min-width: 30px; height: 24px;
  display: inline-grid; place-items: center;
  padding: 0 7px;
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  color: var(--ink-2);
  font-family: inherit; font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.85);
  box-shadow: inset 0 -1px 0 var(--border-mid);
}

.picker-footer {
  justify-content: space-between;
  min-height: 55px;
  margin-top: auto;
  padding: 0 26px;
  border-top: 1px solid rgba(100,120,160,0.12);
  color: rgba(100,109,113,0.55);
  font-size: 19px;
  font-weight: 600;
  background: rgba(225,235,241,0.52);
}

.picker-footer b {
  color: rgba(100,109,113,0.5);
  font-weight: 800;
}

.picker-footer svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
}

/* ── Scroll reveal ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Workflow ────────────────────────────────────────────────────────── */
.workflow {
  padding: clamp(60px, 8vw, 96px) 0;
  text-align: center;
}

.workflow h2 { margin-bottom: 36px; }

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.workflow-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: box-shadow 200ms, transform 200ms;
}

.workflow-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.green-card { border-color: rgba(48,209,88,0.22); }

.step-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  border: 1.5px solid rgba(10,132,255,0.18);
  color: var(--blue);
  background: rgba(10,132,255,0.07);
}

.step-icon svg { width: 26px; height: 26px; }

.step-green {
  color: var(--green);
  background: rgba(48,209,88,0.07);
  border-color: rgba(48,209,88,0.2);
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.workflow-card p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* ── Feature table ───────────────────────────────────────────────────── */
.feature-table-wrap {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--bg-soft);
}

.feature-table-wrap h2 { margin-bottom: 32px; }

.typed-table {
  overflow: hidden;
  border: 1.5px solid var(--border-mid);
  border-radius: 22px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.typed-row {
  display: grid;
  grid-template-columns: 50px 118px minmax(180px,1fr) minmax(220px,0.82fr);
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 140ms;
}

.typed-row:last-child { border-bottom: 0; }
.typed-row:hover { background: rgba(10,132,255,0.03); }

.typed-row strong { font-size: 15px; font-weight: 700; color: var(--ink); }
.typed-row span, .typed-row code, .typed-row p {
  color: var(--ink-2); font-size: 13px; line-height: 1.45;
}
.typed-row code { font-family: "SF Mono", ui-monospace, Menlo, monospace; }
.typed-row .thumb { width: 40px; height: 30px; border-radius: 7px; }

.table-note {
  margin-top: 16px;
  color: var(--ink-3);
  font-size: 13px;
}

/* ── Privacy ────────────────────────────────────────────────────────── */
.privacy-wrap {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--bg);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(520px, 1.18fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.privacy-copy {
  position: sticky;
  top: 92px;
}

.privacy-copy h2 {
  max-width: 440px;
  margin-bottom: 18px;
}

.privacy-copy p {
  max-width: 420px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-card {
  min-height: 188px;
  padding: 24px;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76)),
    var(--bg);
  box-shadow: var(--shadow-sm);
}

.trust-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--blue);
}

.trust-card h3 {
  margin-bottom: 9px;
}

.trust-card p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.58;
}

/* ── Keyboard ────────────────────────────────────────────────────────── */
.keyboard {
  padding: clamp(56px, 7vw, 88px) 0;
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
  align-items: start;
  gap: 20px;
}

.shortcut-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 20px;
  border-radius: 22px;
  border: 1.5px solid var(--border-mid);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.shortcut-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.keys {
  display: flex;
  align-items: center;
  gap: 10px;
}

.keys kbd {
  min-width: 54px; height: 48px;
  border-radius: 11px;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--border-mid);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -2px 0 var(--border-mid),
    0 6px 18px rgba(15,22,39,0.08);
}

.keys span { color: var(--ink-3); font-size: 18px; }
.shortcut-desc { color: var(--ink-2); font-size: 14px; line-height: 1.5; }

.keyboard-copy { padding: 4px 0; }

.keyboard-copy h2 { margin-bottom: 20px; }

.keyboard-copy ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.keyboard-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}

.keyboard-copy li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 10px; height: 6px;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(-45deg);
  opacity: 0.7;
}

.menubar-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.menubar-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.menubar-icon-wrap {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(10,132,255,0.08);
}

.menubar-icon-wrap img { width: 28px; height: 28px; border-radius: 7px; }

.menubar-line i {
  width: 22px; height: 14px;
  border: 2px solid rgba(15,22,39,0.18);
  border-radius: 5px;
}

.menubar-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.menubar-card p { color: var(--ink-2); font-size: 13px; line-height: 1.6; margin: 0; }

/* ── Install ─────────────────────────────────────────────────────────── */
.install-wrap {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--bg-soft);
  text-align: center;
}

.install-wrap h2 { margin-bottom: 36px; }

.download-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.9fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 42px;
  padding: 26px;
  border: 1.5px solid rgba(10,132,255,0.18);
  border-radius: 26px;
  background:
    radial-gradient(ellipse 60% 90% at 100% 0%, rgba(10,132,255,0.09), transparent 62%),
    var(--bg);
  box-shadow: var(--shadow);
  text-align: left;
}

.download-kicker {
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-panel h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.download-panel p {
  max-width: 430px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

.beta-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  width: fit-content;
  margin-top: 16px;
  padding: 9px 12px;
  border: 1.5px solid rgba(48,209,88,0.22);
  border-radius: 14px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  background: rgba(48,209,88,0.08);
}

.beta-price-was {
  position: relative;
  color: var(--ink-3);
  font-weight: 700;
}

.beta-price-was::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-7deg);
}

.beta-price strong {
  color: #177a2d;
  font-size: 14px;
}

.beta-price span:last-child {
  color: var(--ink-3);
  font-weight: 500;
}

.download-facts {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.download-facts li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.42;
}

.download-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44em;
  width: 10px;
  height: 6px;
  border-left: 2.3px solid var(--blue);
  border-bottom: 2.3px solid var(--blue);
  transform: rotate(-45deg);
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.install-steps article {
  position: relative;
  min-height: 188px;
  padding: 34px 18px 24px;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms, transform 200ms;
}

.install-steps article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.install-steps svg, .install-steps img {
  width: 46px; height: 46px;
  margin: 0 auto 16px;
  display: block;
}

.install-steps img {
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(15,22,39,0.14);
}

.install-steps svg { color: var(--ink-3); }

.install-steps .success-check {
  display: block;
  padding: 10px;
  color: white;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 24px rgba(48,209,88,0.28);
}

.step-number {
  position: absolute;
  top: -13px; left: -8px;
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: white;
  font-size: 12px; font-weight: 800;
  background: var(--ink);
  box-shadow: 0 8px 22px rgba(15,22,39,0.22);
}

.install-steps h3 { margin-bottom: 8px; font-size: 16px; }
.install-steps p { color: var(--ink-2); font-size: 14px; line-height: 1.55; }

.permission-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  margin-top: 20px;
  padding: 0 20px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  color: var(--ink-2);
  font-size: 14px;
  background: rgba(10,132,255,0.04);
}

.permission-note svg { color: var(--blue); flex: none; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq-wrap {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 92px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1.5px solid var(--border);
  border-radius: 18px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.62;
}

/* ── Final CTA ───────────────────────────────────────────────────────── */
.final-cta {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--ink);
  text-align: center;
}

.final-brand {
  font-family: "Pacifico", cursive;
  font-size: clamp(42px, 6vw, 80px);
  color: #fff;
  margin-bottom: 16px;
}

.final-cta > .section-shell > p {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.final-cta .hero-actions { justify-content: center; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
  }

  .hero-copy { max-width: 600px; }

  .keyboard,
  .install-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .privacy-copy,
  .faq-heading {
    position: static;
  }

  .download-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-panel p {
    margin: 0 auto;
  }

  .beta-price {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .download-facts {
    justify-self: center;
    text-align: left;
  }

  .download-panel .button {
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .section-shell { width: min(100% - 32px, var(--max)); }
  .site-header { min-height: 60px; padding: 0 16px; }
  .brand span, .nav-links { display: none; }

  .hero { padding: 36px 0 48px; gap: 36px; }
  .hero-copy,
  .hero-product,
  .picker-window {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .hero-title { font-size: clamp(46px, 11vw, 72px); }
  .hero-lede { font-size: 17px; }
  .hero-product { padding: 12px; border-radius: 22px; }

  .button { flex: 1 1 200px; }

  .picker-window {
    min-height: 650px;
    border-radius: 28px;
  }
  .picker-search {
    grid-template-columns: 26px minmax(0,1fr) auto;
    height: 76px;
    padding: 13px 18px;
  }
  .picker-search::before {
    top: 13px;
    bottom: 13px;
    left: 17px;
    right: 112px;
    border-radius: 13px;
  }
  .picker-search svg {
    width: 21px;
    height: 21px;
    margin-left: 14px;
  }
  .picker-search input {
    font-size: 18px;
  }
  .picker-search span {
    font-size: 17px;
  }
  .history-list { gap: 8px; padding: 12px 14px 14px; }
  .history-row {
    grid-template-columns: 46px minmax(0,1fr);
    min-height: 68px;
    gap: 11px;
    padding: 8px 10px;
  }
  .image-row {
    grid-template-columns: 46px 82px minmax(0,1fr);
    min-height: 88px;
  }
  .text-row {
    grid-template-columns: 46px minmax(0,1fr);
  }
  .picker-window .row-icon {
    width: 42px;
    height: 42px;
  }
  .picker-window .row-icon svg {
    width: 23px;
    height: 23px;
  }
  .image-preview {
    width: 82px;
    height: 58px;
  }
  .app-icon-preview img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
  .row-main strong {
    font-size: 21px;
  }
  .row-main span {
    font-size: 20px;
  }
  .row-enter { display: none; }
  .picker-footer {
    flex-wrap: wrap;
    gap: 8px;
    min-height: 48px;
    padding: 8px 14px;
    font-size: 15px;
  }

  .workflow-grid,
  .keyboard,
  .install-steps {
    grid-template-columns: 1fr;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 0;
  }

  .typed-row {
    grid-template-columns: 46px minmax(0,1fr);
    gap: 8px 12px;
  }

  .typed-row p, .typed-row code,
  .typed-row > span:not(.row-icon):not(.thumb) { grid-column: 2; }
}

@media (max-width: 520px) {
  .site-header { overflow: hidden; }
  .header-action {
    min-width: 88px;
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-lede {
    max-width: 100%;
  }
  .hero-actions {
    width: 100%;
  }
  .button { width: 100%; flex-basis: 100%; }
  .button {
    min-width: 0;
    justify-content: center;
  }
  .keys { flex-wrap: wrap; justify-content: center; }
  .install-steps { grid-template-columns: 1fr; }
  .hero-pills { gap: 8px; }
  .hero-product { padding: 0; }
  .picker-window {
    min-height: 560px;
    border-radius: 24px;
  }
  .picker-search {
    grid-template-columns: 22px minmax(0,1fr) auto;
    height: 64px;
    padding: 10px 12px;
    gap: 7px;
  }
  .picker-search::before {
    top: 10px;
    bottom: 10px;
    left: 11px;
    right: 84px;
    border-radius: 12px;
  }
  .picker-search svg {
    width: 18px;
    height: 18px;
    margin-left: 10px;
  }
  .picker-search input {
    font-size: 15px;
  }
  .picker-search span {
    font-size: 13px;
  }
  .history-list {
    gap: 6px;
    padding: 10px;
  }
  .history-row {
    min-height: 58px;
    grid-template-columns: 38px minmax(0,1fr);
    border-radius: 12px;
  }
  .image-row {
    grid-template-columns: 38px 68px minmax(0,1fr);
    min-height: 76px;
  }
  .text-row {
    grid-template-columns: 38px minmax(0,1fr);
  }
  .picker-window .row-icon {
    width: 36px;
    height: 36px;
  }
  .picker-window .row-icon svg {
    width: 20px;
    height: 20px;
  }
  .image-preview {
    width: 68px;
    height: 48px;
  }
  .app-icon-preview img {
    width: 39px;
    height: 39px;
    border-radius: 10px;
  }
  .row-main strong {
    font-size: 18px;
  }
  .row-main span {
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .picker-footer {
    min-height: 42px;
    font-size: 13px;
  }

  .download-panel,
  .trust-card,
  .faq-list summary {
    padding-left: 18px;
    padding-right: 18px;
  }
}

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