:root {
  --ink: #101615;
  --ink-2: #1a2220;
  --panel: #f3f6f1;
  --paper: #fbfcfa;
  --line: #d4dcd4;
  --muted: #667069;
  --lime: #c9ff45;
  --lime-strong: #aee91f;
  --blue: #2949ff;
  --red: #c93a32;
  --amber: #b16b00;
  --green: #178250;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(16, 22, 21, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 999;
  background: var(--lime); color: var(--ink); padding: .75rem 1rem; border-radius: 8px; font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.topbar {
  min-height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: var(--ink); color: white;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: sticky; top: 0; z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; color: white; text-decoration: none; font-weight: 900; letter-spacing: -.04em; font-size: 1.08rem; }
.brand > span > span { color: var(--lime); }
.brand-mark { width: 30px; height: 30px; fill: none; stroke: var(--lime); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a { color: #c8d0ca; text-decoration: none; font-size: .78rem; font-weight: 750; padding: .55rem .7rem; border-radius: 9px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: white; background: rgba(255,255,255,.08); }
.top-actions { display: flex; align-items: center; gap: .7rem; }
.privacy-pill { display: inline-flex; align-items: center; gap: .5rem; color: #c8d0ca; font-size: .8rem; font-weight: 650; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(201,255,69,.12); }
.icon-button { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: white; border-radius: 12px; }
.icon-button:hover { background: rgba(255,255,255,.12); }
.icon-button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.app-shell { width: min(1380px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(2rem, 5vw, 4.5rem) 0 5rem; }
.intro { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: end; margin-bottom: 2rem; }
.eyebrow { color: var(--blue); font-size: .78rem; line-height: 1; letter-spacing: .16em; font-weight: 900; margin: 0 0 .7rem; }
.intro h1 { font-size: clamp(2.35rem, 6vw, 5rem); line-height: .96; letter-spacing: -.065em; max-width: 850px; margin: 0; }
.intro > div > p:last-child { color: var(--muted); max-width: 700px; font-size: clamp(1rem, 1.5vw, 1.15rem); margin: 1.2rem 0 0; }
.trust-note { border-left: 3px solid var(--lime-strong); padding: .25rem 0 .25rem 1rem; display: grid; color: var(--muted); font-size: .84rem; min-width: 210px; }
.trust-note strong { color: var(--ink); }

.workspace { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr); gap: 1rem; align-items: start; }
.input-panel, .result-panel, .offer-panel, .comparisons, .learn, .resource-panel {
  border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow);
}
.input-panel { padding: clamp(1.1rem, 2.5vw, 2rem); }
.result-panel { padding: clamp(1.1rem, 2.5vw, 2rem); background: var(--ink); color: white; position: sticky; top: 88px; }
.panel-heading, .result-topline, .section-heading, .breakdown-head, .offer-heading, .offer-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.panel-heading > div, .result-topline > div, .offer-heading { display: flex; align-items: center; gap: .8rem; }
.panel-heading h2, .result-topline h2, .offer-heading h2, .section-heading h2 { margin: 0; font-size: 1.25rem; letter-spacing: -.03em; }
.step { font-size: .7rem; letter-spacing: .12em; font-weight: 900; display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid currentColor; border-radius: 50%; color: var(--blue); }
.result-topline .step { color: var(--lime); }
.text-button { border: 0; background: transparent; color: var(--blue); font-size: .82rem; font-weight: 800; padding: .35rem .2rem; }
.text-button:hover { text-decoration: underline; text-underline-offset: 3px; }
.text-button.danger { color: var(--red); }
.live-chip { color: var(--lime); border: 1px solid rgba(201,255,69,.45); background: rgba(201,255,69,.08); padding: .3rem .55rem; border-radius: 999px; font-size: .66rem; font-weight: 900; letter-spacing: .12em; }

.section-block { border-top: 1px solid var(--line); padding-top: 1.35rem; margin-top: 1.35rem; }
.section-block h3, .breakdown h3 { margin: 0 0 .9rem; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
.field-wide { grid-column: 1 / -1; }
.field { display: grid; gap: .4rem; }
.field > span:first-child { color: #46504a; font-size: .78rem; font-weight: 750; }
.field small { font-weight: 500; color: #87918a; }
.field input, .field select, .money-input, .suffix-input {
  width: 100%; min-height: 48px; border-radius: 11px; border: 1px solid #cbd4cc; background: #fbfcfa; color: var(--ink);
}
.field input, .field select { padding: .75rem .85rem; outline: none; }
.field input:focus, .field select:focus, .money-input:focus-within, .suffix-input:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,73,255,.12); }
.money-input, .suffix-input { display: flex; align-items: center; overflow: hidden; }
.money-input b, .suffix-input b { padding-left: .85rem; color: #78817b; font-size: .9rem; }
.money-input input, .suffix-input input { border: 0; min-width: 0; background: transparent; box-shadow: none !important; }
.suffix-input b { padding-left: 0; padding-right: .85rem; }
.check-row { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1rem; cursor: pointer; }
.check-row input { width: 18px; height: 18px; accent-color: var(--blue); margin-top: .15rem; }
.check-row span { display: grid; }
.check-row b { font-size: .82rem; }
.check-row small { color: var(--muted); font-size: .76rem; }

.hero-result { padding: 2.2rem 0 1.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.hero-result > p { color: #aeb8b1; margin: 0; font-size: .82rem; }
.payment { display: flex; align-items: baseline; margin-top: .15rem; }
.payment > span { font-size: 1.7rem; color: var(--lime); font-weight: 750; margin-right: .25rem; }
.payment strong { font-size: clamp(3.8rem, 8vw, 6.6rem); line-height: .95; letter-spacing: -.08em; }
.payment small { color: #aeb8b1; font-size: 1rem; margin-left: .7rem; }
.payment-meta { display: flex; align-items: center; gap: .6rem; color: #aeb8b1; font-size: .8rem; margin-top: .8rem; }
.payment-meta i { width: 3px; height: 3px; border-radius: 50%; background: #667069; }
.metric-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-bottom: 1px solid rgba(255,255,255,.12); }
.metric-grid article { padding: 1rem 0; display: grid; }
.metric-grid article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); padding-right: 1rem; }
.metric-grid article:nth-child(even) { padding-left: 1rem; }
.metric-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
.metric-grid span { color: #9eaaa2; font-size: .72rem; }
.metric-grid strong { font-size: 1.2rem; margin-top: .15rem; }
.metric-grid small { color: #748078; font-size: .68rem; }

.score-card { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; margin: 1.2rem 0; padding: 1rem; border: 1px solid rgba(201,255,69,.22); background: rgba(201,255,69,.06); border-radius: 14px; }
.score-ring { width: 58px; height: 58px; border-radius: 50%; border: 5px solid var(--lime); display: grid; place-items: center; color: var(--lime); font-weight: 900; font-size: 1.1rem; }
.score-label { margin: 0; color: var(--lime); font-size: .64rem; letter-spacing: .12em; font-weight: 900; }
.score-card h3 { margin: .15rem 0; font-size: .98rem; }
.score-card p:last-child { color: #aeb8b1; margin: 0; font-size: .74rem; }

.breakdown { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; }
.breakdown .text-button { color: var(--lime); }
.breakdown dl { margin: .6rem 0 0; }
.breakdown dl > div { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; color: #aeb8b1; font-size: .78rem; }
.breakdown dd { margin: 0; color: white; font-variant-numeric: tabular-nums; }
.breakdown .total-row { border-top: 1px dashed rgba(255,255,255,.2); margin-top: .3rem; padding-top: .7rem; color: white; font-weight: 850; }
.alerts { display: grid; gap: .55rem; margin-top: 1rem; }
.alert { border-radius: 10px; padding: .75rem .85rem; display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; font-size: .75rem; }
.alert b { display: block; color: white; }
.alert span { color: #c1c9c3; }
.alert.warn { background: rgba(255,181,71,.1); border: 1px solid rgba(255,181,71,.28); }
.alert.good { background: rgba(87,224,153,.09); border: 1px solid rgba(87,224,153,.25); }
.alert-icon { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; background: rgba(255,255,255,.1); }
.result-actions { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: .6rem; margin-top: 1.2rem; }
.primary-button, .secondary-button { min-height: 48px; border-radius: 11px; border: 1px solid transparent; display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .75rem; font-weight: 900; }
.primary-button { background: var(--lime); color: var(--ink); }
.primary-button:hover { background: var(--lime-strong); }
.secondary-button { background: rgba(255,255,255,.07); color: white; border-color: rgba(255,255,255,.14); }
.secondary-button:hover { background: rgba(255,255,255,.12); }
.primary-button svg, .secondary-button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.micro-disclaimer { color: #78837b; font-size: .64rem; line-height: 1.4; margin: .9rem 0 0; }

.offer-panel, .comparisons, .learn, .resource-panel { margin-top: 1rem; padding: clamp(1.2rem, 3vw, 2.2rem); }
.offer-panel { background: var(--lime); border-color: var(--lime-strong); box-shadow: none; }
.offer-panel .step { color: var(--ink); }
.offer-panel .eyebrow { margin: 0 0 .25rem; color: #426000; }
.offer-panel blockquote { margin: 1.25rem 0; padding: 1.2rem; background: rgba(255,255,255,.65); border: 1px solid rgba(16,22,21,.12); border-radius: 12px; font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.6; }
.offer-footer { font-size: .78rem; color: #374214; }
.offer-footer .text-button { color: var(--ink); }

.section-heading { margin-bottom: 1.25rem; }
.section-heading .eyebrow { margin-bottom: .4rem; }
.comparison-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .8rem; }
.deal-card { border: 1px solid var(--line); border-radius: 13px; padding: 1rem; background: var(--panel); position: relative; }
.deal-card.best { border-color: var(--green); box-shadow: inset 0 0 0 1px var(--green); }
.deal-card .best-chip { color: var(--green); font-size: .65rem; font-weight: 900; letter-spacing: .08em; }
.deal-card h3 { margin: .35rem 2rem .8rem 0; font-size: .95rem; }
.deal-card dl { margin: 0; display: grid; gap: .4rem; }
.deal-card dl div { display: flex; justify-content: space-between; color: var(--muted); font-size: .76rem; }
.deal-card dd { margin: 0; color: var(--ink); font-weight: 800; }
.deal-card button { position: absolute; right: .55rem; top: .55rem; width: 30px; height: 30px; border: 0; background: transparent; color: var(--muted); border-radius: 8px; font-size: 1.1rem; }
.deal-card button:hover { background: #e2e8e2; color: var(--red); }

.learn { background: var(--panel); box-shadow: none; }
.learn-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.learn-grid article { padding: 1.2rem; background: white; border: 1px solid var(--line); border-radius: 14px; }
.learn-grid article > span { color: var(--blue); font-weight: 950; font-size: .72rem; }
.learn-grid h3 { margin: .6rem 0 .4rem; font-size: 1rem; }
.learn-grid p { color: var(--muted); margin: 0; font-size: .82rem; }
.resource-panel { box-shadow: none; }
.resource-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .8rem; }
.resource-card { min-height: 190px; display: flex; flex-direction: column; padding: 1.2rem; border: 1px solid var(--line); border-radius: 14px; background: var(--panel); color: var(--ink); text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.resource-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.resource-card > span { color: var(--blue); font-size: .68rem; font-weight: 950; letter-spacing: .12em; }
.resource-card h3 { margin: .6rem 0 .35rem; font-size: 1.02rem; }
.resource-card p { margin: 0; color: var(--muted); font-size: .8rem; }
.resource-card b { margin-top: auto; padding-top: 1rem; color: var(--blue); font-size: .78rem; }
.text-link { color: var(--blue); font-weight: 850; font-size: .82rem; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.content-shell { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(2rem, 5vw, 4.5rem) 0 5rem; }
.subhero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 360px); gap: 2rem; align-items: end; margin-bottom: 2rem; }
.subhero h1 { max-width: 840px; margin: 0; font-size: clamp(2.35rem, 6vw, 4.7rem); line-height: .98; letter-spacing: -.06em; }
.subhero .lede { max-width: 720px; margin: 1rem 0 0; color: var(--muted); font-size: 1.05rem; }
.proof-box { border: 1px solid var(--line); border-radius: 15px; background: white; padding: 1.1rem; }
.proof-box > span { display: block; color: var(--blue); font-size: .67rem; font-weight: 950; letter-spacing: .12em; margin-bottom: .45rem; }
.proof-box strong { display: block; font-size: 1rem; }
.proof-box p { margin: .35rem 0 0; color: var(--muted); font-size: .78rem; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin: 0 0 1.1rem; color: var(--muted); font-size: .75rem; }
.crumbs a { color: var(--blue); text-decoration: none; font-weight: 750; }
.crumbs span { color: #9aa39c; }
.directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.directory-card { display: grid; grid-template-columns: auto 1fr; gap: 1rem; min-height: 190px; padding: clamp(1.2rem, 3vw, 1.8rem); border: 1px solid var(--line); border-radius: var(--radius); background: white; color: var(--ink); text-decoration: none; box-shadow: 0 12px 35px rgba(16,22,21,.06); transition: transform .18s ease, border-color .18s ease; }
.directory-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.directory-icon { width: 48px; height: 48px; border-radius: 13px; background: var(--ink); color: var(--lime); display: grid; place-items: center; font-weight: 950; }
.directory-card h2, .directory-card h3 { margin: .05rem 0 .4rem; font-size: 1.2rem; }
.directory-card p { margin: 0 0 1rem; color: var(--muted); font-size: .85rem; }
.directory-card b { color: var(--blue); font-size: .8rem; }
.tool-workspace { display: grid; grid-template-columns: minmax(0,.9fr) minmax(400px,1.1fr); gap: 1rem; align-items: start; }
.tool-workspace .input-panel h2, .tool-workspace .result-panel h2 { margin: 0; font-size: 1.25rem; }
.tool-workspace .result-panel { position: sticky; top: 88px; }
.tool-result-hero { padding: 1.6rem 0 1.2rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.tool-result-hero > span { color: #aeb8b1; font-size: .75rem; }
.tool-result-hero strong { display: block; margin-top: .2rem; color: white; font-size: clamp(2.8rem, 7vw, 5rem); line-height: 1; letter-spacing: -.065em; font-variant-numeric: tabular-nums; }
.tool-result-hero strong em { color: var(--lime); font-style: normal; }
.tool-result-hero p { max-width: 620px; margin: .7rem 0 0; color: #aeb8b1; font-size: .8rem; }
.compare-results { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.12); }
.compare-option { padding: 1rem 0; }
.compare-option + .compare-option { padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.12); }
.compare-option:first-child { padding-right: 1rem; }
.compare-option > span { color: var(--lime); font-size: .68rem; font-weight: 900; letter-spacing: .1em; }
.compare-option h3 { margin: .35rem 0 .75rem; font-size: 1rem; }
.compare-option dl, .tool-breakdown { margin: 0; display: grid; gap: .5rem; }
.compare-option dl div, .tool-breakdown div { display: flex; justify-content: space-between; gap: 1rem; color: #9eaaa2; font-size: .76rem; }
.compare-option dd, .tool-breakdown dd { margin: 0; color: white; font-weight: 800; font-variant-numeric: tabular-nums; }
.tool-breakdown { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.tool-callout { margin-top: 1rem; padding: 1rem; border-radius: 13px; background: rgba(201,255,69,.07); border: 1px solid rgba(201,255,69,.24); }
.tool-callout b { display: block; color: var(--lime); font-size: .78rem; }
.tool-callout p { margin: .3rem 0 0; color: #bdc6bf; font-size: .76rem; }
.info-section { margin-top: 1rem; padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.info-section h2 { margin: 0 0 1rem; font-size: 1.35rem; letter-spacing: -.035em; }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.info-grid article { padding: 1rem; border-radius: 13px; background: var(--panel); border: 1px solid var(--line); }
.info-grid h3 { margin: 0 0 .35rem; font-size: .95rem; }
.info-grid p { margin: 0; color: var(--muted); font-size: .8rem; }
.faq-list { display: grid; gap: .65rem; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; background: var(--paper); padding: .9rem 1rem; }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin: .65rem 0 .1rem; color: var(--muted); font-size: .84rem; }
.partner-slot { margin-top: 1rem; }
.partner-rail .partner-slot { margin-top: 0; }
.partner-slot a { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1rem 1.15rem; border-radius: 14px; background: var(--lime); color: var(--ink); text-decoration: none; }
.partner-slot small { color: #426000; font-size: .65rem; font-weight: 950; letter-spacing: .1em; }
.partner-slot h3 { margin: .25rem 0; font-size: 1rem; }
.partner-slot p { margin: 0; color: #475522; font-size: .78rem; }
.partner-slot b { white-space: nowrap; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(220px, 1fr); gap: 2rem; align-items: start; }
.article-card { padding: clamp(1.35rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.article-card h1 { margin: 0; max-width: 760px; font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1; letter-spacing: -.06em; }
.article-card .article-lede { margin: 1rem 0 0; color: var(--muted); font-size: 1.08rem; }
.prose { margin-top: 2rem; }
.prose h2 { margin: 2rem 0 .7rem; font-size: 1.45rem; letter-spacing: -.035em; }
.prose h3 { margin: 1.5rem 0 .55rem; font-size: 1.05rem; }
.prose p, .prose li { color: #46504a; }
.prose p { margin: .75rem 0; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: .45rem; }
.prose a { color: var(--blue); font-weight: 700; }
.formula-card { margin: 1.1rem 0; padding: 1rem 1.1rem; border-left: 4px solid var(--lime-strong); background: var(--panel); border-radius: 0 12px 12px 0; }
.formula-card b { display: block; margin-bottom: .25rem; }
.formula-card p { margin: 0; font-variant-numeric: tabular-nums; }
.article-aside { position: sticky; top: 88px; display: grid; gap: .8rem; }
.aside-card { padding: 1rem; border: 1px solid var(--line); border-radius: 14px; background: white; }
.aside-card > span { color: var(--blue); font-size: .66rem; font-weight: 950; letter-spacing: .12em; }
.aside-card h2, .aside-card h3 { margin: .45rem 0; font-size: 1rem; }
.aside-card p { margin: 0 0 .8rem; color: var(--muted); font-size: .78rem; }
.aside-card a { color: var(--blue); font-size: .78rem; font-weight: 850; text-decoration: none; }
.source-note { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
.source-note a { color: var(--blue); }
.legal-card { max-width: 860px; }
.legal-card h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.legal-updated { color: var(--muted); font-size: .75rem; margin-top: .7rem; }
.empty-partner-note { display: none; }
.checklist-prose li::marker { content: "□  "; color: var(--blue); font-weight: 900; }
.standalone-button { display: inline-flex; width: fit-content; padding: 0 1.2rem; text-decoration: none; }
.inline-link { display: inline-block; margin-left: 1rem; }
.partner-group { margin-top: 1rem; padding: clamp(1.2rem, 3vw, 2.2rem); border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.partner-rail { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .8rem; }
.partner-card { display: block; border: 1px solid var(--line); border-radius: 14px; padding: 1rem; text-decoration: none; color: var(--ink); background: white; }
.partner-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.partner-card small { color: var(--blue); font-weight: 900; }
.partner-card h3 { margin: .4rem 0; }
.partner-card p { margin: 0; color: var(--muted); font-size: .8rem; }

footer { background: var(--ink); color: #aeb8b1; padding: 2.5rem max(1rem, calc((100vw - 1380px) / 2)); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.footer-nav { max-width: 620px; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: .35rem 1rem; }
.footer-nav a { color: #cbd3cd; text-decoration: none; font-size: .76rem; font-weight: 700; }
.footer-nav a:hover { color: var(--lime); }
.footer-brand { margin-bottom: .6rem; }
footer p { margin: .35rem 0; }
.footer-small { max-width: 760px; font-size: .72rem; color: #748078; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 1.25rem; transform: translate(-50%, 130%); background: var(--ink); color: white; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: .75rem 1rem; font-size: .82rem; font-weight: 800; box-shadow: 0 12px 40px rgba(0,0,0,.25); opacity: 0; transition: .25s ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

@media (max-width: 980px) {
  .workspace { grid-template-columns: 1fr; }
  .result-panel { position: static; }
  .intro { grid-template-columns: 1fr; }
  .trust-note { width: fit-content; }
  .resource-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tool-workspace, .article-layout { grid-template-columns: 1fr; }
  .tool-workspace .result-panel, .article-aside { position: static; }
  .subhero { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .topbar { min-height: 64px; padding: .65rem 1rem; flex-wrap: wrap; gap: .35rem; }
  .site-nav { order: 3; width: 100%; overflow-x: auto; padding-top: .35rem; border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav a { white-space: nowrap; }
  .privacy-pill { display: none; }
  .app-shell { width: min(100% - 1rem, 1380px); padding-top: 1.5rem; }
  .intro { margin-inline: .5rem; }
  .intro h1 { font-size: 2.65rem; }
  .field-grid, .metric-grid, .learn-grid, .comparison-grid, .partner-rail, .resource-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .metric-grid article { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.12); padding: .8rem 0 !important; }
  .metric-grid article:last-child { border-bottom: 0; }
  .result-actions { grid-template-columns: 1fr 1fr; }
  .primary-button { grid-column: 1 / -1; }
  .offer-footer { align-items: flex-start; flex-direction: column; }
  .payment strong { font-size: 4.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .directory-grid, .compare-results, .info-grid { grid-template-columns: 1fr; }
  .compare-option + .compare-option { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .compare-option:first-child { padding-right: 0; }
  .content-shell { width: min(100% - 1rem, 1180px); padding-top: 1.5rem; }
  .subhero, .article-card { margin-inline: 0; }
}

@media print {
  .topbar, .intro, .input-panel, .result-actions, .learn, .comparisons, .partner-rail, .partner-group, footer, .toast, .text-button, .micro-disclaimer, .article-aside, .crumbs { display: none !important; }
  body { background: white; }
  .app-shell { width: 100%; padding: 0; }
  .workspace { display: block; }
  .result-panel { position: static; background: white; color: black; border: 0; box-shadow: none; padding: 0; }
  .result-topline, .hero-result, .metric-grid, .score-card, .breakdown { color: black; border-color: #ccc; }
  .hero-result p, .payment-meta, .metric-grid span, .metric-grid small, .score-card p:last-child, .breakdown dl > div { color: #444; }
  .breakdown dd, .score-card h3 { color: black; }
  .alerts { display: none; }
  .offer-panel { break-inside: avoid; margin-top: 1rem; box-shadow: none; }
  .content-shell { width: 100%; padding: 0; }
  .article-layout { display: block; }
  .article-card { border: 0; box-shadow: none; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
