/* ==========================================================================
   Sorted — showsorted.com
   One light page. The only dark thing on it is the screen the product plays on.
   One typeface (Onest, self-hosted). Colour on the page comes from the real
   artwork and the three rating colours; chrome stays ink, paper and glass.
   ========================================================================== */

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(fonts/onest.woff2) format("woff2");
}

:root {
  --paper: #fafafa;
  --surface: #ffffff;
  --ink: #0b0c0f;
  --text: #14161a;
  --text-2: #4a4f57;
  --text-3: #7b818a;
  --line: #e3e5e9;
  --line-2: #d3d6dc;
  --night: #07080b;
  --night-2: #101217;
  --night-line: rgba(255, 255, 255, .09);
  --night-text: #f3f4f6;
  --night-text-2: #a4a9b1;
  --green: #46d369;
  --amber: #e5a00d;
  --red: #e87c78;
  --font: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --gutter: clamp(18px, 4.5vw, 56px);
  --max: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--font); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; border-radius: 8px; }
[id] { scroll-margin-top: 92px; }
.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; border-radius: 999px; background: var(--ink); color: #fff; text-decoration: none; font-weight: 600; }
.skip:focus { top: 16px; }

/* ---------- type ---------- */
:where(h1, h2, h3) { margin: 0; text-wrap: balance; }
.h1, .h2, .h3 { color: var(--ink); }
.h1 { font-size: clamp(42px, 6.4vw, 86px); line-height: .98; letter-spacing: -.045em; font-weight: 680; }
.h2 { font-size: clamp(32px, 4.2vw, 56px); line-height: 1.02; letter-spacing: -.04em; font-weight: 650; }
.h3 { font-size: 19px; line-height: 1.25; letter-spacing: -.015em; font-weight: 640; }
.sub { margin: 0; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; color: var(--text-2); max-width: 40ch; }
kbd:not([class]) { display: inline-block; min-width: 1.7em; padding: 0 .45em; border: 1px solid var(--line-2); border-bottom-width: 2px; border-radius: 6px; background: var(--surface); font: 650 .78em/1.6 var(--font); text-align: center; color: var(--ink); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 22px; border-radius: 999px; border: 1px solid transparent; font: 640 16px/1.2 var(--font); letter-spacing: -.01em; text-decoration: none; cursor: pointer; transition: transform .18s var(--ease), background-color .18s, border-color .18s, box-shadow .18s; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn-ink { background: var(--ink); color: #fff; box-shadow: 0 10px 24px -12px rgba(11, 12, 15, .7); }
.btn-ink:hover { background: #000; }
.btn-line { background: var(--surface); color: var(--ink); border-color: var(--line-2); }
.btn-line:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); box-shadow: 0 12px 30px -12px rgba(255, 255, 255, .35); }
.btn-light:hover { background: #f1f2f4; }
.btn-glass { background: rgba(255, 255, 255, .07); color: var(--night-text); border-color: rgba(255, 255, 255, .18); }
.btn-glass:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .34); }
.btn-sm { padding: 9px 16px; font-size: 14.5px; }
.btn-lg { padding: 17px 28px; font-size: 17px; }
.btn small { font-weight: 500; opacity: .66; }

/* ---------- nav: one floating pill ---------- */
.nav { position: sticky; top: 12px; z-index: 50; padding-inline: var(--gutter); margin-bottom: -68px; pointer-events: none; }
.nav-pill { pointer-events: auto; display: flex; align-items: center; gap: 22px; max-width: 980px; margin-inline: auto; padding: 8px 8px 8px 18px; border-radius: 999px; background: rgba(255, 255, 255, .8); border: 1px solid rgba(11, 12, 15, .07); -webkit-backdrop-filter: saturate(170%) blur(16px); backdrop-filter: saturate(170%) blur(16px); box-shadow: 0 12px 32px -18px rgba(0, 0, 0, .55); }
.logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; font-weight: 720; font-size: 18px; letter-spacing: -.02em; color: var(--ink); }
.logo-tile { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--ink); }
.nav-links { display: flex; gap: 4px; margin-left: auto; font-size: 14.5px; }
.nav-links a { padding: 7px 12px; border-radius: 999px; text-decoration: none; color: var(--text-2); transition: background-color .15s, color .15s; }
.nav-links a:hover { background: rgba(11, 12, 15, .05); color: var(--ink); }
@media (max-width: 760px) { .nav-links { display: none; } .nav-pill .btn { margin-left: auto; } }

.nav-pill { background: rgba(255, 255, 255, .86); box-shadow: 0 10px 30px -20px rgba(11, 12, 15, .45); }

/* ---------- hero: headline, one button, the screen ---------- */
.hero { position: relative; padding-block: 140px 0; text-align: center; }
.hero::before { content: ""; position: absolute; inset: 0 0 auto; height: 720px; z-index: -1; background: radial-gradient(60% 70% at 50% 0%, #eef0f4, transparent 70%); }
.hero .h1 { max-width: 14ch; margin-inline: auto; }
.hero .sub { margin: 22px auto 0; max-width: 42ch; font-size: clamp(18px, 1.7vw, 21px); }
.hero .sub b { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 22px; margin-top: 34px; }
.hero-note { margin: 0; font-size: 14.5px; color: var(--text-3); }
.hero-note b { color: var(--text-2); font-weight: 600; }

.demo { max-width: var(--max); margin: clamp(48px, 7vw, 76px) auto 0; }
.screen { position: relative; isolation: isolate; border-radius: 24px; overflow: hidden; background: #141414; box-shadow: 0 70px 120px -60px rgba(11, 12, 15, .55), 0 24px 50px -30px rgba(11, 12, 15, .35), 0 0 0 1px rgba(11, 12, 15, .06); text-align: left; }
.film-bar { display: flex; align-items: center; justify-content: center; gap: 16px; max-width: 620px; margin: 22px auto 0; }
.film-play { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--surface); color: var(--ink); cursor: pointer; transition: border-color .15s; }
.film-play:hover { border-color: var(--ink); }
.film-play .i-play { display: none; }
.demo.is-paused .film-play .i-play { display: block; }
.demo.is-paused .film-play .i-pause { display: none; }
.chapters { flex: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.chapter { display: flex; flex-direction: column; gap: 8px; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; text-align: left; font: 560 12.5px/1.2 var(--font); color: var(--text-3); transition: color .2s; }
.chapter .ch-fill { position: relative; display: block; height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; }
.chapter .ch-fill::after { content: ""; position: absolute; inset: 0; transform-origin: left; transform: scaleX(var(--p, 0)); background: var(--ink); }
.chapter.is-on { color: var(--ink); }
.film-cap { margin: 18px auto 0; font-size: clamp(17px, 1.6vw, 19px); font-weight: 600; letter-spacing: -.01em; color: var(--ink); min-height: 1.5em; }
.demo-note { margin: 6px 0 0; font-size: 13.5px; color: var(--text-3); }

/* ==========================================================================
   Stages. Each one is a small streaming page with Sorted's real panels on it:
   the extension's own markup (ext/ui.js) and its own stylesheets (ext/*.css).
   The stage is laid out at a fixed size and scaled to fit, and its transform
   is also what pins the panels' position:fixed to the stage, not the window.
   ========================================================================== */
.frame { position: relative; border-radius: 20px; overflow: hidden; background: #141414; box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 40px 80px -44px rgba(13,14,16,.55), 0 0 0 1px rgba(13,14,16,.08); text-align: left; }
.stage-fit { position: relative; width: 100%; overflow: hidden; }
.stage { position: absolute; left: 0; top: 0; transform-origin: 0 0; overflow: hidden; background: #141414; color: #e5e5e5; font-family: var(--nrx-font); font-size: 14px; line-height: 1.4; -webkit-font-smoothing: antialiased; }
.stage [hidden] { display: none !important; }

/* the page behind the panels: generic rows of cards */
.nf-page { position: absolute; inset: 0; padding: 26px 0 0 30px; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.nf-row + .nf-row { margin-top: 22px; }
.nf-row-title { margin: 0 0 9px; font-size: 17px; font-weight: 700; letter-spacing: -.005em; color: #e5e5e5; }
.nf-cards { display: flex; gap: 8px; }
.nf-card { position: relative; flex: 0 0 var(--card, 214px); aspect-ratio: 16 / 9; border-radius: 4px; background: #222; }
.nf-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.stage.hide-badges .nrx-badge { opacity: 0; transform: scale(.6); }
.nf-card.d-pop .nrx-badge { animation: d-pop .42s var(--ease) both; }
@keyframes d-pop { 0% { opacity: 0; transform: scale(.5); } 65% { opacity: 1; transform: scale(1.14); } 100% { opacity: 1; transform: none; } }
.stage .nrx-tip { position: absolute; }

/* the player page */
.nf-watch { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.03); transition: opacity .5s var(--ease), transform .6s var(--ease), visibility .5s; }
.stage.is-watching .nf-watch { opacity: 1; visibility: visible; transform: none; }
.stage.is-watching .nf-page { opacity: 0; transform: scale(.98); }
.stage.is-watching .nrx-launcher { opacity: 0; visibility: hidden; }
.nf-still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nf-watch::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), transparent 26%, transparent 55%, rgba(0,0,0,.78)); }
.nf-watch > :not(.nf-still) { z-index: 2; }
.nf-watch-top { position: absolute; left: 32px; bottom: 84px; display: flex; flex-direction: column; color: #fff; }
.nf-watch-top b { font-size: 18px; }
.nf-watch-top span { font-size: 13px; color: #bdbdbd; }
.nf-subs { position: absolute; left: 50%; bottom: 128px; translate: -50% 0; width: max-content; max-width: 76%; margin: 0; text-align: center; font-size: 22px; font-weight: 500; line-height: 1.25; color: #fff; text-shadow: 0 0 6px #000, 0 2px 3px #000; transition: font-size .35s var(--ease); }
.nf-skip { position: absolute; right: 32px; bottom: 90px; padding: 9px 18px; border: 1px solid rgba(255,255,255,.75); border-radius: 4px; background: rgba(42,42,42,.6); color: #fff; font: 600 15px/1.2 var(--nrx-font); opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s var(--ease), background-color .2s, color .2s; }
.nf-skip.is-shown { opacity: 1; transform: none; }
.nf-skip.d-pressed { background: #fff; color: #000; }
.nf-skip.is-gone { opacity: 0; transition-delay: .25s; }
.nf-bar { position: absolute; left: 32px; right: 32px; bottom: 58px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.3); }
.nf-bar-fill { position: absolute; inset: 0 auto 0 0; border-radius: 2px; background: #fff; transition: width .6s var(--ease); }
.nf-bar-dot { position: absolute; top: 50%; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: #fff; transition: left .6s var(--ease); }
.nf-time { position: absolute; left: 32px; right: 32px; bottom: 28px; display: flex; justify-content: space-between; font-size: 13px; color: #d0d0d0; font-variant-numeric: tabular-nums; }

/* the real panels, pinned to stage size so vw, vh and the extension's own
   narrow-window rules never reach them */
.stage .nrx-launcher { max-width: none; transition: opacity .3s, visibility .3s; }
.stage .nrx-launcher-key { display: inline-block; }
.stage .nrx-filterp { left: auto; right: auto; bottom: auto; width: 340px; max-height: 440px; }
.stage .nrx-pick-panel { width: 580px; max-height: calc(100% - 32px); }
.stage .nrx-genre-root > .nrx-genre-panel { width: 410px; max-height: calc(100% - var(--nrx-launcher-h, 128px) - 52px); }
.stage .nrx-filterp-root[data-open="yes"] { animation: d-rise .32s var(--ease) both; }
.stage .nrx-genre-panel { animation: d-rise .32s var(--ease) both; }
.stage .nrx-genre-backdrop, .stage .nrx-pick-backdrop { animation: d-fade .3s both; }
.stage .nrx-pick-panel.d-in { animation: d-pick .4s var(--ease) both; }
.stage .nrx-pick-body.d-in { animation: d-swap .45s var(--ease) both; }
@keyframes d-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes d-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes d-pick { from { opacity: 0; transform: translate(-50%, -47%) scale(.97); } to { opacity: 1; transform: translate(-50%, -50%); } }
@keyframes d-swap { 0% { opacity: .15; filter: blur(3px); } 100% { opacity: 1; filter: none; } }
.stage button, .stage a { transition: transform .12s ease, background-color .15s, color .15s; }
.stage .d-pressed:not(.nf-skip) { transform: scale(.93); }

/* the pointer and the keys */
.d-cursor { position: absolute; left: 0; top: 0; z-index: 2147483647; opacity: 0; pointer-events: none; filter: drop-shadow(0 4px 8px rgba(0,0,0,.55)); transition: transform .65s cubic-bezier(.45,.05,.2,1), opacity .3s, scale .12s; }
.d-cursor.is-on { opacity: 1; }
.d-cursor.is-instant { transition: opacity .3s, scale .12s; }
.d-cursor.is-down { scale: .86; }
.d-keys { position: absolute; left: 50%; top: 44%; z-index: 2147483647; display: flex; align-items: center; gap: 12px; translate: -50% -50%; opacity: 0; pointer-events: none; }
.d-key { display: grid; place-items: center; min-width: 76px; height: 76px; padding: 0 18px; border-radius: 16px; background: #f4f4f5; color: #0d0e10; font: 700 40px/1 var(--font); border-bottom: 7px solid #b9bcc2; box-shadow: 0 30px 60px -20px rgba(0,0,0,.9); }
.d-key-wide { font-size: 22px; }
.d-plus { color: #f4f4f5; font: 600 26px/1 var(--font); }
.d-keys.go { animation: d-keys 1.25s var(--ease) both; }
.d-keys.go .d-key[data-k] { animation: d-keydown 1.25s var(--ease) both; }
@keyframes d-keys { 0% { opacity: 0; transform: scale(.8); } 16% { opacity: 1; transform: none; } 80% { opacity: 1; } 100% { opacity: 0; transform: scale(1.04); } }
@keyframes d-keydown { 0%, 30% { transform: none; border-bottom-width: 7px; } 40% { transform: translateY(5px); border-bottom-width: 2px; } 52%, 100% { transform: none; border-bottom-width: 7px; } }



/* ---------- sections ---------- */
.sec { padding-block: clamp(96px, 12vw, 150px) 0; }
.sec-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.sec-head .sub { margin: 16px auto 0; }

/* three reasons, and the rest in one line */
.reasons { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); }
.reason-ico { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 18px; border-radius: 12px; background: var(--ink); color: #fff; }
.reason-ico .r { font: 700 13px/1 var(--font); letter-spacing: .01em; }
.reason p { margin: 8px 0 0; font-size: 16px; line-height: 1.6; color: var(--text-2); max-width: 34ch; }
.also { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 64px auto 0; padding: 0; list-style: none; }
.also li { padding: 9px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: 14.5px; color: var(--text-2); }
.also li b { color: var(--ink); font-weight: 600; }
@media (max-width: 820px) { .reasons { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* one price */
.price-card { max-width: 520px; margin: 0 auto; padding: 36px; border-radius: 28px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 40px 80px -56px rgba(11, 12, 15, .45); text-align: center; }
.price-big { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin: 0; }
.price-big b { font-size: 68px; line-height: 1; letter-spacing: -.05em; font-weight: 700; color: var(--ink); }
.price-big span { color: var(--text-3); font-size: 17px; }
.price-sub { margin: 10px 0 26px; color: var(--text-2); font-size: 16px; }
.price-list { display: grid; gap: 11px; margin: 0 auto 30px; padding: 0; list-style: none; font-size: 15.5px; text-align: left; max-width: 300px; }
.price-list li { display: flex; gap: 10px; align-items: baseline; }
.price-list svg { flex: none; color: var(--ink); translate: 0 2px; }
.price-card .btn { width: 100%; }
.price-card .fine { margin: 14px auto 0; text-align: center; }
.price-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 760px; margin: 40px auto 0; padding: 0; list-style: none; counter-reset: ps; text-align: center; }
.price-steps li { counter-increment: ps; font-size: 15px; color: var(--text-2); }
.price-steps li::before { content: counter(ps); display: grid; place-items: center; width: 28px; height: 28px; margin: 0 auto 10px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line-2); font-weight: 700; font-size: 13px; color: var(--ink); }
.price-steps b { display: block; color: var(--ink); font-weight: 620; }
@media (max-width: 640px) { .price-steps { grid-template-columns: 1fr; } }

/* questions */
.faq { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.q { border-bottom: 1px solid var(--line); }
.q summary { display: flex; align-items: center; gap: 16px; padding: 22px 0; cursor: pointer; list-style: none; font-size: 17.5px; font-weight: 600; color: var(--ink); }
.q summary::-webkit-details-marker { display: none; }
.q summary::after { content: ""; margin-left: auto; flex: none; width: 10px; height: 10px; border-right: 2px solid var(--text-3); border-bottom: 2px solid var(--text-3); transform: rotate(45deg) translate(-3px, -3px); transition: transform .2s var(--ease); }
.q[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.q p { margin: 0; padding: 0 0 22px; font-size: 16px; line-height: 1.7; color: var(--text-2); max-width: 62ch; }
.faq-more { margin: 28px 0 0; text-align: center; color: var(--text-3); font-size: 15px; }

/* the last word */
.last { padding-block: clamp(110px, 13vw, 170px) clamp(80px, 10vw, 120px); text-align: center; }
.last .h2 { max-width: 15ch; margin-inline: auto; }
.last .hero-cta { margin-top: 30px; }

/* footer */
.foot { padding-block: 40px; border-top: 1px solid var(--line); }
.foot-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 15px; }
.foot-links a { text-decoration: none; color: var(--text-2); }
.foot-links a:hover { color: var(--ink); }
.legal { margin: 26px 0 0; padding-top: 22px; border-top: 1px solid var(--line); max-width: 86ch; font-size: 12.5px; line-height: 1.7; color: var(--text-3); }
.legal + .legal { margin-top: 6px; padding-top: 0; border-top: 0; }

/* ==========================================================================
   Secondary pages: checkout, thanks, getting started, privacy, 404.
   One reading column, the homepage's cards for groups of three, nothing else.
   ========================================================================== */
.page { padding-block: clamp(44px, 7vw, 88px) 0; }
.doc { max-width: 720px; }
.doc > .h2 { margin-bottom: 18px; }
.doc h2.h3 { margin: 44px 0 12px; }
.doc p { margin: 0 0 14px; color: var(--text-2); max-width: 64ch; }
.doc a:not(.btn), .doc-section a:not(.btn), .doc-side a:not(.btn) { color: var(--ink); }
.lead { font-size: clamp(18px, 1.7vw, 21px); line-height: 1.55; color: var(--text-2); margin: 0 0 20px; max-width: 46ch; }
.doc .lead { max-width: 52ch; }
.fine { font-size: 14px; line-height: 1.6; color: var(--text-3); margin: 12px 0 0; max-width: 60ch; }
.doc-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
.btn-lg { padding: 17px 28px; font-size: 17px; }
code { font: 600 .9em/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; padding: 2px 6px; border-radius: 5px; background: var(--surface); border: 1px solid var(--line); color: var(--ink); }
.doc-section { margin-top: clamp(56px, 7vw, 88px); }
.doc-section > .h3 { margin-bottom: 18px; }
.doc-section .doc-cta { margin-top: 30px; }

.doc-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.doc-grid .doc { max-width: none; }
.doc-side { padding: 26px 26px 10px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); }
.doc-side > .h3 { margin-bottom: 8px; }
@media (max-width: 900px) { .doc-grid { grid-template-columns: 1fr; } }

.receipt { margin: 8px 0 0; padding: 6px 22px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); }
.receipt-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; color: var(--text-2); }
.receipt-row b { color: var(--ink); font-weight: 650; white-space: nowrap; font-variant-numeric: tabular-nums; }
.receipt-row:last-child { border-bottom: 0; }
.receipt-total { padding-top: 16px; font-size: 17px; color: var(--ink); font-weight: 600; }
.receipt-total b { font-size: 26px; letter-spacing: -.02em; }

.walk { margin: 0; padding: 0; list-style: none; counter-reset: walk; }
.walk li { position: relative; padding: 16px 0 16px 46px; counter-increment: walk; border-top: 1px solid var(--line); }
.walk li:first-child { border-top: 0; }
.walk li::before { content: counter(walk); position: absolute; left: 0; top: 16px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 700; font-size: 14px; }
.walk h3 { margin: 3px 0 6px; font-size: 17px; font-weight: 620; letter-spacing: -.01em; color: var(--ink); }
.walk p { margin: 0; font-size: 15.5px; color: var(--text-2); }
.walk-lg { margin-top: 30px; }
.walk-lg li { padding-block: 22px; }

.list { margin: 0 0 14px; padding-left: 20px; color: var(--text-2); }
.list li { margin: 6px 0; padding-left: 4px; }
.kv { margin: 0; }
.kv > div { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.kv > div:last-child { border-bottom: 1px solid var(--line); }
.kv dt { font-weight: 620; color: var(--ink); }
.kv dd { margin: 0; color: var(--text-2); }
@media (max-width: 560px) { .kv > div { grid-template-columns: 1fr; gap: 4px; } }
.doc-404 { padding-block: 40px 60px; }
.page { padding-top: 120px; }
.doc-side, .receipt { box-shadow: 0 1px 0 rgba(0,0,0,.02); }
.trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.trust-item { padding: 24px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); }
.trust-item p { margin: 8px 0 0; font-size: 15.5px; color: var(--text-2); }
@media (max-width: 860px) { .trust { grid-template-columns: 1fr; } }

/* ==========================================================================
   The selling page (17 Sep 2026). Every section answers one question a buyer
   has, in the order they have it: what is it, does it work, why pay, is it
   safe, will it work for me, what does it cost.
   ========================================================================== */

/* under the hero button: the three doubts, answered before they are asked */
.assure { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin: 20px 0 0; padding: 0; list-style: none; font-size: 14.5px; color: var(--text-2); }
.assure li { display: inline-flex; align-items: center; gap: 7px; }
.assure svg { flex: none; color: var(--ink); }

/* a dark band, for the two statements that carry the argument */
.band { margin-top: clamp(96px, 12vw, 150px); padding-block: clamp(80px, 10vw, 128px); background: var(--night); color: var(--night-text); }
.band .h2 { color: #fff; }
.band .sec-head { max-width: 860px; }
.band .sub { color: var(--night-text-2); }
.statement { max-width: 22ch; margin: 0 auto; text-align: center; font-size: clamp(34px, 5vw, 66px); line-height: 1.04; letter-spacing: -.045em; font-weight: 660; color: var(--night-text-2); }
.statement span { color: #fff; }
.statement + .sub { margin: 26px auto 0; text-align: center; max-width: 46ch; }

/* the features: copy on one side, the real thing running on the other */
.features { display: grid; gap: clamp(88px, 11vw, 140px); }
.feature { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.feature:nth-child(even) { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.feature:nth-child(even) .feature-copy { order: 2; }
.feature-copy .h2 { font-size: clamp(30px, 3.4vw, 46px); }
.feature-copy > p { margin: 18px 0 0; font-size: 17px; line-height: 1.65; color: var(--text-2); max-width: 44ch; }
.proof { display: flex; gap: 12px; align-items: baseline; margin-top: 24px !important; padding-top: 20px; border-top: 1px solid var(--line); font-size: 15.5px !important; color: var(--text) !important; }
.proof b { flex: none; font-size: 24px; line-height: 1; letter-spacing: -.03em; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.where { display: inline-block; margin-bottom: 14px; padding: 4px 11px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--surface); font-size: 13px; font-weight: 560; color: var(--text-2); }
.features-cta { margin-top: clamp(72px, 9vw, 110px); text-align: center; }
.features-cta .hero-cta { margin-top: 0; }
@media (max-width: 900px) {
  .feature, .feature:nth-child(even) { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-copy { order: 0; }
}

/* without and with */
.compare { max-width: 900px; margin: 0 auto; border-radius: 24px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 40px 80px -60px rgba(11, 12, 15, .45); }
.compare-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.compare-row > * { margin: 0; padding: 18px 26px; font-size: 16px; line-height: 1.5; }
.compare-row + .compare-row > * { border-top: 1px solid var(--line); }
.compare-row > :first-child { color: var(--text-3); }
.compare-row > :last-child { color: var(--ink); font-weight: 560; background: rgba(11, 12, 15, .025); border-left: 1px solid var(--line); }
.compare-head > * { padding-block: 16px; font-size: 14px !important; font-weight: 650 !important; color: var(--text-2) !important; }
.compare-head > :last-child { color: var(--ink) !important; }
.compare-cta { margin-top: 40px; text-align: center; }
.compare-cta .hero-cta { margin-top: 0; }
@media (max-width: 600px) { .compare-row > * { padding: 14px 16px; font-size: 15px; } }

/* privacy, in three facts */
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: var(--max); margin: 52px auto 0; padding: 0; list-style: none; }
.facts li { padding: 26px; border-radius: 22px; background: var(--night-2); border: 1px solid var(--night-line); }
.facts h3 { margin: 0 0 8px; font-size: 19px; font-weight: 640; letter-spacing: -.015em; color: #fff; }
.facts p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--night-text-2); }
.band-link { margin: 34px 0 0; text-align: center; font-size: 15px; color: var(--night-text-2); }
.band-link a { color: #fff; }
@media (max-width: 860px) { .facts { grid-template-columns: 1fr; max-width: 520px; } }

/* where it works, set as credits: a name, dot leaders, the answer */
.credits { max-width: 760px; margin: 0 auto; padding: 0; list-style: none; }
.credits li { display: flex; align-items: baseline; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 16.5px; }
.credits li:first-child { border-top: 1px solid var(--line); }
.credits .k { flex: none; font-weight: 640; color: var(--ink); }
.credits .dots { flex: 1; min-width: 24px; border-bottom: 2px dotted var(--line-2); translate: 0 -5px; }
.credits .v { flex: 0 1 auto; text-align: right; color: var(--text-2); max-width: 60%; }
@media (max-width: 600px) {
  .credits li { flex-wrap: wrap; gap: 2px 14px; }
  .credits .dots { display: none; }
  .credits .v { flex-basis: 100%; max-width: none; text-align: left; }
}

/* the price card's reasoning */
.price-why { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.6; color: var(--text-3); text-align: left; }
.price-why b { color: var(--text-2); font-weight: 600; }
.guarantee { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 22px; padding: 6px 13px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: 13.5px; font-weight: 560; color: var(--text-2); }

.checkout-list { max-width: none; margin: 26px 0 18px; }
.doc .guarantee { margin: 4px 0 0; }
.doc .doc-cta { margin-top: 14px; }
.doc .receipt { margin-top: 30px; }

.price-flag { display: inline-block; margin: 0 0 12px; padding: 5px 12px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 600; }
.price-flag[hidden] { display: none; }
.price-was { align-self: center; margin-left: 4px; font-size: 20px; color: var(--text-3); }
.price-note { margin: 10px 0 0; font-size: 14.5px; color: var(--text-2); }
.price-note[hidden] { display: none; }
.doc .price-note { margin: -8px 0 14px; }
.code { font: 650 .92em/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .02em; }

/* the button that follows you down the page */
.dock { position: fixed; left: 50%; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); z-index: 60; display: flex; align-items: center; gap: 16px; width: max-content; max-width: calc(100% - 24px); padding: 8px 8px 8px 20px; border-radius: 999px; background: rgba(255, 255, 255, .88); border: 1px solid rgba(11, 12, 15, .08); -webkit-backdrop-filter: saturate(170%) blur(16px); backdrop-filter: saturate(170%) blur(16px); box-shadow: 0 18px 40px -20px rgba(11, 12, 15, .55); translate: -50% 0; transform: translateY(140%); opacity: 0; visibility: hidden; transition: transform .45s var(--ease), opacity .3s, visibility .45s; }
.dock.is-on { transform: none; opacity: 1; visibility: visible; }
.dock p { margin: 0; font-size: 14.5px; color: var(--text-2); white-space: nowrap; }
.dock p b { color: var(--ink); font-weight: 640; }
@media (max-width: 520px) { .dock p .long { display: none; } .dock { gap: 12px; padding-left: 16px; } }

/* "Email me the link": the phone visitor's sheet (cta.js builds it) */
.has-sheet, .has-sheet body { overflow: hidden; }
.sheet { position: fixed; inset: 0; z-index: 90; display: flex; align-items: flex-end; justify-content: center; }
.sheet[hidden] { display: none; }
.sheet-scrim { position: absolute; inset: 0; background: rgba(11, 12, 15, .45); animation: d-fade .25s both; }
.sheet-card { position: relative; width: 100%; max-width: 480px; margin: 0; padding: 26px 22px calc(22px + env(safe-area-inset-bottom, 0px)); border-radius: 24px 24px 0 0; background: var(--surface); box-shadow: 0 -20px 60px -30px rgba(11, 12, 15, .5); animation: sheet-up .35s var(--ease) both; }
@keyframes sheet-up { from { transform: translateY(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.sheet-x { position: absolute; right: 12px; top: 10px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: transparent; font: 400 26px/1 var(--font); color: var(--text-3); cursor: pointer; }
.sheet-sub { margin: 8px 0 18px; font-size: 15px; line-height: 1.55; color: var(--text-2); }
.sheet-label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 600; color: var(--ink); }
.sheet-input { display: block; width: 100%; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: 14px; background: var(--paper); font: 400 17px/1.3 var(--font); color: var(--ink); }
.sheet-input:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
.sheet-check { margin-top: 12px; }
.sheet-check:empty { margin-top: 0; }
.sheet-go { width: 100%; margin-top: 14px; }
.sheet-go:disabled { opacity: .6; cursor: default; transform: none; }
.sheet-status { min-height: 1.4em; margin: 12px 0 0; font-size: 14.5px; color: var(--text-2); text-align: center; }
.sheet-copy { display: block; margin: 4px auto 0; padding: 8px 12px; border: 0; background: none; font: 500 14.5px/1.2 var(--font); color: var(--text-3); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

/* the reel: shown only once a real recording exists (demos.js checks) */
.reel { padding-block: clamp(80px, 10vw, 120px) 0; }
.reel .sec-head { margin-bottom: 32px; }
.reel video { display: block; width: 100%; max-width: 960px; margin: 0 auto; border-radius: 22px; background: #141414; box-shadow: 0 40px 80px -50px rgba(11, 12, 15, .55); aspect-ratio: 16 / 9; }

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