/* Pricing, privacy, welcome, updates, uninstall and the small pages. Same
   tokens as site.css; nothing here introduces a colour of its own. */

/* ═══ pricing ═══ */
.plans { width: var(--page); margin: clamp(40px, 5vw, 64px) auto 0; }
.billing { display: flex; justify-content: center; margin-bottom: 28px; }
.plan-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; max-width: 1040px; margin-inline: auto; }
.plan {
  display: flex; flex-direction: column; gap: 28px; padding: clamp(28px, 3vw, 44px); border-radius: 28px;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--divider-soft);
}
/* Pro is the popup's waitlist card at page scale: dashed sea-glass, not yet a door */
.plan-pro { background: var(--accent-fill-subtle); box-shadow: none; border: 1.5px dashed var(--accent-line); }
.plan-top h2 { display: flex; align-items: center; gap: 12px; font-size: 22px; letter-spacing: -0.02em; }
.price { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; }
.price .amt { font-size: clamp(48px, 5vw, 64px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; }
.price .per { font-size: 17px; color: var(--text-muted); }
.plan-note { margin-top: 10px; color: var(--text-soft); font-size: 15px; }
.ticks { list-style: none; display: grid; gap: 14px; }
.ticks li { position: relative; padding-inline-start: 30px; color: var(--text-secondary); font-size: 16px; line-height: 1.5; }
.ticks li b { color: var(--text); font-weight: 600; }
.ticks li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 3px; width: 18px; height: 18px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.plan-cta { margin-top: auto; align-self: flex-start; }
.waitlist { display: grid; gap: 12px; margin-top: auto; padding-top: 24px; border-top: 1px dashed var(--accent-line-soft); }
.wl-label { font-size: 15px; font-weight: 600; color: var(--text); }
.wl-row { display: flex; gap: 10px; }
.wl-row .input { flex: 1; min-width: 0; min-height: 54px; border-radius: 999px; padding-inline: 20px; }
.waitlist.is-done .wl-row, .waitlist.is-done .wl-label, .waitlist.is-done .form-note { display: none; }
.promise { margin: 36px auto 0; text-align: center; font-size: 17px; color: var(--text-secondary); }
.promise::before {
  content: ""; display: inline-block; width: 7px; height: 7px; margin-inline-end: 12px; border-radius: 50%;
  background: var(--accent); vertical-align: 2px;
}

.cost-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.calc { display: grid; gap: 18px; padding: clamp(28px, 3vw, 40px); border-radius: 28px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--divider-soft); }
.calc-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.calc-day { font-size: 22px; font-weight: 600; color: var(--text); letter-spacing: -0.02em; }
.calc-model { flex-wrap: wrap; margin-top: 8px; }
.seg-3 .thumb { width: calc((100% - 8px) / 3); }
.seg-3:has(label:nth-of-type(3) input:checked) .thumb { transform: translateX(200%); }
:root[dir="rtl"] .seg-3:has(label:nth-of-type(3) input:checked) .thumb { transform: translateX(-200%); }
.seg-3 label { padding: 0 14px; font-size: 14px; }
.calc-out { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; padding-top: 24px; border-top: 1px solid var(--divider-soft); }
.calc-num { font-size: clamp(48px, 5vw, 64px); font-weight: 600; letter-spacing: -0.04em; line-height: 1; color: var(--accent); }
.calc-per { font-size: 18px; color: var(--text-muted); }
.calc-range { font-size: 14.5px; color: var(--text-muted); }

/* a range slider in the popup's colours */
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 28px; margin: 0; background: transparent; cursor: pointer; }
.range::-webkit-slider-runnable-track {
  height: 6px; border-radius: 3px;
  background: linear-gradient(to right, var(--accent) var(--fill, 10%), var(--neutral-800) var(--fill, 10%));
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; margin-top: -9px; border-radius: 50%;
  background: var(--text); box-shadow: 0 0 0 1px var(--divider), 0 3px 10px var(--shadow-color);
  transition: box-shadow .2s ease, transform .16s var(--ease-out);
}
.range:active::-webkit-slider-thumb { transform: scale(1.08); }
.range::-moz-range-track { height: 6px; border-radius: 3px; background: var(--neutral-800); }
.range::-moz-range-progress { height: 6px; border-radius: 3px; background: var(--accent); }
.range::-moz-range-thumb { width: 24px; height: 24px; border: 0; border-radius: 50%; background: var(--text); box-shadow: 0 3px 10px var(--shadow-color); }
.range:focus-visible { outline: none; }
.range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent); }
.range:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--accent); }

.faq-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: start; }

/* ═══ privacy: the short version ═══ */
.short { margin-top: clamp(48px, 6vw, 80px); }
.short h2 { font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -0.028em; }
.facts { list-style: none; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 24px; border-top: 1px solid var(--divider-soft); }
.facts li { padding: 22px 24px 4px 0; font-size: 15.5px; line-height: 1.5; color: var(--text-secondary); }
.facts li + li { padding-inline-start: 24px; border-inline-start: 1px solid var(--divider-soft); }
.facts b { display: block; margin-bottom: 6px; font-size: 17px; font-weight: 600; letter-spacing: -0.015em; color: var(--text); }
.facts b::before {
  content: ""; display: block; width: 7px; height: 7px; margin-bottom: 14px; border-radius: 50%; background: var(--accent);
}

/* ═══ welcome ═══ */
.guide { list-style: none; margin-top: clamp(56px, 7vw, 96px); }
.gstep {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 96px); align-items: center;
  padding-block: clamp(48px, 6vw, 80px); border-top: 1px solid var(--divider-soft);
}
.gstep:first-child { border-top: 0; padding-top: 0; }
.gnum {
  display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 26px; border-radius: 50%;
  font-size: 16px; font-weight: 600; color: var(--bg); background: var(--accent);
}
.gtext h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.08; letter-spacing: -0.03em; }
.gtext > p { margin-top: 16px; font-size: 17.5px; line-height: 1.6; color: var(--text-secondary); max-width: 34em; }
.gtext .gnote { font-size: 15px; color: var(--text-soft); padding: 14px 16px; border-radius: 14px; background: var(--wash); box-shadow: inset 0 0 0 1px var(--divider-soft); }
.open-feeds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.gvis { display: grid; place-items: center; min-height: 320px; }

/* step 1: a Chrome toolbar, drawn, with the extensions menu open */
.chrome {
  position: relative; width: min(520px, 100%); height: 300px; border-radius: 16px; overflow: hidden;
  background: var(--well); box-shadow: inset 0 0 0 1px var(--divider-soft), 0 30px 70px var(--shadow-color);
}
.chrome-bar { display: flex; align-items: center; gap: 12px; height: 54px; padding: 0 14px; background: var(--surface); border-bottom: 1px solid var(--divider-soft); }
.lights { display: flex; gap: 6px; }
.lights i { width: 10px; height: 10px; border-radius: 50%; background: var(--neutral-700); }
.omni {
  flex: 1; display: flex; align-items: center; gap: 8px; height: 32px; padding: 0 14px; border-radius: 999px;
  font-size: 13px; color: var(--text-subtle); background: var(--bg);
}
.tb { display: flex; align-items: center; gap: 4px; }
.tb > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: var(--text-muted); }
.tb-us { color: var(--accent) !important; background: var(--accent-fill); opacity: 0; transform: scale(.4); }
.tb-puzzle { background: transparent; }
.tb-me { width: 24px !important; height: 24px !important; margin-inline-start: 4px; background: var(--neutral-700); }
.ext-menu {
  position: absolute; top: 62px; right: 44px; width: 280px; padding: 10px; border-radius: 14px;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--divider-soft), 0 20px 50px var(--shadow-color);
  transform-origin: top right; opacity: 0; transform: translateY(-6px) scale(.97);
}
.ext-k { padding: 4px 8px 8px; font-size: 12px; color: var(--text-subtle); }
.ext-row { display: flex; align-items: center; gap: 10px; height: 40px; padding: 0 8px; border-radius: 9px; font-size: 13.5px; }
.ext-row.us { background: var(--wash); }
.ext-ico { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 6px; background: var(--bg); color: var(--accent); flex: none; }
.ext-ico.ghost { background: var(--neutral-800); }
.ext-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ext-bar { height: 7px; width: 60%; border-radius: 4px; background: var(--neutral-800); }
.ext-bar.short { width: 40%; }
.pin { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; color: var(--text-subtle); }
.cursor { position: absolute; left: 60%; top: 78%; filter: drop-shadow(0 2px 4px rgb(0 0 0 / .5)); }

/* the loop: to the puzzle, menu opens, to the pin, pinned, icon lands */
@media (prefers-reduced-motion: no-preference) {
  .chrome .cursor { animation: cur 7s var(--ease-out) infinite; }
  .chrome .ext-menu { animation: menu 7s var(--ease-out) infinite; }
  .chrome .pin { animation: pin 7s ease infinite; }
  .chrome .tb-us { animation: us 7s var(--ease-out) infinite; }
}
@media (prefers-reduced-motion: reduce) {
  .chrome .ext-menu { opacity: 1; transform: none; }
  .chrome .pin { color: var(--accent); background: var(--accent-fill); }
  .chrome .tb-us { opacity: 1; transform: none; }
  .chrome .cursor { display: none; }
}
@keyframes cur {
  0%, 6% { left: 60%; top: 78%; }
  20%, 26% { left: calc(100% - 94px); top: 22px; }
  44%, 56% { left: calc(100% - 80px); top: 118px; }
  78%, 100% { left: 58%; top: 80%; }
}
@keyframes menu {
  0%, 24% { opacity: 0; transform: translateY(-6px) scale(.97); }
  30%, 66% { opacity: 1; transform: none; }
  74%, 100% { opacity: 0; transform: translateY(-6px) scale(.97); }
}
@keyframes pin {
  0%, 50% { color: var(--text-subtle); background: transparent; }
  54%, 100% { color: var(--accent); background: var(--accent-fill); }
}
@keyframes us {
  0%, 56% { opacity: 0; transform: scale(.4); }
  64%, 94% { opacity: 1; transform: none; }
  100% { opacity: 0; transform: scale(.4); }
}

/* step 2: the feed, reading along */
.mini-feed {
  position: relative; display: grid; gap: 10px; width: min(420px, 100%); padding: 20px 20px 76px; border-radius: 16px;
  background: var(--well); box-shadow: inset 0 0 0 1px var(--divider-soft);
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent); mask-image: linear-gradient(to bottom, #000 72%, transparent);
}
.mf-post { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 14px; border-radius: 12px; background: color-mix(in srgb, var(--surface) 60%, transparent); }
.mf-av { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; font-size: 11.5px; font-weight: 600; color: var(--bg); }
.mf-lines { display: grid; gap: 7px; align-content: center; }
.mf-lines i { display: block; height: 7px; border-radius: 4px; background: var(--neutral-800); }
.mf-lines i:first-child { background: var(--neutral-700); }
.mf-along {
  position: absolute; left: 50%; bottom: 44px; translate: -50% 0; display: flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: 999px; white-space: nowrap; font-size: 13.5px; color: var(--text-secondary);
  background: var(--surface); border: 1px solid var(--accent-line-soft); box-shadow: 0 14px 34px var(--shadow-color);
}
.mf-along .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow-strong);
  animation: pop-pulse 1.8s ease-in-out infinite;
}

/* step 3: the popup, Analyze in reach */
.pop-mini { transform: scale(.86); margin-block: -42px; }

.good h2 { font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -0.028em; }
.good-list { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin-top: 28px; }
.good-list li { padding-top: 20px; border-top: 1px solid var(--divider-soft); }
.good-list h3 { font-size: 18px; letter-spacing: -0.015em; }
.good-list p { margin-top: 8px; color: var(--text-secondary); font-size: 15.5px; }
.good-list b { color: var(--text); font-weight: 600; }
.close-tab { margin-top: 56px; color: var(--text-soft); font-size: 15px; }

/* ═══ updates ═══ */
.releases { width: min(1000px, var(--page)); margin: clamp(48px, 6vw, 80px) auto clamp(80px, 9vw, 120px); }
.release {
  display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: clamp(24px, 5vw, 64px);
  padding-block: clamp(36px, 4vw, 56px); border-top: 1px solid var(--divider-soft); scroll-margin-top: 24px;
}
.rel-meta { position: sticky; top: 32px; align-self: start; }
.rel-v { font-size: 30px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.rel-date { margin-top: 6px; font-size: 14.5px; color: var(--text-soft); }
.rel-you {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; padding: 5px 11px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: var(--accent); background: var(--accent-fill);
}
.rel-you::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.release.is-new .rel-v { color: var(--accent); }
.rel-body h2 { font-size: clamp(26px, 2.6vw, 36px); line-height: 1.1; letter-spacing: -0.03em; }
.rel-lede { margin-top: 12px; font-size: 18px; color: var(--text-muted); max-width: 38em; }
.changes { list-style: none; margin-top: 28px; border-top: 1px solid var(--divider-soft); }
.changes li { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 16px; padding-block: 16px; border-bottom: 1px solid var(--divider-soft); }
.changes p { color: var(--text-secondary); font-size: 16px; line-height: 1.55; }
.changes b { color: var(--text); font-weight: 600; }
.kind {
  align-self: start; justify-self: start; padding: 3px 9px; border-radius: 6px; margin-top: 1px;
  font-size: 12px; font-weight: 600; letter-spacing: .02em; background: var(--tag-accent-bg); color: var(--tag-accent-fg);
}

/* ═══ uninstall ═══ */
.exit-wrap { width: min(780px, var(--page)); margin: clamp(48px, 6vw, 80px) auto clamp(80px, 9vw, 120px); }
.exit { display: grid; gap: 32px; }
.reasons { margin: 0; padding: 0; border: 0; min-width: 0; }
.reasons legend { display: grid; gap: 8px; margin-bottom: 20px; padding: 0; }
.legend-title { font-size: clamp(26px, 2.6vw, 34px); font-weight: 600; letter-spacing: -0.028em; line-height: 1.15; }
.legend-hint { font-size: 16px; color: var(--text-muted); }
.opt { margin-inline-start: 6px; font-weight: 400; color: var(--text-soft); }
.exit-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }
.exit-actions .form-note a { color: var(--text-secondary); }
.thanks { outline: none; padding: clamp(32px, 4vw, 48px); border-radius: 28px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--divider-soft); animation: fade .5s var(--ease-out); }
.thanks h2 { font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.03em; }
.thanks-sub { margin-top: 12px; color: var(--text-muted); font-size: 17px; }
.tips { list-style: none; display: grid; gap: 0; margin-top: 20px; border-top: 1px solid var(--divider-soft); }
.tips li { padding: 16px 0; border-bottom: 1px solid var(--divider-soft); color: var(--text-secondary); font-size: 16px; }
.tips b { color: var(--text); font-weight: 600; }
.back { margin-top: 24px; color: var(--text-soft); }

/* ═══ 404 ═══ */
.lost .inner { display: grid; justify-items: center; }
.lost-mark { width: 72px; height: auto; margin-bottom: 28px; color: var(--accent); opacity: .5; }

/* ═══ small screens ═══ */
@media (max-width: 960px) {
  .plan-grid, .cost-grid, .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .facts { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .facts li, .facts li + li { padding: 20px 20px 16px 0; border-inline-start: 0; border-bottom: 1px solid var(--divider-soft); }
  .facts li:nth-child(even) { padding-inline-start: 20px; border-inline-start: 1px solid var(--divider-soft); }
  .gstep { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .good-list { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .good-list li { padding-block: 20px; }
  .release { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .rel-meta { position: static; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 14px; }
  .rel-you { margin-top: 0; }
}
@media (max-width: 560px) {
  .facts { grid-template-columns: minmax(0, 1fr); }
  .facts li:nth-child(even) { padding-inline-start: 0; border-inline-start: 0; }
  .wl-row { flex-direction: column; }
  .wl-row .btn { width: 100%; }
  .gvis { min-height: 0; }
  .chrome { height: 280px; }
  .ext-menu { right: 12px; width: 250px; }
  .pop-mini { transform: scale(.78); margin-block: -66px; }
  .changes li { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .open-feeds .btn { flex: 1 1 100%; }
  .calc-model .seg { width: 100%; }
}

/* ——— additions ——— */
.chrome-page { display: grid; grid-template-columns: 90px 1fr; gap: 22px; padding: 22px 26px; opacity: .8; }
.chrome-page .nav { height: 120px; border-radius: 10px; background: color-mix(in srgb, var(--surface) 55%, transparent); }
.chrome-page span { display: grid; gap: 10px; align-content: start; }
.chrome-page span i { display: block; height: 8px; width: 100%; border-radius: 4px; background: color-mix(in srgb, var(--surface) 80%, transparent); }
.chrome-page span i.w8 { width: 80%; } .chrome-page span i.w6 { width: 60%; } .chrome-page span i.w5 { width: 50%; }
.chrome-page span i.gap { height: 4px; background: none; }
.changes.plain li { grid-template-columns: 18px minmax(0, 1fr); gap: 10px; }
.changes.plain li::before { content: ""; width: 6px; height: 6px; margin-top: 10px; border-radius: 50%; background: var(--accent); }
