/* Trust Scan webapp stylesheet (mikbry.com/trust-report/).
   Implements the Claude Design "Landing Page" mockup (dark + light). The mockup's
   hardcoded colors ARE the mikbry.com dark/light tokens, so the whole page is
   expressed in CSS variables — dark renders the mockup faithfully, light derives
   automatically from the mikbry.com light palette. Self-hosted Inter + JetBrains
   Mono (latin woff2) in ./fonts/ — no external CDN (CSP-clean, offline). */

/* --- Fonts (self-hosted, latin subset, woff2) --------------------------- */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("./fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("./fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("./fonts/inter-700.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 400; font-display: swap; src: url("./fonts/jbmono-400.woff2") format("woff2"); }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 500; font-display: swap; src: url("./fonts/jbmono-500.woff2") format("woff2"); }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Palette + shape tokens. Light default; dark forks below. ------------ */
:root {
  color-scheme: light dark;
  --background: #faf9f6; /* off-white paper */
  --background-soft: #f4f2ec; /* one step warmer than paper */
  --foreground: #1a1a1a; /* near-black ink */
  --muted-foreground: #6b6b6b;
  --text-subtle: #8a8a8a;
  --text-body: #444444; /* pricing-bullet body — a touch stronger than muted */
  --border: #e4e2dc; /* hairline rules + grid lines */
  --border-muted: rgba(0, 0, 0, 0.08);
  --separator: #c9c5bb; /* dim dots + dashed scan-widget border */
  --surface: #f1efe9; /* subtle fill */
  --accent: #1d4ed8; /* the one restrained accent */
  --accent-soft: rgba(29, 78, 216, 0.1);
  --accent-on-foreground: #8fb3ff; /* accent em on the inverted (final CTA) band */
  --radius: 0.25rem;
  --content-width: 65ch;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --good: #1a7f52;
  --watch: #a16207;
  --risk: #b4392f;
  --good-soft: rgba(26, 127, 82, 0.1);
  --watch-soft: rgba(161, 98, 7, 0.1);
  --risk-soft: rgba(180, 57, 47, 0.1);
  --success: #16a34a; /* checkmarks + focused-footer privacy line */
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #070b12; /* very dark navy */
    --background-soft: #0b111c;
    --surface: #101722;
    --foreground: #f4f7fb; /* off-white */
    --muted-foreground: #a7b3c4;
    --text-subtle: #6f7d91;
    --text-body: #c6d1e0;
    --border: #182233;
    --border-muted: #182233;
    --separator: #2a3a52;
    --accent: #5aa7ff; /* muted cyan-blue */
    --accent-soft: rgba(90, 167, 255, 0.14);
    --accent-on-foreground: #1d4ed8;
    --good: #52c08a;
    --watch: #d6a441;
    --risk: #e5776b;
    --good-soft: rgba(82, 192, 138, 0.14);
    --watch-soft: rgba(214, 164, 65, 0.14);
    --risk-soft: rgba(229, 119, 107, 0.14);
    --success: #4ade80;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent-soft); color: var(--foreground); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

#app { width: 100%; }

.brand { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }

/* Reusable containers + section rhythm. */
.wide { max-width: 1024px; margin: 0 auto; }
.narrow { max-width: 760px; margin: 0 auto; }
.section { padding: 4.5rem 1.5rem; }
.section--soft { background: var(--background-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--ruled { border-top: 1px solid var(--border); }
.section--tightbottom { padding-top: 0; padding-bottom: 4.5rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.section-h2 {
  margin: 0.875rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  max-width: 38ch;
  text-wrap: balance;
}
.section-h2--center { max-width: 34ch; }
.section-h2--tight { margin-top: 0; }

.section-lead {
  margin: 1rem 0 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  text-wrap: pretty;
}
.section-lead--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead em { font-style: italic; }

/* Mono helpers used across sections. */
.mono-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-subtle); }
.mono-label--center { text-align: center; }
.mono-label--muted { color: var(--text-subtle); font-size: 0.8rem; letter-spacing: 0; text-transform: none; }
.mono-n { font-family: var(--font-mono); font-size: 0.875rem; color: var(--accent); font-weight: 500; }
.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  background: var(--surface);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}
.tick-dot { color: var(--separator); }

/* Hairline grid — 1px gaps reveal the border color behind page-bg cells. */
.grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-cell { background: var(--background); padding: 1.875rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cell-title { font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.01em; }
.cell-title--sm { font-size: 1.0625rem; }
.cell-body { font-size: 0.9375rem; line-height: 1.6; color: var(--muted-foreground); text-wrap: pretty; }
.cell-body--sm { font-size: 0.875rem; }

/* ── EN/FR toggle + buttons ─────────────────────────────────────────────── */
.locale-toggle { display: inline-flex; gap: 3px; border: 1px solid var(--border); border-radius: 999px; padding: 2px; }
.locale-btn {
  background: transparent;
  color: var(--text-subtle);
  border: 0;
  padding: 0.1875rem 0.625rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  border-radius: 999px;
}
.locale-btn:hover { color: var(--foreground); }
.locale-btn.active { background: var(--accent-soft); color: var(--accent); }

.btn {
  display: inline-block;
  border-radius: var(--radius);
  padding: 0.8125rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-accent { background: var(--accent); color: #fff; border: 1px solid var(--accent); }
.btn-accent:hover { opacity: 0.92; }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent-soft); }
.btn-invert { background: var(--background); color: var(--foreground); padding: 1rem 2rem; font-size: 1rem; font-weight: 700; }
.btn-invert:hover { opacity: 0.92; }
.btn-nowrap { white-space: nowrap; }

/* Shared accent button used by the focused-view membership CTA. */
.cta-button { display: inline-block; background: var(--accent); color: #fff; border: 0; border-radius: var(--radius); padding: 0.75rem 1.25rem; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; cursor: pointer; text-decoration: none; }
.cta-button:hover { opacity: 0.9; text-decoration: none; }

button.link { background: none; border: 0; color: var(--accent); cursor: pointer; padding: 0.25rem 0; font-family: var(--font-sans); font-size: 0.95rem; text-underline-offset: 2px; }
button.link:hover { text-decoration: underline; }

/* ── Site header (sticky) ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--background) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  max-width: 1072px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-nav { display: flex; align-items: center; gap: 1.375rem; flex-wrap: wrap; }
.site-nav a { font-size: 0.84rem; color: var(--muted-foreground); }
.site-nav a:hover { color: var(--foreground); text-decoration: none; }
.header-right { display: flex; align-items: center; gap: 0.875rem; }
.header-cta { background: var(--accent); color: #fff; font-size: 0.84rem; font-weight: 600; padding: 0.5625rem 1rem; border-radius: var(--radius); }
.header-cta:hover { opacity: 0.92; text-decoration: none; }
.site-header--focused .site-header-inner { max-width: 560px; }

/* ── Proof ticker ───────────────────────────────────────────────────────── */
.ticker { border-bottom: 1px solid var(--border); background: var(--background-soft); overflow: hidden; padding: 0.5625rem 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 46s linear infinite; }
.ticker-run { display: flex; gap: 1.75rem; align-items: center; padding-right: 1.75rem; font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted-foreground); white-space: nowrap; }

/* ── Hero + scan widget ─────────────────────────────────────────────────── */
.hero { padding: 4.875rem 1.5rem 4rem; }
.hero-inner { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.eyebrow-chip { background: var(--accent-soft); padding: 0.375rem 0.875rem; border-radius: 999px; letter-spacing: 0.1em; font-size: 0.72rem; }
.hero-h1 { margin: 1.5rem 0 0; font-size: clamp(2.5rem, 6.4vw, 4rem); font-weight: 700; letter-spacing: -0.022em; line-height: 1.04; text-wrap: balance; }
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-sub { margin: 1.375rem auto 0; max-width: 560px; font-size: 1.125rem; line-height: 1.65; color: var(--muted-foreground); text-wrap: pretty; }

.scan-widget {
  margin-top: 2.375rem;
  width: 100%;
  max-width: 560px;
  background: var(--background-soft);
  border: 1px dashed var(--separator);
  border-radius: 0.375rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.scan-widget.over { border-color: var(--accent); background: var(--accent-soft); }
.scan-primary {
  width: 100%;
  max-width: 400px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
}
.scan-primary:hover { opacity: 0.92; }
.scan-zip { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--muted-foreground); cursor: pointer; }
.scan-zip:hover { color: var(--foreground); }
.scan-hint { font-size: 0.8125rem; color: var(--text-subtle); max-width: 380px; line-height: 1.55; }
.scan-sample { background: none; border: 0; color: var(--accent); font-family: var(--font-sans); font-size: 0.84rem; font-weight: 600; cursor: pointer; text-underline-offset: 2px; }
.scan-sample:hover { text-decoration: underline; }

.hero-privacy { margin-top: 1.125rem; font-family: var(--font-mono); font-size: 0.8125rem; color: var(--good); }
.hero-meta { margin-top: 1.375rem; display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; justify-content: center; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-subtle); }

/* Section-scoped tweaks. */
.section .grid { margin-top: 2.5rem; }
.how-step-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.read-icon { width: 2.25rem; height: 2.25rem; border-radius: var(--radius); background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.9375rem; }
.note-strip { margin-top: 1.25rem; border: 1px solid var(--border); background: var(--background); border-radius: 0.375rem; padding: 1.375rem 1.625rem; display: flex; gap: 1rem; align-items: flex-start; }
.note-dot { font-family: var(--font-mono); font-size: 1rem; color: var(--text-subtle); line-height: 1.5; }
.note-text { font-size: 0.9375rem; line-height: 1.65; color: var(--muted-foreground); text-wrap: pretty; }
.note-text strong { color: var(--foreground); }

/* ── Pricing ────────────────────────────────────────────────────────────── */
.pricing-head { text-align: center; display: flex; flex-direction: column; align-items: center; }
.price-grid { margin: 2.75rem auto 0; max-width: 880px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem; align-items: stretch; }
.price-card { border: 1px solid var(--border); border-radius: 0.375rem; padding: 1.875rem; display: flex; flex-direction: column; gap: 1.125rem; background: var(--background); }
.price-card--featured { position: relative; border-color: var(--accent); }
.price-pill { top: -0.7rem; }
.price-head { display: flex; flex-direction: column; gap: 0.375rem; }
.price-name { font-size: 1.125rem; font-weight: 700; }
.price-row { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; }
.price-amt { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.price-note { font-size: 0.84rem; color: var(--text-subtle); }
.price-bullets { display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.9rem; line-height: 1.55; color: var(--text-body); }
.price-bullet { display: flex; gap: 0.625rem; }
.price-bullet .check { color: var(--good); font-weight: 600; }
.price-bullet strong { color: var(--foreground); }
.price-foot { margin-top: auto; display: flex; flex-direction: column; gap: 0.875rem; }
.price-fine-i { font-size: 0.8125rem; font-style: italic; color: var(--text-subtle); line-height: 1.55; }
.price-fine { text-align: center; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-subtle); }
.btn.btn-outline, .btn.btn-accent { display: block; }

.audit-strip { margin: 1.25rem auto 0; max-width: 880px; border: 1px solid var(--border); background: var(--background-soft); border-radius: 0.375rem; padding: 1.375rem 1.625rem; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; }
.audit-text { display: flex; flex-direction: column; gap: 0.25rem; }
.audit-price { font-family: var(--font-mono); font-size: 1.125rem; font-weight: 500; white-space: nowrap; }

.vocab { margin: 3rem auto 0; max-width: 880px; }
.vocab-grid { margin-top: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.vocab-cell { gap: 0.375rem; padding: 1.25rem 1.5rem; }
.vocab-term { font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 500; color: var(--accent); }

/* ── The human ──────────────────────────────────────────────────────────── */
.human { max-width: 900px; margin: 0 auto; display: flex; gap: 2.75rem; align-items: center; flex-wrap: wrap; }
.human-portrait { width: 220px; height: 260px; flex-shrink: 0; border-radius: 0.375rem; border: 1px solid var(--border); background: var(--surface); display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-subtle); }
.human-text { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 0.875rem; }

/* ── Evidence stats ─────────────────────────────────────────────────────── */
.evidence-grid { margin-top: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.stat-n { font-family: var(--font-mono); font-size: 2.125rem; font-weight: 500; letter-spacing: -0.02em; }

/* ── Idea cross-door ────────────────────────────────────────────────────── */
.idea-strip { max-width: 880px; margin: 0 auto; border: 1px solid var(--border); border-radius: 0.375rem; padding: 1.75rem 1.875rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.idea-text { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 0.375rem; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 1.5rem; display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.125rem 0; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-size: 1rem; font-weight: 600; line-height: 1.4; }
.faq-plus { font-family: var(--font-mono); color: var(--accent); font-size: 1.125rem; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-a { margin: 0; padding: 0 0 1.25rem; font-size: 0.9375rem; line-height: 1.7; color: var(--muted-foreground); text-wrap: pretty; }
.faq-a em { font-style: italic; }

/* ── Final CTA (inverted band — auto-swaps per theme) ───────────────────── */
.final-cta { background: var(--foreground); color: var(--background); padding: 5.5rem 1.5rem; }
.final-inner { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; }
.final-h2 { margin: 0; font-size: clamp(2rem, 5vw, 2.875rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; }
.final-h2 em { font-style: italic; color: var(--accent-on-foreground); }
.final-sub { margin: 0; font-size: 1.0625rem; line-height: 1.65; opacity: 0.72; max-width: 480px; text-wrap: pretty; }
.final-privacy { font-family: var(--font-mono); font-size: 0.78rem; opacity: 0.55; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); padding: 2.25rem 1.5rem 2.75rem; }
.footer-inner { max-width: 1072px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.footer-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-tagline { font-size: 0.8125rem; color: var(--text-subtle); }
.footer-links { display: flex; gap: 1.375rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.84rem; color: var(--muted-foreground); }
.footer-links a:hover { color: var(--foreground); text-decoration: none; }
.footer-bottom { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 1.125rem; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-subtle); }

/* ══════════ FOCUSED SHELL (scanning / results / error) ══════════════════ */
.focused { padding: 0 1.5rem 3.5rem; }
.focused-inner { max-width: 560px; margin: 0 auto; }
.error { color: var(--risk); padding: 2rem 0; }

/* Scanning — localized stage + progress bar + trust line. */
.scanning { display: flex; flex-direction: column; gap: 1rem; padding: 2.5rem 0; }
.scan-stage { margin: 0; font-size: 1.1rem; font-weight: 600; color: var(--foreground); }
.scan-bar { position: relative; width: 100%; height: 0.5rem; border-radius: 999px; background: var(--surface); overflow: hidden; }
.scan-bar-fill { height: 100%; border-radius: 999px; background: var(--accent); transition: width 0.3s ease; }
.scan-bar--indeterminate .scan-bar-fill { position: absolute; top: 0; width: 40%; animation: scan-slide 1.3s ease-in-out infinite; }
@keyframes scan-slide { 0% { left: -40%; } 100% { left: 100%; } }
.scan-note { margin: 0; font-family: var(--font-mono); font-size: 0.8rem; color: var(--success); }

/* Score card (Card 1). */
.free-digest { background: color-mix(in srgb, var(--surface) 72%, transparent); border: 1px solid var(--border-muted); border-radius: 1rem; padding: 1.75rem; margin: 2rem 0 1.25rem; animation: digest-reveal 0.45s ease both; }
@keyframes digest-reveal { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.digest-heading { margin: 0 0 1rem; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; color: var(--text-subtle); text-transform: uppercase; letter-spacing: 0.12em; }
.digest-scoreline { display: flex; align-items: center; gap: 1rem; margin: 0 0 1.25rem; }
.digest-grade { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 3.25rem; height: 3.25rem; border-radius: var(--radius); font-size: 1.9rem; font-weight: 700; line-height: 1; background: var(--accent-soft); color: var(--accent); }
.digest-grade[data-band="excellent"] { color: var(--good); background: var(--good-soft); }
.digest-grade[data-band="good"] { color: var(--watch); background: var(--watch-soft); }
.digest-grade[data-band="needs_review"] { color: var(--risk); background: var(--risk-soft); }
.digest-scorenum { display: flex; flex-direction: column; gap: 0.15rem; }
.digest-score { font-family: var(--font-mono); font-size: clamp(1.6rem, 4vw, 2rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; color: var(--foreground); }
.digest-risk { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; color: var(--muted-foreground); }
.digest-risk[data-band="excellent"] { color: var(--good); }
.digest-risk[data-band="good"] { color: var(--watch); }
.digest-risk[data-band="needs_review"] { color: var(--risk); }
.digest-lead { margin: 0; font-size: clamp(1.15rem, 2.4vw, 1.35rem); line-height: 1.4; font-weight: 600; letter-spacing: -0.01em; color: var(--foreground); }
.digest-bridge { margin: 1.25rem 0; color: var(--muted-foreground); line-height: 1.55; }

/* Membership card (Card 2). */
.member-card { position: relative; margin: 1.75rem 0 0.5rem; padding: 1.75rem; border: 1.5px solid var(--accent); border-radius: 1rem; background: var(--accent-soft); }
.member-pill { position: absolute; top: -0.7em; left: 1.5rem; display: inline-flex; align-items: center; padding: 0.3rem 0.75rem; border-radius: 999px; background: var(--accent); color: #fff; font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; line-height: 1; text-transform: uppercase; letter-spacing: 0.08em; }
.member-pricerow { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem 1rem; margin: 0.35rem 0 1.25rem; }
.member-term { font-family: var(--font-mono); font-size: 0.95rem; color: var(--muted-foreground); }
.member-price { font-size: clamp(2rem, 5vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; color: var(--foreground); }
.member-period { margin-left: 0.15rem; font-size: 0.95rem; font-weight: 500; color: var(--muted-foreground); }
.member-bullets { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.member-bullets li { position: relative; padding-left: 1.6rem; line-height: 1.45; color: var(--foreground); }
.member-bullets li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 700; }
.member-cta { display: block; width: 100%; text-align: center; padding: 0.85rem 1.25rem; border-radius: 0.6rem; color: #fff; }

/* Focused footer row — privacy trust line (left) + reset link (right). */
.app-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.footer-privacy { font-family: var(--font-mono); font-size: 0.8rem; color: var(--success); }
.footer-reset { padding: 0; font-size: 0.85rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .free-digest { animation: none; }
  .scan-bar--indeterminate .scan-bar-fill { animation: none; left: 30%; }
  .ticker-track { animation: none; }
}
