/* =============================================================
   SAELA — Shared stylesheet
   Used by: saela-landing.html, saela-about.html, saela-insights.html,
            saela-articles.html, saela-delete-account.html
   Type: Sintony (titles, no italics) + Poppins (body)
   ============================================================= */

:root {
  --bg: #f6ede2;
  --bg-soft: #faf4ea;
  --bg-warm: #f8efe1;
  --bg-cool: #f3e9dc;
  --bg-deep: #ecdfcb;
  --surface: #ffffff;
  --ink: #14110f;
  --ink-soft: #4a3f37;
  --ink-mute: #8a7a6c;
  --line: rgba(20, 17, 15, 0.08);
  --line-strong: rgba(20, 17, 15, 0.14);
  --accent: #c25a28;
  --accent-deep: #9a4419;
  --accent-soft: #e8a274;
  --accent-faint: rgba(194, 90, 40, 0.06);
  --black: #0a0908;

  --display: "Sintony", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1200px;
  --max-narrow: 1040px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(80px, 11vw, 152px);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
em, i { font-style: normal; }
::selection { background: var(--accent); color: #fff; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--max-narrow); }

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.h-display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  color: var(--ink);
}
.h-section {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.1;
  font-size: clamp(34px, 4.6vw, 54px);
  margin: 0 0 24px;
}
.accent-text { color: var(--accent-deep); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.btn:hover { transform: translateY(-1px); background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--ink); color: #ffffff; border-color: var(--ink); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 237, 226, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 120ms ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.btn,
.nav-links a.btn:hover { color: #ffffff; }

/* ============== HERO ============== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(ellipse 60% 70% at 92% 5%, #fbe6cf 0%, transparent 55%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy { max-width: 580px; }
.hero h1 { font-size: clamp(36px, 5.6vw, 72px); margin: 36px 0 22px; line-height: 1.1; }
.hero h1.hero-h1-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero h1 .hero-h1-small {
  font-size: clamp(22px, 3.4vw, 40px);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.hero h1 .hero-h1-large {
  font-size: clamp(44px, 7.4vw, 96px);
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}
.hero-sub {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  font-style: normal;
  color: var(--accent-deep);
  letter-spacing: -0.012em;
  line-height: 1.2;
  margin: 0 0 28px;
  max-width: 24ch;
}
.hero-mech {
  font-size: clamp(16px, 1.2vw, 17.5px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 0 36px;
  font-weight: 400;
}
.hero-mech strong { color: var(--ink); font-weight: 500; }

/* Inner-page hero (smaller, no visual) */
.page-hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero .s-mark {
  width: clamp(320px, 40vw, 560px);
  right: -10%;
  top: -20%;
  opacity: 0.04;
  transform: rotate(-6deg);
  z-index: 1;
  position: absolute;
}
.page-hero .s-mark img { width: 100%; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { display: inline-block; margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 0 0 18px;
  max-width: 22ch;
}
.page-hero .lede {
  font-size: clamp(16.5px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}

/* Email form */
.signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: var(--surface);
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(20, 17, 15, 0.04);
  max-width: 520px;
}
.signup-form input {
  border: 0;
  background: transparent;
  padding: 13px 18px;
  font: inherit;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  min-width: 0;
}
.signup-form input::placeholder { color: var(--ink-mute); }
.signup-form input:focus { outline: none; }
.signup-form button {
  border-radius: 999px;
  padding: 13px 26px;
  background: var(--ink);
  color: #ffffff;
  border: 0;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 140ms ease;
}
.signup-form button:hover { background: var(--accent-deep); }
.form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.5;
  max-width: 48ch;
}
.form-note svg { width: 13px; height: 13px; flex: none; margin-top: 3px; }

/* ============== FORM SUCCESS / ERROR STATES ============== */
.signup-form.is-success {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  min-height: 56px;
  background: var(--surface);
}
.form-success-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-deep);
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
}
.form-success-inner svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--accent);
}
/* Dark surfaces (footer's app-download form) */
.footer-app .signup-form.is-success { background: rgba(246, 237, 226, 0.08); }
.footer-app .signup-form.is-success .form-success-inner { color: var(--accent-soft); }
.footer-app .signup-form.is-success .form-success-inner svg { color: var(--accent-soft); }
.form-error {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #b94545;
  max-width: 520px;
}
.footer-app .form-error { color: #f0a4a4; }

.hero-secondary {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.hero-secondary a {
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
}
.hero-secondary a:hover { border-bottom-color: var(--accent); color: var(--accent); }

/* Hero phone shell */
.hero-product { position: relative; display: flex; align-items: center; justify-content: center; }
.phone {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 19.5;
  background: #fff;
  border-radius: 40px;
  border: 1px solid rgba(20, 17, 15, 0.08);
  box-shadow:
    0 24px 60px rgba(20, 17, 15, 0.10),
    0 6px 18px rgba(20, 17, 15, 0.04);
  overflow: hidden;
  position: relative;
}
.phone video, .phone img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phone-notch { display: none; }

/* S watermark */
.s-mark { position: absolute; pointer-events: none; user-select: none; }
.s-mark img { width: 100%; height: auto; display: block; }
.hero .s-mark {
  width: clamp(360px, 46vw, 620px);
  right: -12%;
  top: -8%;
  opacity: 0.05;
  transform: rotate(-6deg);
  z-index: 1;
}

/* ============== TRUST STRIP (rating + press) ============== */
.trust {
  padding: clamp(28px, 3.5vw, 44px) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}
.trust-label {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.78;
}
.press-mark {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  white-space: nowrap;
  filter: grayscale(100%);
}
.press-mark small {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2px;
}
.trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
}
.trust-rating .stars { color: var(--accent); font-size: 14px; letter-spacing: 1.5px; }
.trust-rating strong { color: var(--ink); font-weight: 700; }
@media (max-width: 980px) {
  .trust-inner { grid-template-columns: 1fr; gap: 14px; text-align: center; justify-items: center; }
  .trust-logos { justify-content: center; }
}

/* ============== PROMISE / MECHANISM ============== */
.promise { position: relative; overflow: hidden; padding: var(--section-pad) 0; background: var(--bg); }
.promise .s-mark { width: 50vw; max-width: 600px; left: -14%; bottom: -30%; opacity: 0.04; transform: rotate(8deg); }
.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.promise h2 { max-width: 12ch; margin-bottom: 28px; }
.promise-body p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-weight: 400;
}
.promise-body p strong { color: var(--ink); font-weight: 500; }
.promise-visual { position: relative; display: flex; justify-content: center; }
.promise-visual .phone { max-width: 280px; }

/* ============== COMPETITIVE ROW ============== */
.compete {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.compete-quote {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.012em;
  margin: 0;
}
.compete-quote p {
  margin: 0 0 14px;
  max-width: none;
}
.compete-quote p:last-child { margin-bottom: 0; }
.compete-quote .accent-text { font-weight: 700; color: var(--accent-deep); }

/* ============== PERSONAS ============== */
.personas { padding: var(--section-pad) 0; background: var(--bg-warm); }
.personas-head { max-width: 660px; margin-bottom: 56px; }
.personas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.persona-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.persona-card .age {
  font-family: var(--body);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.persona-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.persona-card .quote {
  font-family: var(--display);
  font-size: 16.5px;
  font-weight: 400;
  color: var(--accent-deep);
  line-height: 1.4;
  margin: 0;
}
.persona-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ============== SECTION HEAD (shared) ============== */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { margin: 0; max-width: 22ch; }
.section-head p { margin: 0; max-width: 46ch; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.see-all {
  font-size: 13.5px;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  color: var(--accent);
}
.see-all:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

/* ============== INSIGHTS (split layout: head left, card right) ============== */
.insights { padding: var(--section-pad) 0; background: var(--bg-cool); border-top: 1px solid var(--line); }
.insights-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.insights-split .lede { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin-top: 20px; max-width: 40ch; }
.insights-split h2 { margin-bottom: 0; }
@media (max-width: 980px) {
  .insights-split { grid-template-columns: 1fr; gap: 32px; }
}
.feature-insight {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 48px);
  text-align: left;
}
.feature-insight .tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-faint);
  color: var(--accent-deep);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-weight: 500;
}
.feature-insight h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin: 0 0 16px;
}
.feature-insight p {
  color: var(--ink-soft);
  margin: 0 0 28px;
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 60ch;
}

/* ============== EMAIL CAPTURE BANNER ============== */
.capture-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.capture-banner .s-mark { width: 40vw; max-width: 500px; right: -10%; top: -25%; opacity: 0.05; transform: rotate(-12deg); }
.capture-banner .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.capture-banner h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0;
  max-width: 22ch;
}
.capture-banner p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 48ch;
  line-height: 1.6;
}
.capture-banner .signup-form { width: 460px; max-width: 100%; }

/* ============== ARTICLES ============== */
.articles { padding: var(--section-pad) 0; background: var(--bg); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20, 17, 15, 0.05); border-color: var(--line-strong); }
.article-card-body { padding: 28px 26px 28px; display: flex; flex-direction: column; flex: 1; min-height: 220px; }
.article-card-body .tag {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}
.article-card-body h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--ink);
}
.article-card-body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 14px; }
.article-card-body .read { font-size: 13px; color: var(--accent); font-weight: 500; margin-top: auto; }

/* Filter chips for index pages */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 140ms ease;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============== REVIEWS ============== */
.reviews { padding: var(--section-pad) 0; background: var(--bg-warm); border-top: 1px solid var(--line); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-quote {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.review-attrib { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}
.review-attrib .name { font-size: 14px; font-weight: 500; color: var(--ink); }
.review-attrib .meta { font-size: 12.5px; color: var(--ink-mute); }
.reviews-foot { margin-top: 36px; text-align: center; font-size: 13px; color: var(--ink-mute); }

/* ============== INSIGHTS REPORT (long-form detail page) ============== */
.report { padding: clamp(40px, 5vw, 64px) 0 var(--section-pad); background: var(--bg-soft); }
.report-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
}
.report-toc {
  position: sticky;
  top: 92px;
  font-size: 13.5px;
  line-height: 1.6;
}
.report-toc h4 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 14px;
}
.report-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.report-toc ol li {
  counter-increment: toc;
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
}
.report-toc ol li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-mute);
}
.report-toc a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 120ms ease, border-color 120ms ease;
}
.report-toc a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.report-body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 72px);
}
.report-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px 0;
  margin: 24px 0 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.report-meta div .label {
  display: block;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.report-meta div .value { font-size: 14px; color: var(--ink); font-weight: 500; }
.report-body section { margin-bottom: 56px; scroll-margin-top: 88px; }
.report-body section:last-of-type { margin-bottom: 0; }
.report-body h2.report-section-title {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0 0 18px;
}
.report-body h3.report-finding-title {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin: 0 0 16px;
}
.report-body p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.report-body p strong { color: var(--ink); font-weight: 600; }
.report-body .section-marker {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.stat-callout {
  background: var(--bg-warm);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  padding: 24px 28px;
  margin: 28px 0;
}
.stat-callout .num {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
  line-height: 1;
  margin: 0 0 8px;
}
.stat-callout .desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.findings-list { display: grid; gap: 16px; counter-reset: finding; margin: 24px 0; }
.finding-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 20px 22px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  align-items: start;
}
.finding-item .num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.finding-item p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.figure {
  margin: 28px 0;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.figure .figure-label {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}
.figure .figure-caption {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.figure .figure-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.bar-chart { display: grid; gap: 8px; }
.bar-row {
  display: grid;
  grid-template-columns: 130px 1fr 56px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}
.bar-row .label { color: var(--ink); font-weight: 500; }
.bar-row .bar { height: 14px; background: var(--bg-deep); border-radius: 7px; overflow: hidden; }
.bar-row .bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent-soft), var(--accent)); border-radius: 7px; }
.bar-row .value { color: var(--ink-soft); font-weight: 500; text-align: right; font-size: 12.5px; }

.report-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13.5px;
}
.report-table th, .report-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.report-table th {
  background: var(--bg-warm);
  font-family: var(--body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.report-table td { color: var(--ink-soft); line-height: 1.5; }
.report-table td strong { color: var(--ink); }

.balance-figure {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
}
.balance-side {
  text-align: center;
  padding: 18px 14px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.balance-side .label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}
.balance-side h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.balance-side p { font-size: 12.5px; margin: 0; color: var(--ink-soft); line-height: 1.5; }
.balance-center {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-deep);
  text-align: center;
  white-space: nowrap;
  padding: 0 8px;
}

.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.quote-grid blockquote {
  margin: 0;
  padding: 16px 18px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-family: var(--display);
  font-size: 14.5px;
  font-style: normal;
  line-height: 1.5;
  color: var(--ink);
}

.report-references { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.report-references h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.012em;
  margin: 0 0 18px;
}
.report-references p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 22px;
  text-indent: -22px;
}
.report-about {
  margin-top: 56px;
  padding: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius);
}
.report-about h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
}
.report-about p { font-size: 14.5px; line-height: 1.65; }

@media (max-width: 980px) {
  .report-grid { grid-template-columns: 1fr; }
  .report-toc { position: relative; top: auto; padding: 16px 18px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); }
  .report-meta { grid-template-columns: repeat(2, 1fr); }
  .balance-figure { grid-template-columns: 1fr; }
  .balance-center { padding: 12px 0; }
  .quote-grid { grid-template-columns: 1fr; }
}

/* ============== ARTICLE DETAIL PAGES ============== */
.article-hero {
  padding: clamp(48px, 6vw, 72px) 0 clamp(36px, 4vw, 48px);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.article-hero .container { position: relative; z-index: 2; max-width: 880px; }
.article-hero .crumb {
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.article-hero .crumb a { color: var(--accent); border-bottom: 1px solid transparent; padding-bottom: 1px; }
.article-hero .crumb a:hover { border-bottom-color: var(--accent); }
.article-hero .tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent-faint);
  color: var(--accent-deep);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.article-hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 22px;
}
.article-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
  flex-wrap: wrap;
}
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-mute); }
.article-image {
  margin: 0 auto;
  max-width: 880px;
  padding: 0 var(--gutter);
}
.article-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
  background: var(--bg-warm);
}
.article-section { padding: clamp(40px, 5vw, 64px) 0 var(--section-pad); background: var(--bg); }
.article-content {
  max-width: 720px;
  margin: 0 auto;
}
.article-content p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.article-content p strong { color: var(--ink); font-weight: 600; }
.article-content p em { font-style: italic; color: var(--ink); }
.article-content h2 {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 44px 0 18px;
  color: var(--ink);
}
.article-content h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin: 36px 0 14px;
  color: var(--ink);
}
.article-content ul, .article-content ol {
  padding-left: 24px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.75;
}
.article-content ul li, .article-content ol li { margin-bottom: 10px; }
.article-content a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.article-content a:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }
.article-content blockquote {
  margin: 28px 0;
  padding: 20px 26px;
  border-left: 3px solid var(--accent);
  background: var(--bg-warm);
  border-radius: 4px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}
.article-disclaimer {
  margin-top: 40px;
  padding: 22px 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-mute);
}
.article-sources {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article-sources h4 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 12px;
}
.article-sources p { font-size: 13.5px; line-height: 1.65; margin-bottom: 8px; word-break: break-word; }
.article-tags {
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.related-posts {
  padding: var(--section-pad) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.related-posts .section-head { margin-bottom: 32px; }

/* ============== LEGAL PAGES ============== */
.legal { padding: clamp(48px, 6vw, 80px) 0 var(--section-pad); background: var(--bg-soft); }
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
}
.legal-body .updated {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
}
.legal-body h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin: 36px 0 14px;
  color: var(--ink);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 22px 0 8px;
  color: var(--ink);
}
.legal-body p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 14px; }
.legal-body ul { padding-left: 22px; margin: 0 0 16px; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.legal-body a:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }
.legal-callout {
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}

/* ============== ABOUT / FOUNDER ============== */
.about { padding: var(--section-pad) 0; background: var(--bg); position: relative; overflow: hidden; }
.about .s-mark { width: 60vw; max-width: 720px; right: -18%; top: 0%; opacity: 0.04; transform: rotate(4deg); }
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-portrait::after {
  content: "Maggie Lusk · Founder & CEO of Saela";
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  font-weight: 500;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-body h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 16px 0 28px;
}
.about-body p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 18px; }
.about-quote {
  margin: 36px 0 28px;
  padding: 22px 28px;
  border-left: 3px solid var(--accent);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--ink);
  background: rgba(255,255,255,0.5);
  border-radius: 4px;
}
.about-sig { font-family: var(--display); font-size: 15.5px; color: var(--ink); font-weight: 500; }

/* ============== VALUES (about page grid) ============== */
.values { padding: var(--section-pad) 0; background: var(--bg-soft); border-top: 1px solid var(--line); }
.values-head { max-width: 640px; margin-bottom: 56px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value-card .num {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
}
.value-card h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.22;
  margin: 0;
}
.value-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* ============== DELETE ACCOUNT FORM ============== */
.delete-page { padding: clamp(48px, 7vw, 96px) 0 var(--section-pad); background: var(--bg); }
.delete-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.delete-info p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 16px;
}
.delete-info ul {
  margin: 0 0 24px;
  padding: 0 0 0 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.delete-info ul li { margin-bottom: 8px; }
.delete-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
}
.delete-form h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.012em;
  margin: 0 0 16px;
}
.delete-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.delete-form label {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.delete-form input,
.delete-form textarea {
  font-family: var(--body);
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink);
  resize: vertical;
}
.delete-form input:focus,
.delete-form textarea:focus { outline: none; border-color: var(--ink); background: #fff; }
.delete-form .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 22px;
}
.delete-form .check input { margin-top: 3px; flex: none; }
.delete-form button {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 140ms ease;
}
.delete-form button:hover { background: var(--accent-deep); }

/* ============== FOOTER ============== */
.footer {
  background: var(--black);
  color: #f6ede2;
  padding: clamp(64px, 8vw, 96px) 0 32px;
  position: relative;
  overflow: hidden;
}
.footer .s-mark {
  width: 80vw;
  max-width: 1000px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -55%;
  opacity: 0.05;
}
.footer .s-mark img { filter: invert(1); }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(246, 237, 226, 0.12);
  position: relative;
  z-index: 2;
}
.footer-cta h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #f6ede2;
  max-width: 22ch;
}
.footer-cta h2 em {
  display: block;
  font-style: normal;
  color: var(--accent);
  margin-top: 6px;
}
.footer-cta p { color: rgba(246, 237, 226, 0.7); font-size: 14.5px; margin: 0 0 24px; max-width: 44ch; line-height: 1.6; }
.footer-app { display: flex; flex-direction: column; gap: 18px; }
.footer-app .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 237, 226, 0.55);
  font-weight: 500;
}
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(246, 237, 226, 0.08);
  border: 1px solid rgba(246, 237, 226, 0.18);
  color: #f6ede2;
  font-size: 14px;
  transition: background 140ms ease;
}
.app-btn:hover { background: rgba(246, 237, 226, 0.14); }
.app-btn small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 237, 226, 0.6);
  margin-bottom: 2px;
  font-weight: 500;
}
.app-btn strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.footer-app .signup-form {
  background: rgba(246, 237, 226, 0.06);
  border-color: rgba(246, 237, 226, 0.18);
  box-shadow: none;
}
.footer-app .signup-form input { color: #fff; }
.footer-app .signup-form input::placeholder { color: rgba(246, 237, 226, 0.5); }
.footer-app .signup-form button { background: var(--accent); color: #fff; }
.footer-app .signup-form button:hover { background: var(--accent-deep); }
.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(246, 237, 226, 0.55);
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a:hover { color: #f6ede2; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-product { order: -1; max-width: 300px; margin: 0 auto; }
  .promise-grid { grid-template-columns: 1fr; gap: 32px; }
  .promise-visual { display: flex; }
  .promise-visual .phone { max-width: 240px; }
  .personas-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .capture-banner .container { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .delete-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .nav-links a:not(.btn) { display: none; }
  .signup-form { grid-template-columns: 1fr; border-radius: 16px; padding: 10px; }
  .signup-form input { padding: 12px 14px; }
  .signup-form button { padding: 14px; border-radius: 10px; }
  .articles-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ============== MOBILE FULL OVERHAUL ============== */
/* Block horizontal overflow without breaking position:sticky on the nav.
   `overflow-x: clip` does not create a scroll container the way `hidden` does. */
html, body { max-width: 100%; overflow-x: clip; }
img, video, svg { max-width: 100%; }
/* When clicking an in-page anchor (e.g. #signup), leave room for the sticky nav. */
section[id], [id] { scroll-margin-top: 84px; }

@media (max-width: 980px) {
  :root { --section-pad: clamp(56px, 12vw, 88px); }
  .hero h1 { font-size: clamp(38px, 9vw, 64px); line-height: 1.05; }
  .hero-sub { font-size: clamp(18px, 4.6vw, 24px); max-width: 28ch; }
  .compete-quote { font-size: clamp(20px, 4.6vw, 28px); }
  .article-hero h1 { font-size: clamp(28px, 6.5vw, 44px); }
  .page-hero h1 { font-size: clamp(32px, 7.5vw, 56px); }
  .h-section { font-size: clamp(28px, 6vw, 44px); }
  .capture-banner h2 { font-size: clamp(24px, 5.5vw, 36px); }
  .footer-cta h2 { font-size: clamp(24px, 5.5vw, 32px); }
  .feature-insight { padding: clamp(28px, 5vw, 40px); }
  .feature-insight h3 { font-size: clamp(22px, 5.5vw, 30px); }
  .legal-body { padding: clamp(28px, 5vw, 44px); }
  .report-body { padding: clamp(24px, 5vw, 40px); }
  .report-meta { grid-template-columns: 1fr 1fr; gap: 16px; padding: 16px 0; }
  .article-content p, .article-content ul, .article-content ol { font-size: 16px; line-height: 1.7; }
  .promise h2 { max-width: none; }
  .about-portrait { max-width: 320px; margin: 0 auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .insights-split { gap: 24px; }
  .review-card { padding: 24px 22px; }
  .persona-card { padding: 24px 22px; }
  .article-image { padding: 0 var(--gutter); }
  .nav-inner { gap: 16px; }
  .brand span { display: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: clamp(48px, 14vw, 72px); --gutter: 18px; }
  body { font-size: 15px; }
  .hero { padding-top: 40px; padding-bottom: 32px; }
  .hero h1 { font-size: clamp(34px, 10vw, 48px); margin: 14px 0 12px; }
  .hero-sub { font-size: 18px; margin-bottom: 22px; }
  .hero-mech { font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
  .hero-product { max-width: 240px; }
  .phone { max-width: 240px; border-radius: 32px; }
  .phone-notch { width: 80px; height: 22px; }
  .eyebrow { font-size: 11px; letter-spacing: 0.14em; }
  .h-section, .h-display { letter-spacing: -0.02em; }
  .h-display { font-size: clamp(40px, 11vw, 56px); }
  .h-section { font-size: clamp(26px, 7vw, 36px); }
  .compete-quote { font-size: 20px; line-height: 1.3; }
  .trust { padding: 22px 0; }
  .trust-inner { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
  .trust-logos { gap: 18px; row-gap: 12px; }
  .press-mark { font-size: 14px; }
  .article-hero { padding: 36px 0 28px; }
  .article-hero h1 { font-size: clamp(26px, 7vw, 36px); line-height: 1.15; }
  .page-hero { padding: 40px 0 32px; }
  .page-hero h1 { font-size: clamp(30px, 8.5vw, 44px); }
  .page-hero .lede { font-size: 15.5px; }
  .feature-insight { padding: 24px 22px; }
  .feature-insight h3 { font-size: 22px; line-height: 1.25; }
  .capture-banner { padding: 56px 0; }
  .capture-banner h2 { font-size: 24px; }
  .capture-banner p { font-size: 14.5px; }
  .capture-banner .signup-form { width: 100%; }
  .footer-top { padding-bottom: 36px; }
  .footer-cta h2 { font-size: 24px; }
  .footer-cta p { font-size: 14px; }
  .app-buttons { gap: 10px; }
  .app-btn { flex: 1; min-width: 140px; }
  .legal-body { padding: 22px 18px; }
  .legal-body h2 { font-size: 19px; margin-top: 28px; }
  .legal-body h3 { font-size: 16px; }
  .legal-body p, .legal-body li { font-size: 14.5px; line-height: 1.65; }
  .report-body { padding: 22px 18px; }
  .report-toc { font-size: 13px; padding: 14px 16px; }
  .report-toc ol li { padding-left: 20px; }
  .report-meta { grid-template-columns: 1fr; gap: 12px; padding: 14px 0; margin-bottom: 28px; }
  .report-body section { margin-bottom: 40px; }
  .report-body h2.report-section-title { font-size: 22px; }
  .report-body h3.report-finding-title { font-size: 18px; }
  .report-body p { font-size: 14.5px; line-height: 1.7; }
  .stat-callout { padding: 18px 20px; }
  .stat-callout .num { font-size: 36px; }
  .finding-item { grid-template-columns: 40px 1fr; padding: 16px 18px; gap: 12px; }
  .finding-item .num { font-size: 22px; }
  .figure { padding: 18px 16px; }
  .figure .figure-caption { font-size: 14.5px; }
  .bar-row { grid-template-columns: 90px 1fr 44px; gap: 8px; font-size: 12px; }
  .bar-row .label { font-size: 12px; }
  .bar-row .value { font-size: 11.5px; }
  .report-table { font-size: 12.5px; }
  .report-table th, .report-table td { padding: 9px 10px; }
  .balance-figure { gap: 12px; }
  .balance-side { padding: 14px 12px; }
  .quote-grid { gap: 10px; }
  .quote-grid blockquote { font-size: 13.5px; padding: 14px 16px; }
  .article-image { padding: 0 18px; }
  .article-content p, .article-content ul, .article-content ol { font-size: 15.5px; line-height: 1.7; }
  .article-content h2 { font-size: 22px; margin: 36px 0 14px; }
  .article-content h3 { font-size: 18px; margin: 28px 0 10px; }
  .article-content blockquote { padding: 14px 18px; font-size: 16px; }
  .article-disclaimer, .article-sources { padding: 18px 16px; font-size: 13px; }
  .reviews-foot { font-size: 12.5px; }
  .delete-form { padding: 22px 20px; }
  .about { padding: 64px 0; }
  .nav-inner { height: 60px; gap: 10px; }
  .brand { font-size: 19px; gap: 8px; }
  .brand-mark { width: 26px; height: 26px; }
  .brand span { display: inline; }
  .nav-links a.btn { padding: 8px 14px; font-size: 12.5px; }
  .form-note { font-size: 12px; }
  .hero-secondary { font-size: 12.5px; flex-wrap: wrap; }
  .compete { padding: 36px 0; }
}
