/* Fingertips. One stylesheet, no framework, no build step.
   Implements the Claude Design comp "Fingertips Website.dc.html": a fixed
   1440px light layout, made responsive here. The comp's dark reference block
   is implemented as prefers-color-scheme rather than a toggle, which is what
   it says it is. See ../../fingertips/WEBSITE-PLAN.md §4. */

/* Newsreader is self-hosted rather than pulled from Google Fonts. The footer
   claims no cookies and no analytics; a fonts.gstatic.com request hands the
   visitor's IP to Google and makes that claim untrue. 120 KB, served once. */
@font-face {
  font-family: Newsreader;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/newsreader-normal.woff2) format("woff2");
}
@font-face {
  font-family: Newsreader;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/newsreader-italic.woff2) format("woff2");
}

:root {
  color-scheme: light dark;

  --paper: #f4ebe1;
  --card: #fbf5ef;
  --ink: #1e1815;
  --ink-2: #3a322c;
  --muted: #5c5149;
  --muted-2: #6e6259;
  --accent: #a34e29;
  --accent-hover: #8a3f1f;
  --accent-on: #fff;
  --accent-soft: rgba(163, 78, 41, 0.1);
  --line: rgba(30, 24, 21, 0.08);
  --line-2: rgba(30, 24, 21, 0.1);
  --line-3: rgba(30, 24, 21, 0.14);
  --chip: rgba(30, 24, 21, 0.06);
  --nav-bg: rgba(250, 244, 237, 0.72);
  --nav-line: rgba(255, 255, 255, 0.7);
  --nav-shadow: 0 8px 28px rgba(30, 24, 21, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  --card-shadow: 0 2px 3px rgba(30, 24, 21, 0.04);
  --eyebrow-bg: rgba(255, 255, 255, 0.6);
  --ghost-bg: rgba(255, 255, 255, 0.7);
  --ghost-bg-hover: #fff;

  /* Panels are dark in both schemes; they are the app, not the page. */
  --panel: #221e1a;
  --panel-ink: #f7f1ea;
  --panel-muted: rgba(235, 235, 245, 0.6);
  --panel-faint: rgba(235, 235, 245, 0.5);
  --panel-line: rgba(255, 255, 255, 0.12);
  --panel-key: rgba(120, 120, 128, 0.28);
  --panel-accent: #d9784a;
  --panel-accent-on: #1a0e08;
  --panel-shadow: 0 30px 70px rgba(30, 24, 21, 0.22);

  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --serif: Newsreader, Georgia, "Times New Roman", serif;
  --wrap: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #141210;
    --card: #221e1a;
    --ink: #f7f1ea;
    --ink-2: rgba(247, 241, 234, 0.86);
    --muted: rgba(235, 235, 245, 0.62);
    --muted-2: rgba(235, 235, 245, 0.5);
    --accent: #d9784a;
    --accent-hover: #e68c60;
    --accent-on: #1a0e08;
    --accent-soft: rgba(217, 120, 74, 0.14);
    --line: rgba(255, 255, 255, 0.08);
    --line-2: rgba(255, 255, 255, 0.1);
    --line-3: rgba(255, 255, 255, 0.14);
    --chip: rgba(255, 255, 255, 0.08);
    --nav-bg: rgba(40, 36, 33, 0.72);
    --nav-line: rgba(255, 255, 255, 0.12);
    --nav-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    --card-shadow: none;
    --eyebrow-bg: rgba(255, 255, 255, 0.06);
    --ghost-bg: rgba(120, 120, 128, 0.24);
    --ghost-bg-hover: rgba(120, 120, 128, 0.34);
    /* On #141210 paper the comp's #221e1a is the card colour, so panels drop
       a step further to stay distinguishable from the cards beside them. */
    --panel: #1b1815;
    --panel-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  }
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
        system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

img { max-width: 100%; }

.wrap { width: min(var(--wrap), 100% - 3rem); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: min(var(--wrap), 100% - 2.25rem); } }

section { scroll-margin-top: 96px; }

/* Section spacing: the comp's flat 130px, softened on small screens. */
.band { padding-top: clamp(72px, 10vw, 130px); }

/* ---------- shared type ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent-soft);
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 6.4vw, 78px); line-height: 1.03; letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 4.4vw, 50px); line-height: 1.08; }
h3 { margin: 0; font-weight: 600; letter-spacing: -0.015em; }
em { font-style: italic; color: var(--accent); }

p { margin: 0; text-wrap: pretty; }

kbd {
  font-family: var(--mono);
  font-size: 0.85em;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--chip);
  color: inherit;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-on); }
.btn-primary:hover { background: var(--accent-hover); color: var(--accent-on); }
.btn-ghost {
  background: var(--ghost-bg);
  border: 0.5px solid var(--line-2);
  color: var(--ink);
  font-weight: 400;
  padding: 0 22px;
}
.btn-ghost:hover { background: var(--ghost-bg-hover); color: var(--ink); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 15px; }

/* ---------- nav ---------- */

.nav-shell { position: sticky; top: 0; z-index: 60; padding-top: 14px; }
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 60px;
  padding: 0 10px 0 16px;
  border-radius: 16px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 0.5px solid var(--nav-line);
  box-shadow: var(--nav-shadow);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-brand:hover { color: var(--ink); }
.nav-brand img { width: 30px; height: 30px; border-radius: 7px; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  height: 36px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-end { display: flex; align-items: center; gap: 12px; }
.nav-price {
  font-family: var(--mono);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  color: var(--muted-2);
  letter-spacing: -0.01em;
}
@media (max-width: 900px) { .nav-links { display: none; } }
@media (max-width: 560px) { .nav-price { display: none; } .nav-end { margin-left: auto; } }

/* ---------- hero ---------- */

.hero {
  padding-top: clamp(56px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 100px;
  background: var(--eyebrow-bg);
  border: 0.5px solid var(--line);
}
.hero-badge img { width: 22px; height: 22px; border-radius: 5px; display: block; }
.hero-badge span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.hero h1 { margin-top: 28px; max-width: 940px; }
.hero-lede {
  margin-top: 26px;
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 620px;
}
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--muted);
}
.dot { width: 3px; height: 3px; border-radius: 2px; background: currentColor; opacity: 0.5; }

/* ---------- the demo panel ---------- */

.panel {
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--panel-shadow);
  color: var(--panel-ink);
}
.demo-panel { padding: 26px; box-shadow: 0 40px 90px rgba(30, 24, 21, 0.26); }
.demo-caption {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 22px 6px 2px;
}
.demo-caption h2 {
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: normal;
  color: var(--panel-ink);
  margin-bottom: 6px;
}
.demo-caption p { font-size: 15px; line-height: 1.55; color: var(--panel-muted); max-width: 560px; }
.demo-caption .aside {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--panel-muted);
  text-align: right;
  max-width: 250px;
  flex: none;
}
.demo-caption kbd { background: var(--panel-key); color: var(--panel-ink); font-size: 13.5px; }
@media (max-width: 820px) {
  .demo-panel { padding: 16px; }
  .demo-caption { flex-direction: column; align-items: flex-start; gap: 14px; }
  .demo-caption .aside { text-align: left; max-width: none; }
}

/* The comp draws the palette at a fixed 1128x560. Rather than rebuilding it at
   every width, the whole stage is scaled by container width. Below 720px the
   type would be unreadable at that scale, so a real screenshot takes over. */
.stage {
  container-type: inline-size;
  aspect-ratio: 1128 / 560;
  border-radius: 12px;
  overflow: hidden;
  background: #1c1c1e;
}
.stage-frame {
  width: 1128px;
  height: 560px;
  position: relative;
  transform-origin: top left;
  transform: scale(calc(100cqw / 1128));
}
.stage-still { display: none; }
@media (max-width: 720px) {
  .stage { display: none; }
  .stage-still { display: block; border-top: 0; border-radius: 12px; }
}

.doc-chrome {
  position: absolute;
  inset: 0 0 auto;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #2a2a2c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.doc-chrome i { width: 11px; height: 11px; border-radius: 6px; display: block; }
.doc-chrome b { font-size: 12.5px; font-weight: 600; color: rgba(235, 235, 245, 0.62); padding-left: 10px; }
.doc-body {
  position: absolute;
  inset: 38px 0 0;
  padding: 34px 44px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #e8e6e3;
}
.doc-body p { margin-bottom: 18px; }
.doc-caret { display: inline-block; width: 1.5px; height: 22px; background: #e8e6e3; vertical-align: -4px; }

.key-hint {
  position: absolute;
  left: 50%;
  bottom: 392px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
}
.key-hint kbd { background: rgba(255, 255, 255, 0.14); color: #fff; font-size: 13px; padding: 3px 8px; }

.palette-mount { position: absolute; left: 50%; bottom: 66px; width: 620px; transform: translateX(-50%); z-index: 6; }
.palette {
  border-radius: 16px;
  padding: 10px;
  background: rgba(28, 26, 25, 0.72);
  backdrop-filter: blur(40px) saturate(190%);
  -webkit-backdrop-filter: blur(40px) saturate(190%);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.palette-search { display: flex; align-items: center; gap: 10px; height: 46px; padding: 0 8px; }
.palette-search .glass { color: #d9784a; display: grid; place-items: center; }
.palette-query {
  font-family: var(--mono);
  font-size: 21px;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  width: 3ch;
}
.palette-caret { width: 2px; height: 24px; background: #d9784a; }
.palette-count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
  color: rgba(235, 235, 245, 0.5);
}
.palette-rows { display: flex; flex-direction: column; gap: 1px; padding-top: 4px; }
.prow {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 7px 12px;
  border-radius: 10px;
  overflow: hidden;
}
.prow .ico { display: grid; place-items: center; color: rgba(235, 235, 245, 0.5); }
.prow .txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.prow .txt b { font-size: 14.5px; font-weight: 400; line-height: 1.3; color: #f2efec; }
.prow .txt span {
  font-size: 12.5px;
  line-height: 1.3;
  color: #8c8480;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prow .hot { font-family: var(--mono); font-size: 11px; color: rgba(235, 235, 245, 0.62); }
.prow-on { background-color: #d9784a; color: #1a0e08; }
.prow-on .ico, .prow-on .txt b { color: currentColor; }
.prow-on .txt b { font-weight: 600; }
.prow-on .txt span { color: rgba(26, 14, 8, 0.82); }
.prow-bar { position: absolute; left: 0; top: 9px; bottom: 9px; width: 3px; border-radius: 0 2px 2px 0; background: #1a0e08; }
.prow-enter { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 6px; color: #1a0e08; font-size: 12px; line-height: 1; }
.prow-flash { position: absolute; inset: 0; background: #fff; opacity: 0; }
.palette-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 26px;
  padding: 6px 8px 0;
  font-size: 11.5px;
  color: rgba(235, 235, 245, 0.72);
}
.palette-foot span { display: flex; align-items: center; gap: 5px; }
.palette-foot span:last-child { margin-left: auto; }
.palette-foot kbd { font-family: var(--mono); font-size: 10.5px; padding: 2px 5px; border-radius: 5px; background: var(--panel-key); }

/* The ten-second loop: type, select, flash, paste. */
@keyframes ftCaret { 0%, 49% { opacity: 1 } 50%, 100% { opacity: 0 } }
@keyframes ftPalette {
  0%, 9% { opacity: 0; transform: translateY(8px) scale(0.985) }
  11.5%, 34% { opacity: 1; transform: none }
  36%, 100% { opacity: 0; transform: translateY(4px) scale(0.99) }
}
@keyframes ftType { 0%, 13% { width: 0 } 14.5%, 16.9% { width: 1ch } 17.4%, 19.9% { width: 2ch } 20.4%, 100% { width: 3ch } }
@keyframes ftSelRow { 0%, 20% { background-color: rgba(217, 120, 74, 0); color: #f2efec } 23%, 100% { background-color: #d9784a; color: #1a0e08 } }
@keyframes ftSelSub { 0%, 20% { color: #8c8480 } 23%, 100% { color: rgba(26, 14, 8, 0.82) } }
@keyframes ftSelBar { 0%, 20% { opacity: 0 } 23%, 100% { opacity: 1 } }
@keyframes ftDim { 0%, 20% { opacity: 1 } 23%, 34% { opacity: 0.28 } 36%, 100% { opacity: 1 } }
@keyframes ftCount { 0%, 20% { opacity: 0 } 22%, 34% { opacity: 1 } 36%, 100% { opacity: 0 } }
@keyframes ftFlash { 0%, 30.5% { opacity: 0 } 31.6% { opacity: 0.5 } 33.5%, 100% { opacity: 0 } }
@keyframes ftPaste { 0%, 38% { opacity: 0; transform: translateY(4px) } 40.5%, 84% { opacity: 1; transform: none } 89%, 100% { opacity: 0 } }
@keyframes ftDocCaret { 0%, 37% { opacity: 1 } 38%, 100% { opacity: 0 } }
@keyframes ftKeyHint { 0%, 6.5% { opacity: 0; transform: translateY(4px) } 8.5%, 13% { opacity: 1; transform: none } 17%, 100% { opacity: 0; transform: translateY(-2px) } }

.doc-caret     { animation: ftCaret 1.06s step-end infinite, ftDocCaret 10s linear infinite; }
.paste-caret   { animation: ftCaret 1.06s step-end infinite; margin-left: 1px; }
.doc-paste     { opacity: 0; animation: ftPaste 10s linear infinite; }
.key-hint      { animation: ftKeyHint 10s linear infinite; }
.palette       { animation: ftPalette 10s linear infinite; }
.palette-query { animation: ftType 10s steps(1, end) infinite; }
.palette-caret { animation: ftCaret 1.06s step-end infinite; }
.palette-count { opacity: 0; animation: ftCount 10s linear infinite; }
.prow-on       { animation: ftSelRow 10s linear infinite; }
.prow-on .txt span { animation: ftSelSub 10s linear infinite; }
.prow-bar, .prow-enter { animation: ftSelBar 10s linear infinite; }
.prow-flash    { animation: ftFlash 10s linear infinite; }
.prow-dim      { animation: ftDim 10s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Freeze mid-loop rather than stopping at frame zero, so the still shows the
     selected row and the pasted signature instead of an empty palette. */
  .stage * { animation: none !important; }
  .key-hint { opacity: 0; }
  .palette-count, .doc-paste, .prow-bar, .prow-enter { opacity: 1; }
  .doc-caret { opacity: 0; }
}

/* ---------- section headings ---------- */

.head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 44px;
}
.head-main { display: flex; flex-direction: column; gap: 18px; max-width: 700px; }
.head-aside { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 340px; flex: none; }
.head-aside-narrow { max-width: 280px; }
.head-lede { font-size: 17.5px; line-height: 1.62; color: var(--muted); max-width: 720px; }
@media (max-width: 900px) {
  .head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .head-aside, .head-aside-narrow { max-width: 640px; }
}

/* ---------- cards and media ---------- */

.card {
  border-radius: 20px;
  background: var(--card);
  border: 0.5px solid var(--line);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}
.card-body { padding: 30px 32px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-body h3 { font-size: clamp(21px, 2.2vw, 24px); }
.card-body p { font-size: 16px; line-height: 1.6; color: var(--muted); }

.media {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--ar, 3 / 2);
  border-top: 0.5px solid var(--line);
  background: var(--shot-bg, #161618);
}
/* max-width:100% above would clamp the deliberately over-sized crops below. */
.media img { position: absolute; display: block; max-width: none; }
.media-cover img { inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, center top); }
/* The comp positions these two by hand, in pixels against a 1440px page. Kept
   as percentages of the box so the crop survives every other width. */
.media-crop img { width: var(--w); height: auto; left: var(--x); top: var(--y); }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .duo, .trio { grid-template-columns: 1fr; } }

.stack { display: flex; flex-direction: column; gap: 20px; }

/* The iPad card: copy and bullets side by side above a full-width shot. */
.wide-card-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 32px 36px 28px;
}
.wide-card-body .copy { display: flex; flex-direction: column; gap: 12px; max-width: 520px; }
.wide-card-body h3 { font-size: clamp(21px, 2.4vw, 26px); }
.wide-card-body p { font-size: 16.5px; line-height: 1.6; color: var(--muted); }
.tag-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tag-note { font-family: var(--mono); font-size: 11.5px; color: var(--muted-2); }
.dashes { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; min-width: 210px; flex: none; }
.dashes li { display: flex; align-items: baseline; gap: 8px; font-size: 15px; line-height: 1.45; color: var(--ink-2); }
.dashes li::before { content: "\2014"; color: var(--accent); font-size: 13px; flex: none; }
@media (max-width: 900px) {
  .wide-card-body { flex-direction: column; gap: 22px; padding: 28px 24px 24px; }
  .dashes { padding-top: 0; }
}
@media (max-width: 640px) { .card-body { padding: 24px 22px 22px; } }

/* ---------- split sections ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-top { align-items: start; }
.split .copy { display: flex; flex-direction: column; gap: 20px; }
.split .copy p { font-size: 17.5px; line-height: 1.62; color: var(--muted); }
@media (max-width: 980px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f2f2f7;
  box-shadow: 0 30px 70px rgba(30, 24, 21, 0.2);
}

/* label / value rows, used by the organisation spec and the privacy absences */
.rows { display: flex; flex-direction: column; border-top: 1px solid var(--line-3); }
.rows > div {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.rows > div:last-child { border-bottom: 0; }
.rows dt, .rows .key { font-family: var(--mono); font-size: 12px; color: var(--accent); width: 96px; flex: none; }
.rows dd, .rows .val { margin: 0; font-size: 15.5px; color: var(--ink-2); }
.rows-lg > div { align-items: center; padding: 18px 0; }
.rows-lg .key { font-size: 13px; width: auto; }
.rows-lg .val { font-size: clamp(17px, 2vw, 19px); letter-spacing: -0.01em; color: var(--ink); }

/* ---------- metrics panel ---------- */

.metrics { padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 56px); }
.metrics .head { padding-bottom: 52px; }
.metrics h2 { color: var(--panel-ink); font-size: clamp(30px, 3.8vw, 46px); line-height: 1.1; max-width: 560px; }
.metrics .head-aside { font-size: 16px; color: var(--panel-muted); max-width: 330px; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--panel-line);
  padding-top: 44px;
}
.metric { display: flex; flex-direction: column; gap: 10px; }
.metric .n {
  font-family: var(--mono);
  font-size: clamp(34px, 4vw, 46px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  color: var(--panel-ink);
  line-height: 1;
}
.metric .l { font-size: 16px; color: var(--panel-ink); font-weight: 600; }
.metric p { font-size: 14.5px; line-height: 1.55; color: rgba(235, 235, 245, 0.55); }
@media (max-width: 900px) { .metrics-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- full access note ---------- */

.note-card {
  margin-top: 56px;
  border-radius: 20px;
  background: var(--card);
  border: 0.5px solid var(--line);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.note-card > div { display: flex; flex-direction: column; gap: 12px; }
.note-card p { font-size: 16px; line-height: 1.62; color: var(--muted); }
.note-card h3 { font-size: 21px; }
.note-card .lockrow { display: flex; align-items: center; gap: 12px; }
.note-card .lock {
  width: 34px; height: 34px; flex: none;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.note-card .rhs { padding-left: 56px; border-left: 1px solid var(--line-2); }
@media (max-width: 900px) {
  .note-card { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
  .note-card .rhs { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-2); padding-top: 28px; }
}

/* ---------- limitations ---------- */

.limits { border-top: 1px solid var(--line-3); }
.limits > div {
  display: grid;
  grid-template-columns: 56px 300px 1fr;
  gap: 32px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.limits > div:last-child { border-bottom: 0; }
.limits .n { font-family: var(--mono); font-size: 15px; font-variant-numeric: tabular-nums; color: var(--accent); }
.limits h3 { font-size: 19.5px; line-height: 1.35; }
.limits p { font-size: 16.5px; line-height: 1.62; color: var(--muted); }
@media (max-width: 900px) {
  .limits > div { grid-template-columns: 34px 1fr; gap: 12px 16px; }
  .limits p { grid-column: 2; }
}

/* ---------- FAQ ---------- */

.faq { display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start; }
.faq-head { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 100px; }
.faq-head h2 { font-size: clamp(30px, 3.8vw, 46px); line-height: 1.1; }
.faq-head p { font-size: 16px; line-height: 1.6; color: var(--muted); }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line-3); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: -0.012em;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .plus {
  font-family: var(--mono);
  font-size: 19px;
  color: var(--accent);
  flex: none;
  transition: transform 0.18s ease;
}
.faq-list details[open] summary .plus { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 0 26px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
}
@media (max-width: 980px) {
  .faq { grid-template-columns: 1fr; gap: 36px; }
  .faq-head { position: static; }
}

/* ---------- buy ---------- */

.buy {
  padding: clamp(44px, 6vw, 72px) clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.buy img.icon { width: 76px; height: 76px; border-radius: 18px; display: block; }
.buy h2 { margin-top: 28px; color: var(--panel-ink); font-size: clamp(34px, 4.4vw, 52px); line-height: 1.06; max-width: 660px; }
.buy-price { display: flex; align-items: baseline; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.buy-price .n {
  font-family: var(--mono);
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  color: var(--panel-ink);
}
.buy-price .u { font-size: 17px; color: var(--panel-muted); }
.buy-ticks {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.buy-ticks span { display: flex; align-items: center; gap: 9px; font-size: 16px; color: var(--panel-ink); }
.buy-ticks .tick { color: #30d158; display: grid; place-items: center; flex: none; }
.buy-cta { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
.buy-cta .btn { height: 54px; }
.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 26px;
  border-radius: 12px;
  background: rgba(217, 120, 74, 0.14);
  color: var(--panel-accent);
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}
.status::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--panel-accent);
  box-shadow: 0 0 0 4px rgba(217, 120, 74, 0.2);
}
.btn-outline {
  color: var(--panel-accent);
  font-weight: 400;
  box-shadow: inset 0 0 0 1px rgba(217, 120, 74, 0.45);
  padding: 0 24px;
}
.btn-outline:hover { color: var(--panel-accent); box-shadow: inset 0 0 0 1px rgba(217, 120, 74, 0.8); }
.buy-fine {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--panel-muted);
  max-width: 440px;
}

/* ---------- footer ---------- */

.site-footer { padding: clamp(72px, 9vw, 110px) 0 60px; }
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-2);
}
.footer-about { display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
.footer-about .brand { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.footer-about img { width: 26px; height: 26px; border-radius: 6px; display: block; }
.footer-about p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.footer-cols { display: flex; gap: clamp(32px, 6vw, 72px); flex-wrap: wrap; }
.footer-cols div { display: flex; flex-direction: column; gap: 12px; }
.footer-cols span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.footer-cols a { font-size: 15px; color: var(--ink-2); }
.footer-cols a:hover { color: var(--accent); }
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 13.5px;
  color: var(--muted-2);
}
.footer-base .claims { font-family: var(--mono); font-size: 11.5px; }
@media (max-width: 820px) { .footer-top { flex-direction: column; gap: 36px; } }

/* ---------- privacy / support / 404 ---------- */

.doc main { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem 1rem; }
.doc main h1 { font-size: clamp(36px, 6vw, 56px); margin-bottom: 1rem; }
.doc main h2 { font-size: clamp(24px, 3.2vw, 32px); margin: 3.5rem 0 0.8rem; }
.doc main h3 { font-size: 1.05rem; margin: 2rem 0 0.4rem; }
.doc main p { margin: 0 0 1rem; }
.doc main a { text-decoration: underline; }
.doc .lede { font-size: 1.2rem; color: var(--muted); }
.doc .note { border-left: 2px solid var(--accent); padding: 0.15rem 0 0.15rem 1rem; color: var(--muted); font-size: 0.95rem; }
.doc dl dt { font-weight: 600; margin-top: 1.5rem; }
.doc dl dd { margin: 0.3rem 0 0; color: var(--muted); }
.doc hr { border: 0; border-top: 1px solid var(--line-2); margin: 3.5rem 0 0; }
.doc header { padding: 1.4rem 1.5rem; max-width: 44rem; margin: 0 auto; }
.doc header .brand { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 600; color: var(--ink); }
.doc header .brand img { width: 28px; height: 28px; border-radius: 7px; display: block; }
.doc footer { max-width: 44rem; margin: 3rem auto 0; padding: 2rem 1.5rem 4rem; border-top: 1px solid var(--line-2); color: var(--muted-2); font-size: 0.94rem; }
.doc footer nav { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 0.9rem; }
.doc footer a { color: var(--muted); }
.doc footer a:hover { color: var(--accent); }
.doc footer p { margin: 0; }

/* Language switcher, appended to every page by i18n.py. Quiet by design: a
   reader who wants another language goes looking for this, and everybody else
   should not have a row of twelve links competing with the footer above it. */
.lang-switch {
  border-top: 1px solid var(--line-2);
  padding: 18px 24px 28px;
}
.lang-switch nav {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: .82rem;
}
.lang-switch a {
  color: var(--muted-2);
  text-decoration: none;
}
.lang-switch a:hover { color: var(--accent); }
.lang-switch a[aria-current] { color: var(--ink); font-weight: 600; }
