/* The product pages: home, how it works, pricing, download, welcome, account.
   One system: paper and ink, brass for the brand and for "live", three type
   faces, one spacing rhythm. The content pages (about, help, the guides) have
   their own content.css with the same tokens. */
@font-face { font-family: "Instrument Sans"; src: url("/fonts/InstrumentSans.woff2") format("woff2-variations"); font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Archivo"; src: url("/fonts/Archivo.woff2") format("woff2-variations"); font-weight: 400 700; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("/fonts/IBMPlexMono-400.woff2") format("woff2"); font-weight: 400; font-display: optional; }

:root {
  color-scheme: light;
  --paper: #f4f2ee;
  --paper-2: #ebe8e1;
  --card: #fbfaf7;
  --white: #fff;
  --ink: #15161f;
  --ink-2: #1c1d26;
  --ink-line: #2c2d38;
  --ink-text: #edebe6;
  --ink-mute: #a9a69f;
  --text: #15161f;
  --mute: #5b5954;
  --line: #e0dcd4;
  --line-strong: #cbc6bc;
  --brass: #c79a68;
  --brass-deep: #87592f;
  --ok: #3a7345;
  --ok-ink: #7fb88a;
  --bad: #a3452f;
  --sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Archivo", var(--sans);
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --r-s: 10px;
  --r-m: 16px;
  --r-l: 24px;
  --shadow: 0 1px 2px rgb(21 22 31 / 0.06), 0 24px 60px -36px rgb(21 22 31 / 0.45);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, svg, video { max-width: 100%; }
img { height: auto; display: block; }
a { color: inherit; }
p a, li a, dd a, .fine a { text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
p a:hover, li a:hover, .fine a:hover { text-decoration-color: currentColor; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 50; background: var(--ink); color: var(--paper); padding: 10px 14px; border-radius: 8px; text-decoration: none; }
.skip:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
.dark :focus-visible, .band :focus-visible { outline-color: var(--ink-text); }

/* ---- type ---- */
h1, h2, h3 { text-wrap: balance; }
h1 { font-family: var(--display); font-weight: 700; font-size: clamp(42px, 7vw, 84px); line-height: 0.98; letter-spacing: -0.045em; margin: 0 0 22px; }
h2 { font-family: var(--display); font-weight: 700; font-size: clamp(32px, 4.6vw, 54px); line-height: 1.02; letter-spacing: -0.038em; margin: 0 0 16px; }
h3 { font-size: 19px; line-height: 1.3; letter-spacing: -0.012em; margin: 0 0 8px; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-deep); margin: 0 0 16px; }
.lede { font-size: clamp(17.5px, 2.1vw, 21px); line-height: 1.55; color: var(--mute); max-width: 34em; margin: 0 0 30px; }
.sub { color: var(--mute); font-size: 18px; max-width: 36em; margin: 0 0 48px; }
.fine { font-size: 14px; color: var(--mute); margin: 14px 0 0; }
.mono { font-family: var(--mono); }
.center { text-align: center; }
.center .lede, .center .sub, .center h2, .center h1 { margin-left: auto; margin-right: auto; }
.soft { color: #7a776f; }

/* ---- nav ---- */
.nav { position: sticky; top: 0; z-index: 30; background: rgb(244 242 238 / 0.86); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.nav.scrolled { border-bottom-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.brand .mark { width: 28px; height: 28px; border-radius: 8px; background: var(--ink); display: grid; place-items: center; }
.brand .mark svg { width: 17px; height: 17px; color: var(--paper); }
.brand b { font-family: var(--display); font-weight: 680; font-size: 18px; letter-spacing: -0.015em; }
.nav .links { display: flex; align-items: center; gap: 4px; }
.nav .links a { color: var(--mute); text-decoration: none; font-size: 14.5px; padding: 8px 12px; border-radius: 8px; }
.nav .links a:hover, .nav .links a[aria-current] { color: var(--text); }
.nav .links a[aria-current] { background: var(--paper-2); }
.nav .end { display: flex; align-items: center; gap: 8px; }
.nav .menu { display: none; position: relative; }
.nav .menu summary { list-style: none; cursor: pointer; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--line-strong); background: var(--card); }
.nav .menu summary::-webkit-details-marker { display: none; }
.nav .menu summary svg { width: 18px; height: 18px; }
.nav .menu[open] summary { border-color: var(--ink); }
.nav .menu .drop { position: absolute; right: 0; top: 48px; width: min(280px, calc(100vw - 32px)); background: var(--card); border: 1px solid var(--line); border-radius: var(--r-m); box-shadow: var(--shadow); padding: 8px; display: grid; }
.nav .menu .drop a { text-decoration: none; padding: 11px 12px; border-radius: 8px; font-size: 15.5px; }
.nav .menu .drop a:hover { background: var(--paper-2); }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 22px; border-radius: 12px; font: 550 15.5px/1.2 var(--sans); text-decoration: none; border: 1px solid var(--line-strong); color: var(--text); background: var(--card); cursor: pointer; transition: transform 0.16s var(--ease), background 0.16s, border-color 0.16s, box-shadow 0.16s; white-space: nowrap; }
.btn:hover { border-color: var(--ink); }
.btn:active { transform: scale(0.97); }
.btn.primary { background: var(--ink); border-color: var(--ink); color: var(--paper); box-shadow: 0 10px 24px -12px rgb(21 22 31 / 0.6), inset 0 1px 0 rgb(255 255 255 / 0.08); }
.btn.primary:hover { background: #2a2b36; }
.btn.big { min-height: 56px; padding: 15px 28px; font-size: 16.5px; border-radius: 14px; }
.btn.small { min-height: 38px; padding: 8px 15px; font-size: 14px; border-radius: 10px; }
.btn.ghost { background: transparent; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }
.btn .arr { transition: transform 0.16s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.dark .btn, .band .btn { background: transparent; color: var(--ink-text); border-color: #3a3b47; }
.dark .btn:hover, .band .btn:hover { border-color: var(--ink-text); }
.dark .btn.primary, .band .btn.primary { background: var(--ink-text); color: var(--ink); border-color: var(--ink-text); }
.dark .btn.primary:hover, .band .btn.primary:hover { background: #fff; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.center .cta, .hero .cta, .closer .cta { justify-content: center; }

/* The line that removes the reasons to wait, under every trial button. */
.assure { display: flex; flex-wrap: wrap; gap: 6px 20px; list-style: none; padding: 0; margin: 18px 0 0; font-size: 14px; color: var(--mute); }
.center .assure, .hero .assure, .closer .assure { justify-content: center; }
.assure li { display: inline-flex; align-items: center; gap: 8px; }
.assure li::before { content: ""; width: 12px; height: 7px; border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok); transform: rotate(-45deg) translateY(-2px); flex: none; }
.dark .assure, .band .assure { color: var(--ink-mute); }
.dark .assure li::before, .band .assure li::before { border-color: var(--ok-ink); }

/* ---- sections ---- */
section { padding: 120px 0 0; }
.head-block { margin-bottom: 48px; }
.head-block .sub { margin-bottom: 0; }
.band { background: var(--ink); color: var(--ink-text); border-radius: var(--r-l); padding: 72px 56px; position: relative; overflow: hidden; isolation: isolate; }
.band::before { content: ""; position: absolute; width: 720px; height: 720px; right: -260px; top: -380px; background: radial-gradient(closest-side, rgb(199 154 104 / 0.22), transparent); z-index: -1; pointer-events: none; }
.band h2 { color: #fff; }
.band .sub, .band .lede { color: var(--ink-mute); }
.band .eyebrow { color: var(--brass); }

/* ---- hero ---- */
.hero { padding: 64px 0 0; text-align: center; }
.hero h1 { max-width: 12.5em; margin-left: auto; margin-right: auto; }
.hero .lede { margin-left: auto; margin-right: auto; }
.hero .lede b { color: var(--text); font-weight: 600; }
.demo-box { position: relative; margin: 56px auto 0; max-width: 1120px; }
.demo-box::before { content: ""; position: absolute; inset: 10% 4% -6%; background: radial-gradient(closest-side, rgb(199 154 104 / 0.34), transparent); filter: blur(44px); z-index: -1; }
.demo-box #demo { aspect-ratio: 1200 / 720; border-radius: 14px; box-shadow: 0 0 0 1px rgb(21 22 31 / 0.1), 0 60px 110px -50px rgb(21 22 31 / 0.6); background: var(--ink); }
.demo-box #demo .still { width: 100%; height: 100%; object-fit: cover; object-position: left top; border-radius: 14px; }
.demo-cap { margin: 16px auto 0; font-size: 13px; color: var(--mute); max-width: 48em; }
@media (max-width: 688px) { .demo-box #demo { aspect-ratio: 420 / 700; } }

/* Facts, not stats: four things that are simply true of the product. */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden; margin: 72px 0 0; }
.facts div { background: var(--card); padding: 20px 22px; }
.facts b { display: block; font-size: 15.5px; margin-bottom: 2px; }
.facts span { color: var(--mute); font-size: 14.5px; line-height: 1.5; display: block; }

/* ---- jobs: by hand vs with it ---- */
.jobs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.job { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 26px 26px 24px; display: flex; flex-direction: column; }
.job .who { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.job .who b { font-family: var(--display); font-size: 22px; font-weight: 680; letter-spacing: -0.02em; }
.job .who a { font-size: 13.5px; color: var(--mute); text-decoration: none; white-space: nowrap; }
.job .who a:hover { color: var(--text); }
.job .lbl { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mute); margin: 0 0 8px; }
.job .before { margin: 0 0 18px; padding: 0; list-style: none; }
.job .before li { position: relative; padding: 3px 0 3px 22px; color: var(--mute); font-size: 15px; }
.job .before li::before { content: ""; position: absolute; left: 2px; top: 13px; width: 11px; height: 1.5px; background: #b3533f; }
.job .ask { background: var(--ink); color: var(--ink-text); border-radius: 14px; padding: 16px 18px; font-size: 15.5px; line-height: 1.5; margin: 0 0 14px; position: relative; }
.job .ask::before { content: "You type"; display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); margin-bottom: 6px; }
.job .after { margin: auto 0 0; padding: 12px 0 0 26px; position: relative; font-size: 15px; border-top: 1px solid var(--line); }
.job .after::before { content: ""; position: absolute; left: 3px; top: 19px; width: 11px; height: 6px; border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok); transform: rotate(-45deg); }
.job .after b { font-weight: 600; }
.more-jobs { margin: 28px 0 0; color: var(--mute); font-size: 15.5px; text-align: center; }

/* ---- the math ---- */
.math { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 20px; align-items: stretch; }
.calc { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 30px; box-shadow: var(--shadow); }
.calc h3 { font-size: 15px; font-weight: 600; margin: 0 0 20px; }
.calc .row { margin: 0 0 22px; }
.calc label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 15px; margin-bottom: 10px; }
.calc label output, .calc label .v { font-family: var(--display); font-weight: 680; font-size: 22px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.calc input[type="range"] { width: 100%; accent-color: var(--ink); height: 28px; margin: 0; cursor: pointer; }
.calc .out { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-top: 6px; }
.calc .out div { background: var(--paper); padding: 16px 18px; }
.calc .out span { display: block; font-size: 13.5px; color: var(--mute); }
.calc .out b { display: block; font-family: var(--display); font-size: clamp(28px, 3.4vw, 36px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.calc .out .win { background: var(--ink); color: var(--ink-text); grid-column: 1 / -1; }
.calc .out .win b { font-size: clamp(22px, 2.6vw, 28px); }
.calc .out .win span { color: var(--ink-mute); }
.calc .note { font-size: 13.5px; color: var(--mute); margin: 14px 0 0; }
.compare { display: grid; gap: 12px; align-content: start; }
.cmp { border: 1px solid var(--line); background: var(--card); border-radius: var(--r-m); padding: 20px 22px; }
.cmp .top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.cmp h3 { margin: 0; font-size: 15.5px; font-weight: 600; }
.cmp .amt { font-family: var(--display); font-weight: 700; font-size: 30px; letter-spacing: -0.035em; white-space: nowrap; }
.cmp .amt small { font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--mute); letter-spacing: 0; }
.cmp p { margin: 6px 0 0; color: var(--mute); font-size: 14.5px; }
.cmp.us { background: var(--ink); color: var(--ink-text); border-color: var(--ink); }
.cmp.us p, .cmp.us .amt small { color: var(--ink-mute); }
.cmp.us h3 { color: #fff; }
.cmp.us .amt { color: #fff; }

/* ---- steps ---- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: s; list-style: none; margin: 0; padding: 0; }
.steps3 li { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 26px; counter-increment: s; position: relative; }
.steps3 li::before { content: counter(s, decimal-leading-zero); font-family: var(--mono); font-size: 13px; color: var(--brass-deep); display: block; margin-bottom: 26px; }
.steps3 p { margin: 0; color: var(--mute); font-size: 15.5px; }
.steps3 .t { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 12px; color: var(--mute); border: 1px solid var(--line); border-radius: 99px; padding: 3px 10px; }

/* ---- real screens ---- */
.shots { display: grid; grid-template-columns: 0.82fr 1.18fr; grid-template-rows: auto auto; gap: 16px; }
.shots figure { margin: 0; background: var(--ink); border-radius: var(--r-m); padding: 8px; display: flex; flex-direction: column; box-shadow: 0 40px 70px -48px rgb(21 22 31 / 0.65); }
.shots figure.tall { grid-row: span 2; }
.shots figure.tall picture { flex: 1; min-height: 0; }
.shots figure.tall img { height: 100%; object-fit: cover; object-position: left top; }
.shots img { width: 100%; border-radius: 10px; }
.shots figcaption { color: var(--ink-mute); font-size: 13.5px; padding: 12px 8px 6px; }

/* ---- safety ---- */
.safe { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.rules { list-style: none; padding: 0; margin: 0; }
.rules li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding: 16px 0; border-top: 1px solid var(--ink-line); }
.rules li:last-child { border-bottom: 1px solid var(--ink-line); }
.rules .n { font-family: var(--mono); font-size: 12.5px; color: var(--ink-mute); padding-top: 3px; }
.rules b { display: block; font-size: 16.5px; color: #fff; margin-bottom: 2px; }
.rules span { color: var(--ink-mute); font-size: 15px; }
.askcard { background: var(--ink-2); border: 1px solid var(--brass); border-radius: 14px; padding: 18px; }
.askcard .q { font-size: 15px; margin: 0 0 14px; color: var(--ink-text); }
.askcard .q i { display: inline-block; width: 8px; height: 8px; margin-right: 9px; vertical-align: 1px; border-radius: 50%; background: var(--brass); animation: pulse 1.4s ease-in-out infinite; }
.askcard .q b { color: #fff; }
.askcard .bs { display: flex; gap: 8px; }
.askcard .bs span { flex: 1; text-align: center; padding: 10px; border-radius: 10px; border: 1px solid #3a3b47; font-size: 14px; font-weight: 550; }
.askcard .bs span:first-child { background: var(--ink-text); color: var(--ink); border-color: var(--ink-text); }
.askcard .ctx { margin: 12px 0 0; font-family: var(--mono); font-size: 12px; color: var(--ink-mute); }
.leaves { margin: 20px 0 0; border: 1px solid var(--ink-line); border-radius: 14px; overflow: hidden; }
.leaves h3 { margin: 0; padding: 14px 18px; font-size: 14px; color: #fff; border-bottom: 1px solid var(--ink-line); }
.leaves dl { margin: 0; }
.leaves div { display: grid; grid-template-columns: 170px 1fr; gap: 16px; padding: 12px 18px; border-top: 1px solid var(--ink-line); font-size: 14px; }
.leaves div:first-child { border-top: 0; }
.leaves dt { color: var(--ink-text); font-weight: 600; }
.leaves dd { margin: 0; color: var(--ink-mute); }
.band .more a, .band p a { color: var(--ink-text); text-decoration-color: #4a4b57; }

/* ---- AI chips ---- */
.works { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0; padding: 0; list-style: none; }
.works li { font-size: 14px; padding: 6px 13px; border: 1px solid var(--line); border-radius: 99px; background: var(--card); }
.center .works { justify-content: center; }

/* ---- pricing card (home teaser and /pricing) ---- */
.price { display: grid; grid-template-columns: 1fr 460px; gap: 56px; align-items: center; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 34px 32px 30px; box-shadow: var(--shadow); position: relative; }
.plan .tag { position: absolute; top: -13px; left: 30px; background: var(--ink); color: var(--paper); font-size: 12.5px; font-weight: 550; padding: 4px 12px; border-radius: 99px; }
.plan .name { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.plan .name b { font-size: 15px; font-weight: 600; }
.plan .name span { font-size: 13px; color: var(--mute); }
.amount { font-family: var(--display); font-size: 68px; font-weight: 700; letter-spacing: -0.045em; line-height: 1; margin: 12px 0 6px; font-variant-numeric: tabular-nums; }
.amount small { font-family: var(--sans); font-size: 17px; color: var(--mute); font-weight: 400; letter-spacing: 0; }
.anchor { font-size: 14.5px; color: var(--mute); margin: 0 0 22px; min-height: 1.6em; }
.checks { padding: 0; margin: 0 0 26px; list-style: none; }
.checks li { padding: 10px 0 10px 30px; position: relative; font-size: 15px; border-top: 1px solid var(--line); }
.checks li b { font-weight: 600; }
.checks li::before { content: ""; position: absolute; left: 3px; top: 17px; width: 11px; height: 6px; border-left: 2px solid var(--ok); border-bottom: 2px solid var(--ok); transform: rotate(-45deg); }
.plan .btn { width: 100%; }
.plan .fine { text-align: center; }
.err { color: var(--bad); font-size: 14px; margin: 12px 0 0; text-align: center; }
.toggle { display: inline-flex; padding: 4px; background: var(--paper-2); border-radius: 12px; gap: 2px; margin: 4px 0 36px; }
.toggle button { border: 0; background: none; font: 550 14.5px var(--sans); color: var(--mute); min-height: 40px; padding: 8px 18px; border-radius: 9px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: background 0.16s, color 0.16s, box-shadow 0.16s; }
.toggle button[aria-pressed="true"] { background: var(--card); color: var(--text); box-shadow: 0 1px 2px rgb(21 22 31 / 0.12), 0 0 0 1px var(--line); }
.toggle .save { font-size: 11.5px; font-weight: 650; color: #2c5a35; background: rgb(58 115 69 / 0.12); padding: 2px 7px; border-radius: 99px; }

.price.top { align-items: start; grid-template-columns: 1fr 0.9fr; }
.plan .or-buy { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.h-sm { font-size: 26px; letter-spacing: -0.025em; }
.mt { margin-top: 28px; }
.cmp.us a { color: var(--ink-text); }
.faq > h2 { margin-bottom: 32px; }

/* two ways to start, side by side */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.path { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 30px 30px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.path.main { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink), var(--shadow); }
.path h2 { font-size: 26px; letter-spacing: -0.025em; margin: 0 0 6px; }
.path > p { color: var(--mute); margin: 0 0 20px; font-size: 15.5px; }
.path .checks { margin-bottom: 24px; }
.path .push { margin-top: auto; }
.path .btn { width: 100%; }

.side-list { list-style: none; padding: 0; margin: 0; counter-reset: s; }
.side-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); counter-increment: s; }
.side-list li::before { content: counter(s); font-family: var(--mono); font-size: 12.5px; color: var(--mute); padding-top: 2px; }
.side-list b { display: block; font-size: 15.5px; }
.side-list span { color: var(--mute); font-size: 14.5px; }

/* ---- faq ---- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 16px; padding: 20px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--mute); font-weight: 400; transition: transform 0.2s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--mute); margin: -6px 0 20px; font-size: 15.5px; max-width: 42em; }
.faq details p a { color: var(--text); }

/* ---- closer ---- */
.closer { margin-top: 120px; text-align: center; padding: 88px 24px; }
.closer h2 { max-width: 13em; margin: 0 auto 14px; }
.closer .lede { margin: 0 auto 30px; }
.closer::before { left: 50%; right: auto; top: -60%; transform: translateX(-50%); width: 1000px; height: 700px; }

/* ---- screen-by-screen (how it works) ---- */
.tl { display: grid; gap: 20px; }
.st { display: grid; grid-template-columns: 1fr 1.08fr; gap: 48px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 40px; }
.st.alt .txt { order: 2; }
.st .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass-deep); margin: 0 0 12px; }
.st h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 14px; }
.st .txt p { color: var(--mute); font-size: 16px; margin: 0 0 12px; }
.st .txt p b { color: var(--text); font-weight: 600; }
.st figure { margin: 0; background: var(--ink); border-radius: var(--r-m); padding: 8px; box-shadow: 0 40px 70px -48px rgb(21 22 31 / 0.65); }
.st figure img { width: 100%; border-radius: 10px; }
.st figure.tallfig img { max-height: 560px; object-fit: cover; object-position: left top; }
.st figcaption { color: var(--ink-mute); font-size: 13px; padding: 10px 8px 4px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden; margin: 56px auto 0; max-width: 900px; text-align: left; }
.timeline div { background: var(--card); padding: 18px 20px; }
.timeline b { font-family: var(--display); font-size: 26px; font-weight: 700; letter-spacing: -0.03em; display: block; line-height: 1.1; }
.timeline span { color: var(--mute); font-size: 14.5px; }

/* ---- download ---- */
.dl-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 64px 0 0; }
.dl-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 30px; box-shadow: var(--shadow); }
.dl-card .btn.primary { width: 100%; }
.dl-card .btn svg { width: 20px; height: 20px; }
.dl-note { font-size: 14px; color: var(--mute); margin: 12px 0 0; text-align: center; }
.dl-other { display: block; text-align: center; font-size: 14px; margin: 8px 0 0; color: var(--text); }
.dl-meta { list-style: none; padding: 0; margin: 22px 0 0; border-top: 1px solid var(--line); }
.dl-meta li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.dl-meta li span { color: var(--mute); }
.dl-meta li b { font-weight: 550; text-align: right; }
.dl-meta a { color: var(--text); }
.install { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; padding: 0; margin: 0; }
.install li { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 12px 12px 24px; }
.install .art { background: var(--paper); border-radius: 14px; margin-bottom: 18px; }
.install .art svg { display: block; width: 100%; height: auto; }
.install h3, .install p { margin-left: 12px; margin-right: 12px; }
.install p { color: var(--mute); margin-top: 0; margin-bottom: 0; font-size: 15px; }
.then { display: flex; gap: 14px; align-items: flex-start; margin: 20px 0 0; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--r-m); background: var(--card); font-size: 15px; color: var(--mute); }
.then i { flex: none; width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: var(--brass); }
.then b { color: var(--text); }
.warn { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-l); padding: 36px; }
.warn .tag { display: inline-block; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass-deep); border: 1px solid rgb(135 89 47 / 0.35); padding: 3px 9px; border-radius: 99px; margin-bottom: 14px; }
.warn h2 { font-size: clamp(24px, 3vw, 32px); }
.warn p { color: var(--mute); font-size: 15.5px; }
.clicks { list-style: none; margin: 0; padding: 0; }
.clicks li { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; }
.clicks li:last-child { border-bottom: 1px solid var(--line); }
.clicks .n { width: 24px; height: 24px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; font-size: 12px; font-weight: 600; }
.help-line { margin-top: 48px; }
.ui { font-weight: 600; background: var(--paper-2); border-radius: 6px; padding: 1px 7px; white-space: nowrap; }

/* ---- welcome and account cards ---- */
.head { padding: 64px 0 8px; }
.done { width: 52px; height: 52px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; margin: 0 0 26px; box-shadow: 0 0 0 8px rgb(199 154 104 / 0.18); }
.done svg { width: 22px; height: 22px; color: var(--paper); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 24px 26px; margin: 0 0 16px; }
.card h2 { font-size: 22px; margin: 0 0 6px; letter-spacing: -0.02em; }
.card p { color: var(--mute); margin: 0 0 16px; font-size: 15px; }
.card p:last-child { margin-bottom: 0; }
.card .fine { margin-top: 14px; }
.keycard { background: var(--ink); color: var(--ink-text); border-color: var(--ink); position: relative; overflow: hidden; }
.keycard::before { content: ""; position: absolute; width: 380px; height: 380px; right: -140px; top: -200px; background: radial-gradient(closest-side, rgb(199 154 104 / 0.32), transparent); pointer-events: none; }
.keycard > * { position: relative; }
.keycard .k-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 12px; }
.keyrow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.key { font-family: var(--mono); font-size: clamp(18px, 3.6vw, 26px); letter-spacing: 0.06em; color: #fff; user-select: all; overflow-wrap: anywhere; flex: 1; min-width: 0; }
.keycard .btn { background: var(--ink-text); color: var(--ink); border-color: var(--ink-text); }
.keycard .btn.copied { background: var(--ok-ink); border-color: var(--ok-ink); }
.keycard .note { color: var(--ink-mute); font-size: 13.5px; margin: 14px 0 0; }
.keycard .note a { color: var(--ink-text); }
.next { list-style: none; padding: 0; margin: 28px 0 0; }
.next li { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.next li:last-child { border-bottom: 1px solid var(--line); }
.next b { display: block; font-size: 16px; }
.next span { color: var(--mute); font-size: 14.5px; }
.muted-box { padding: 22px 0; color: var(--mute); }
.spinner { display: inline-block; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--line-strong); border-top-color: var(--ink); animation: rot 0.8s linear infinite; vertical-align: -2px; margin-right: 10px; }
form.inline { display: flex; gap: 10px; flex-wrap: wrap; }
input[type="email"] { flex: 1; min-width: 200px; font: 16px var(--sans); min-height: 48px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line-strong); background: var(--white); color: var(--text); }
input[type="email"]:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
.ok-msg { color: var(--ok); font-size: 14.5px; margin: 12px 0 0; }

/* ---- footer ---- */
.sitefoot { margin-top: 96px; padding: 48px 0 48px; border-top: 1px solid var(--line); color: var(--mute); font-size: 14px; }
.sitefoot .cols { display: grid; grid-template-columns: 1.4fr repeat(5, minmax(0, 1fr)); gap: 24px; }
.sitefoot .about p { margin: 12px 0 0; max-width: 22em; }
.sitefoot a { color: var(--mute); text-decoration: none; display: block; padding: 5px 0; }
.sitefoot a:hover { color: var(--text); }
.sitefoot .brand { display: inline-flex; padding: 0; color: var(--text); }
.sitefoot .fh { margin: 0 0 8px; font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); font-weight: 600; }
.sitefoot .legal { margin-top: 32px; font-size: 13px; }

/* ---- motion ---- */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes rot { to { transform: rotate(360deg); } }
@keyframes up { from { opacity: 0; transform: translateY(8px); } }
.hero > *, .head > *, .dl-hero > * { animation: up 0.5s var(--ease) both; }
.hero > :nth-child(2), .head > :nth-child(2) { animation-delay: 60ms; }
.hero > :nth-child(3), .head > :nth-child(3) { animation-delay: 120ms; }
.hero > :nth-child(n + 4), .head > :nth-child(n + 4) { animation-delay: 180ms; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- responsive ---- */
@media (max-width: 1020px) {
  .nav .links { display: none; }
  .nav .menu { display: block; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .math, .safe, .price, .price.top, .st, .dl-hero, .warn { grid-template-columns: 1fr; }
  .price { gap: 36px; }
  .st.alt .txt { order: 0; }
  .sitefoot .cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sitefoot .about { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  section { padding-top: 88px; }
  .wrap { padding: 0 16px; }
  .hero { padding-top: 40px; }
  .jobs, .steps3, .paths, .install { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .shots figure.tall { grid-row: auto; }
  .shots figure.tall img { max-height: 520px; }
  .band { padding: 48px 22px; border-radius: 20px; }
  .closer { padding: 64px 20px; margin-top: 88px; }
  .st { padding: 24px 20px; gap: 24px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .leaves div { grid-template-columns: 1fr; gap: 2px; }
  .sitefoot .cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan, .path, .calc, .dl-card, .warn { padding: 24px 20px; }
  .amount { font-size: 56px; }
  .next li { grid-template-columns: 1fr; gap: 10px; }
  .next .btn, .keycard .btn { width: 100%; }
  .cta .btn { flex: 1 1 100%; }
  .toggle { display: flex; }
  .toggle button { flex: 1; justify-content: center; padding: 8px 10px; }
}
@media (max-width: 420px) {
  .facts { grid-template-columns: 1fr; }
  .nav .end .btn.small { padding: 8px 12px; }
  .brand b { font-size: 16.5px; }
}
