:root {
  --ink: #0a0a0b;
  --ink-2: #15151a;
  --body: #3f3f47;
  --muted: #5c5c66;
  --faint: #8a8a96;
  --line: #ebebef;
  --line-2: #dcdce2;
  --paper: #ffffff;
  --wash: #f7f7f9;
  --wash-2: #fafafb;
  --blue: #0389ff;
  --blue-2: #0264bd;
  --blue-wash: #f3f9ff;
  --green: #1f7a48;
  --green-wash: #e7f6ee;
  --amber: #b4660a;
  --amber-wash: #fdf1e1;
  --font-sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--ink); color: #fff; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 64px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}
h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}
h3 { margin-bottom: 8px; color: var(--ink-2); font-size: 17px; line-height: 1.2; }
p { color: var(--muted); line-height: 1.55; }
button, input, textarea, select { font: inherit; }

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.42; transform: scale(0.72); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.shell { width: min(1180px, calc(100vw - 48px)); margin: 0 auto; }
.narrow-shell { width: min(1080px, calc(100vw - 48px)); }
.section-grid-bg { background-image: repeating-linear-gradient(90deg, #f6f6f8 0, #f6f6f8 1px, transparent 1px, transparent 96px); }
.mono { font-family: var(--font-mono); }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.brand-icon { width: 24px; height: 24px; }
.brand-suffix { margin-left: -5px; color: var(--blue); font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav > a:not(.button) { color: var(--muted); font-size: 13.5px; font-weight: 500; }
.site-nav > a:not(.button):hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-2);
  border-radius: 0;
  background: #fff;
  color: var(--ink-2);
  font-weight: 600;
  cursor: pointer;
}
.button:hover { border-color: var(--blue); color: var(--blue-2); }
.button.primary { border-color: var(--blue); background: var(--blue); color: #fff; box-shadow: 0 12px 26px -12px rgba(3, 137, 255, 0.6); }
.button.primary:hover { background: #0274d9; color: #fff; }
.button.compact { min-height: 36px; padding: 0 15px; font-size: 13px; }
.button.large { min-height: 48px; padding: 0 24px; font-size: 15px; }
.button.xl { min-height: 52px; padding: 0 30px; font-size: 16px; }
.button.ghost { border-color: #2a2a33; background: transparent; color: #cfcfd6; }
.button.ghost:hover { border-color: #3a3a44; color: #fff; }

.hero { overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr); gap: 44px; align-items: center; padding: 60px 24px 0; }
.hero-copy { padding-bottom: 60px; }
.hero-subline { max-width: 560px; margin-bottom: 28px; font-size: 16.5px; }
.hero-actions { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; }
.eyebrow { color: var(--blue); font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-line { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; padding: 6px 11px; border: 1px solid #cce4ff; background: var(--blue-wash); color: var(--blue-2); }
.pulse-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--blue); animation: pulse 1.8s ease-in-out infinite; }
.validation-row { display: flex; align-items: center; gap: 13px; margin-top: 24px; color: var(--muted); font-size: 13.5px; }
.validation-row strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 30px; height: 30px; display: inline-grid; place-items: center; border: 2px solid #fff; border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--font-mono); font-size: 10px; font-weight: 600; }
.avatar-stack span + span { margin-left: -9px; }
.avatar-stack span:nth-child(2) { background: var(--blue); }
.avatar-stack span:nth-child(3) { background: #37373f; }

.digest-card { position: relative; margin-bottom: 60px; border: 1px solid #e4e4e9; background: #fff; box-shadow: 0 30px 70px -34px rgba(10, 10, 15, 0.4); }
.digest-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 15px; background: var(--ink); color: #e9e9ee; font-family: var(--font-mono); font-size: 11.5px; }
.digest-bar > span { display: flex; align-items: center; gap: 9px; }
.digest-bar span:last-child { color: #9a9aa6; font-size: 10.5px; }
.status-dot { width: 7px; height: 7px; border-radius: 999px; background: #1f9d55; animation: pulse 1.8s ease-in-out infinite; }
.digest-body { display: grid; gap: 12px; padding: 15px; }
.match-card { border: 1px solid #b7e3c8; background: #f6fcf8; padding: 14px; }
.match-card h2 { margin-bottom: 5px; font-size: 16.5px; letter-spacing: -0.01em; line-height: 1.25; }
.match-labels { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.tag { display: inline-flex; align-items: center; min-height: 21px; padding: 0 8px; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.tag.green { background: var(--green-wash); color: var(--green); }
.tag.amber { background: var(--amber-wash); color: var(--amber); }
.tag.blue { background: #eaf4ff; color: var(--blue-2); }
.score-list { display: grid; gap: 8px; margin: 13px 0 11px; padding: 11px 0; border-top: 1px solid #e0f0e6; border-bottom: 1px solid #e0f0e6; }
.score-list div { display: grid; grid-template-columns: 62px 1fr 26px; gap: 10px; align-items: center; color: var(--body); font-size: 11.5px; }
.score-list b { height: 7px; overflow: hidden; background: #e3ece6; }
.score-list i { display: block; height: 100%; background: var(--blue); }
.score-list .green-bar { background: #1f9d55; }
.score-list .amber-bar { background: #d97706; }
.score-list strong { color: var(--ink-2); font-family: var(--font-mono); font-size: 10.5px; text-align: right; }
.why { margin: 0; color: var(--body); font-size: 12.5px; }
.why strong { color: var(--ink-2); }
.mini-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border: 1px solid var(--line); font-size: 12.5px; font-weight: 600; }
.mini-row > span { display: flex; align-items: center; gap: 9px; min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.mini-row .tag { min-height: 18px; padding: 0 6px; font-size: 9.5px; }
.mini-row strong { font-family: var(--font-mono); font-size: 12px; white-space: nowrap; }
.source-chip { position: absolute; right: -8px; bottom: -15px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid #e4e4e9; background: #fff; box-shadow: 0 12px 28px -14px rgba(10, 10, 15, 0.35); color: var(--body); font-family: var(--font-mono); font-size: 10.5px; }
.source-chip span { width: 6px; height: 6px; border-radius: 999px; background: var(--blue); }

.ticker { border-top: 1px solid var(--line); background: var(--wash-2); overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; align-items: center; min-width: 200%; animation: marquee 34s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-right: 1px solid #ededf1; }
.ticker i { width: 6px; height: 6px; border-radius: 999px; }
.green-dot { background: var(--green); }
.amber-dot { background: var(--amber); }
.blue-dot { background: var(--blue-2); }
.ticker strong { color: var(--ink-2); font-size: 12.5px; }
.ticker em { color: var(--faint); font-size: 12px; font-style: normal; }
.ticker b { color: var(--ink); font-family: var(--font-mono); font-size: 12px; }

.sources { border-bottom: 1px solid var(--line); background: #fff; }
.sources-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 30px; padding: 22px 24px; }
.sources-row > span { color: var(--faint); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; }
.sources-row strong { display: inline-flex; align-items: baseline; gap: 8px; color: var(--ink-2); font-size: 15px; }
.sources-row small { color: var(--faint); font-family: var(--font-mono); font-size: 10.5px; font-weight: 400; }

.section { padding: 72px 0; border-bottom: 1px solid var(--line); background: #fff; scroll-margin-top: 72px; }
.section.alt { background: var(--wash); }
.section-heading { max-width: 680px; margin-bottom: 40px; }
.section-heading .eyebrow { margin-bottom: 12px; }
.section-heading p { margin-bottom: 0; font-size: 15px; }
.section-heading.wide { max-width: 760px; }
.section-heading.centered { max-width: 640px; margin: 0 auto 44px; text-align: center; }

.problem-grid, .feature-grid, .persona-grid { display: grid; gap: 14px; }
.problem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-grid, .persona-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.problem-grid article, .feature-grid article, .persona-grid article { position: relative; border: 1px solid var(--line); background: #fff; padding: 22px; }
.problem-grid article > span { position: absolute; top: 16px; right: 18px; color: var(--line-2); font-family: var(--font-mono); font-size: 12px; font-weight: 600; }
.feature-grid article > span { color: var(--blue); font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; }
.problem-grid p, .feature-grid p, .persona-grid p { margin-bottom: 0; font-size: 13.5px; }
.feature-grid h3 { margin-top: 12px; }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); }
.steps-grid article { padding: 24px 20px; border-right: 1px solid var(--line); background: #fff; }
.steps-grid article:last-child { border-right: 0; }
.steps-grid span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 16px; background: var(--ink); color: #fff; font-size: 18px; font-weight: 700; }
.steps-grid p { margin-bottom: 0; font-size: 13px; }

.dark-section { overflow: hidden; border-bottom: 1px solid #1c1c22; background-color: var(--ink); color: #e9e9ee; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 96px); }
.summary-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr); gap: 48px; align-items: center; padding: 76px 24px; }
.dark-section .eyebrow { margin-bottom: 14px; color: #3aa0ff; }
.dark-section h2 { color: #fff; }
.dark-section p { color: #a9a9b4; }
.dark-points { display: grid; gap: 12px; max-width: 460px; margin-top: 24px; }
.dark-points p { margin: 0; color: #d6d6dd; font-size: 14px; }
.dark-points span { margin-right: 12px; color: #3aa0ff; font-family: var(--font-mono); font-size: 11px; }
.dark-points strong { color: #fff; }
.model-note { margin-top: 24px; color: #6b6b78; font-family: var(--font-mono); font-size: 11px; }
.summary-card { background: #fff; color: var(--ink-2); box-shadow: 0 40px 80px -34px rgba(0,0,0,0.65); }
.summary-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.summary-card-head span { display: flex; align-items: center; gap: 8px; color: var(--blue-2); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; }
.summary-card-head i { width: 6px; height: 6px; border-radius: 999px; background: var(--blue); }
.summary-card-head b { display: inline-flex; align-items: center; min-height: 21px; padding: 0 8px; background: var(--green-wash); color: var(--green); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.summary-card-body { display: grid; gap: 16px; padding: 18px; }
.summary-card .lead { margin: 0; color: var(--ink-2); font-size: 16px; font-weight: 600; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.two-col span, .mini-heading { display: block; margin-bottom: 6px; color: var(--faint); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.two-col p { margin: 0; color: var(--body); font-size: 12.5px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 5px; }
.pill-row b { padding: 4px 7px; background: #eaf4ff; color: var(--blue-2); font-family: var(--font-mono); font-size: 10.5px; font-weight: 500; }
.summary-card ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; color: var(--body); font-size: 12.5px; }
.summary-card li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 700; }
.risk-row { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 14px; border-top: 1px solid #f0f0f3; color: var(--amber); font-family: var(--font-mono); font-size: 11px; }
.hashtag-row { display: flex; flex-wrap: wrap; gap: 5px; }
.hashtag-row span { padding: 3px 7px; border: 1px solid var(--line); color: var(--muted); font-family: var(--font-mono); font-size: 10px; }

.compare-table { border: 1px solid var(--line); overflow-x: auto; }
.compare-table > div { display: grid; grid-template-columns: minmax(180px, 1.7fr) repeat(3, minmax(130px, 1fr)); border-top: 1px solid var(--line); }
.compare-table > div:first-child { border-top: 0; }
.compare-table span, .compare-table b, .compare-table strong { display: flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 12px; border-left: 1px solid var(--line); color: var(--body); font-family: var(--font-mono); font-size: 13px; text-align: center; }
.compare-table span { justify-content: flex-start; border-left: 0; color: var(--ink-2); font-family: var(--font-sans); font-weight: 500; text-align: left; }
.compare-table b:nth-child(2), .compare-head strong:nth-child(2) { background: var(--blue-wash); border-left-color: #d6e9ff; font-weight: 700; }
.compare-head span { color: var(--faint); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.compare-head strong:nth-child(2) { background: var(--blue); color: #fff; border-color: var(--blue); }
.compare-head small { display: block; margin-top: 2px; color: var(--faint); font-family: var(--font-mono); font-size: 9.5px; font-weight: 400; }
.yes { color: var(--green) !important; }
.no { color: #bd2f2f !important; }

.persona-grid article { display: flex; flex-direction: column; gap: 12px; padding: 24px; }
.persona-grid article > span { align-self: flex-start; padding: 4px 9px; background: #eaf4ff; color: var(--blue-2); font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.persona-grid h3, .persona-grid p { margin: 0; }
.persona-grid p { flex: 1; }
.persona-grid strong { padding-top: 14px; border-top: 1px solid #f0f0f3; color: var(--ink-2); font-family: var(--font-mono); font-size: 13px; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.pricing-grid article { position: relative; display: flex; flex-direction: column; gap: 14px; min-height: 340px; padding: 24px 20px; border: 1px solid var(--line); background: #fff; }
.pricing-grid article.popular { border-color: var(--blue); box-shadow: 0 26px 52px -28px rgba(3, 137, 255, 0.5); }
.pricing-grid article.popular > span { position: absolute; top: -1px; right: -1px; padding: 5px 9px; background: var(--blue); color: #fff; font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.pricing-grid h3 { margin: 0; }
.pricing-grid p { margin: 0; color: var(--faint); font-size: 12.5px; }
.pricing-grid strong { display: flex; align-items: baseline; gap: 3px; color: var(--ink); font-size: 34px; letter-spacing: -0.03em; }
.pricing-grid small { color: var(--faint); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0; }
.pricing-grid ul { display: grid; gap: 8px; flex: 1; margin: 0; padding: 0; list-style: none; color: var(--body); font-size: 13px; }
.pricing-grid li::before { content: "✓"; margin-right: 8px; color: var(--blue); font-weight: 700; }
.pricing-grid .button { width: 100%; }

.cta-section { border-bottom: 1px solid #1c1c22; background-color: var(--ink); color: #fff; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 96px); }
.cta-copy { max-width: 760px; padding: 84px 24px; text-align: center; }
.cta-copy .badge-line { border-color: #1c3a55; background: rgba(3, 137, 255, 0.08); color: #3aa0ff; }
.cta-copy h2 { color: #fff; font-size: clamp(32px, 4vw, 44px); }
.cta-copy p { max-width: 560px; margin-left: auto; margin-right: auto; color: #a9a9b4; font-size: 16px; }
.center-actions { justify-content: center; }
.fine-print { margin-top: 26px !important; color: #6b6b78 !important; font-family: var(--font-mono); font-size: 10.5px !important; letter-spacing: 0.04em; }
.fine-print strong { color: #9a9aa6; }

.faq-shell { max-width: 820px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 16px; padding: 19px 4px; color: var(--ink-2); font-size: 16.5px; font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--blue); font-family: var(--font-mono); font-size: 19px; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list p { max-width: 700px; margin: 0; padding: 0 4px 22px; font-size: 14px; }

.site-footer { background: var(--ink); color: #9a9aa6; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.7fr)); gap: 32px; padding: 48px 24px; }
.footer-brand { margin-bottom: 14px; color: #fff; }
.site-footer p { max-width: 320px; margin: 0; color: var(--faint); font-size: 12.5px; }
.site-footer h2 { margin: 0 0 12px; color: #5b5b66; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer nav, .site-footer .footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.site-footer a, .site-footer span { color: #9a9aa6; font-size: 13px; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1c1c22; }
.footer-bottom .shell { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 16px 24px; color: #6b6b78; font-family: var(--font-mono); font-size: 10.5px; }

/* ---- FilingRadar additions ---------------------------------------- */
.statband { border-bottom: 1px solid var(--line); background: #fff; }
.statband-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.statband article { padding: 30px 28px; border-left: 1px solid var(--line); }
.statband article:first-child { border-left: 0; }
.statband b { display: block; color: var(--ink); font-size: clamp(34px, 4.4vw, 52px); font-weight: 700; letter-spacing: -0.045em; line-height: 1; font-variant-numeric: tabular-nums; }
.statband b em { color: var(--blue); font-style: normal; }
.statband span { display: block; margin-top: 10px; color: var(--muted); font-size: 13.5px; max-width: 32ch; }
.statband small { display: block; margin-bottom: 12px; color: var(--faint); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.07em; text-transform: uppercase; }

.alert-quote { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; max-width: 760px; margin: 0 auto; padding: 28px 30px; border: 1px solid var(--line-2); background: #fff; box-shadow: 0 30px 70px -40px rgba(10, 10, 15, 0.4); }
.alert-quote .mark { width: 44px; height: 44px; display: grid; place-items: center; background: var(--ink); color: #fff; font-family: var(--font-mono); font-size: 11px; font-weight: 600; }
.alert-quote .ticker-tag { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 11px; }
.alert-quote .ticker-tag b { color: var(--ink); font-family: var(--font-mono); font-size: 13px; }
.alert-quote q { display: block; color: var(--ink-2); font-size: 19px; font-weight: 600; line-height: 1.4; letter-spacing: -0.01em; quotes: none; }
.alert-quote q::before, .alert-quote q::after { content: ""; }
.alert-quote .why-line { margin: 12px 0 0; color: var(--body); font-size: 13.5px; }
.alert-quote .why-line strong { color: var(--ink-2); }
.alert-quote .src { margin-top: 14px; color: var(--faint); font-family: var(--font-mono); font-size: 11px; }

.signal-legend { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; }
.signal-legend span { display: inline-flex; align-items: center; gap: 8px; color: var(--body); font-size: 13px; }
.signal-legend span b { color: var(--ink-2); }
.signal-legend i { width: 9px; height: 9px; border-radius: 999px; }

@media (max-width: 820px) {
  .statband-row { grid-template-columns: 1fr; }
  .statband article { border-left: 0; border-top: 1px solid var(--line); }
  .statband article:first-child { border-top: 0; }
  .alert-quote { grid-template-columns: 1fr; padding: 22px; }
}

@media (max-width: 1080px) {
  .hero-grid, .summary-grid { grid-template-columns: 1fr; }
  .digest-card { margin-bottom: 60px; }
  .steps-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid article:nth-child(2) { border-right: 0; }
  .steps-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; padding: 14px 16px; }
  .site-nav { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .site-nav > a:not(.button) { display: inline-flex; align-items: center; min-height: 34px; padding: 0 10px; border: 1px solid var(--line); background: var(--wash-2); }
  .site-nav .button { grid-column: 1 / -1; width: 100%; }
  .shell, .narrow-shell { width: min(100% - 24px, 1180px); }
  .hero-grid, .summary-grid { padding-left: 0; padding-right: 0; }
  .hero-copy { padding-bottom: 36px; }
  .digest-card { margin-bottom: 44px; }
  .source-chip { right: 8px; bottom: -18px; }
  .problem-grid, .feature-grid, .persona-grid, .pricing-grid, .two-col { grid-template-columns: 1fr; }
  .steps-grid { display: block; }
  .steps-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .steps-grid article:last-child { border-bottom: 0; }
  .compare-table > div { min-width: 680px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  h1 { font-size: 38px; }
  .hero-grid { gap: 20px; padding-top: 42px; }
  .section { padding: 56px 0; }
  .hero-actions .button { width: 100%; }
  .validation-row { align-items: flex-start; }
  .match-labels, .digest-bar, .mini-row, .summary-card-head { align-items: flex-start; flex-direction: column; }
  .score-list div { grid-template-columns: 58px 1fr 24px; }
  .ticker-track { animation-duration: 48s; }
  .sources-row { align-items: flex-start; justify-content: flex-start; flex-direction: column; }
  .cta-copy { padding: 68px 0; }
}
