:root {
  --ink: #111827;
  --ink-2: #26313e;
  --muted: #5d6875;
  --line: #dce1e6;
  --paper: #ffffff;
  --tint: #f4f5f3;
  --orange: #f97316;
  --orange-dark: #c84b0c;
  --cream: #fff6ec;
  --radius: 6px;
  --shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
  --shell: min(1220px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
p { color: var(--muted); }
.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 820px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 12px; top: 8px; z-index: 1000; padding: 10px 16px;
  background: var(--paper); border: 2px solid var(--orange); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #1d4ed8; outline-offset: 3px; }

.disclosure-bar { background: #17202b; color: #d8dee5; font-size: 12px; }
.disclosure-bar__inner { min-height: 31px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.disclosure-bar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); }
.header-main { min-height: 86px; display: grid; grid-template-columns: 230px minmax(280px, 640px) 90px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; }
.brand__mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 3px; background: var(--orange); color: #fff; font-size: 25px; font-weight: 900; letter-spacing: -0.07em; }
.brand__words { display: flex; flex-direction: column; line-height: 1; }
.brand__words strong { font-size: 23px; letter-spacing: -0.05em; }
.brand__words small { margin-top: 4px; color: var(--orange-dark); font-size: 10px; font-weight: 900; letter-spacing: 0.24em; }
.site-search { height: 46px; display: flex; border: 1px solid #b8c0c9; border-radius: 4px; overflow: hidden; background: #fff; }
.site-search:focus-within { border-color: #1d4ed8; box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15); }
.site-search input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 0 16px; color: var(--ink); }
.site-search button { width: 92px; border: 0; background: var(--orange); color: #fff; font-weight: 800; cursor: pointer; }
.site-search button:hover { background: var(--orange-dark); }
.saved-link { display: flex; align-items: center; justify-content: flex-end; gap: 7px; font-size: 14px; font-weight: 700; }
.saved-link strong { min-width: 24px; height: 24px; display: grid; place-items: center; background: var(--ink); color: #fff; border-radius: 50%; font-size: 12px; }
.category-nav { border-top: 1px solid #edf0f2; }
.category-nav__inner { display: flex; gap: 0; overflow-x: auto; scrollbar-width: thin; }
.category-nav a { flex: 0 0 auto; padding: 13px 16px 12px; border-bottom: 3px solid transparent; color: #3f4b58; font-size: 13px; font-weight: 750; white-space: nowrap; }
.category-nav a:first-child { padding-left: 0; }
.category-nav a:hover, .category-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--orange); }

.kicker { display: block; margin-bottom: 10px; color: var(--orange-dark); font-size: 12px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.kicker--light { color: #ffb77f; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid transparent; border-radius: 3px; font-size: 14px; font-weight: 850; cursor: pointer; transition: transform 120ms ease, background 120ms ease; }
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--orange); color: #fff; }
.button--primary:hover { background: var(--orange-dark); }
.button--dark { background: var(--ink); color: #fff; }
.button--dark:hover { background: #26313e; }
.button--ghost { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(0,0,0,.12); }
.button--ghost:hover { background: rgba(255,255,255,.1); }
.button--light { background: #fff; color: var(--ink); }
.text-link { color: var(--ink); font-weight: 850; border-bottom: 1px solid #aeb5bd; }
.text-link:hover { color: var(--orange-dark); border-bottom-color: var(--orange); }

.hero {
  min-height: 610px;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(11, 17, 24, .28) 0%, rgba(11, 17, 24, .1) 43%, rgba(11, 17, 24, 0) 63%), url("/static/assets/workshop-hero.png");
  background-position: center;
  background-size: cover;
}
.hero__inner { min-height: 610px; display: flex; align-items: center; }
.hero__copy { max-width: 590px; padding: 70px 0; }
.hero h1 { margin-bottom: 22px; font-size: clamp(52px, 6vw, 86px); font-weight: 900; letter-spacing: -0.065em; }
.hero__copy > p { max-width: 570px; color: #e4e9ed; font-size: 18px; line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 11px; margin: 30px 0 22px; }
.hero__micro { margin-bottom: 0; color: #b9c1c9 !important; font-size: 12px !important; font-weight: 650; }
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip__grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__grid div { display: flex; flex-direction: column; justify-content: center; padding: 20px 24px; border-right: 1px solid var(--line); }
.trust-strip__grid div:first-child { padding-left: 0; }
.trust-strip__grid div:last-child { border-right: 0; }
.trust-strip strong { margin-bottom: 4px; font-size: 14px; }
.trust-strip span { color: var(--muted); font-size: 12px; line-height: 1.45; }

.section { padding: 86px 0; }
.section--tint { background: var(--tint); }
.section--ink { background: var(--ink); color: #fff; }
.section--orange { background: var(--orange); color: #fff; }
.section-heading { margin-bottom: 30px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 52px); }
.section-heading > p { max-width: 480px; margin-bottom: 4px; font-size: 16px; }
.section-heading--compact h2 { font-size: clamp(30px, 3vw, 42px); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category-tile { min-height: 150px; position: relative; display: flex; align-items: flex-end; gap: 14px; overflow: hidden; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform 140ms ease, box-shadow 140ms ease; }
.category-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.category-tile::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--cat); }
.category-tile__mark { position: absolute; right: 12px; top: -11px; color: color-mix(in srgb, var(--cat) 10%, transparent); font-size: 85px; font-weight: 950; letter-spacing: -.12em; }
.category-tile__copy { display: flex; flex: 1; flex-direction: column; z-index: 1; }
.category-tile__copy strong { font-size: 17px; }
.category-tile__copy span { color: var(--muted); font-size: 12px; }
.category-tile__arrow { color: var(--cat); font-size: 18px; font-weight: 900; z-index: 1; }

.cat-power-tools { --cat: #f97316; --cat-soft: #fff0e6; }
.cat-hand-tools { --cat: #0f766e; --cat-soft: #e7f4f2; }
.cat-measurement { --cat: #2563eb; --cat-soft: #eaf0ff; }
.cat-workshop { --cat: #7c3aed; --cat-soft: #f0eafe; }
.cat-safety { --cat: #dc2626; --cat-soft: #feecec; }
.cat-lifting { --cat: #ca8a04; --cat-soft: #fdf5d9; }
.cat-automation { --cat: #0891b2; --cat-soft: #e5f6f9; }
.cat-outdoor { --cat: #4d7c0f; --cat-soft: #edf5df; }

.affiliate-note { margin: -6px 0 24px; padding: 11px 14px; border-left: 3px solid var(--orange); background: var(--cream); color: #6d4a2c; font-size: 12px; }
.affiliate-note strong { color: #4b2e18; }
.affiliate-note--compact { margin: 0 0 18px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-grid--three { grid-template-columns: repeat(3, 1fr); }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: box-shadow 140ms ease, transform 140ms ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card__visual { height: 184px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 20px; background: var(--cat-soft); }
.product-card__visual::before, .product-visual::before { content: ""; position: absolute; width: 190px; height: 190px; right: -44px; top: -52px; border: 32px solid color-mix(in srgb, var(--cat) 18%, transparent); border-radius: 50%; }
.product-card__visual::after, .product-visual::after { content: ""; position: absolute; width: 130px; height: 24px; right: 26px; bottom: 30px; border-radius: 30px; background: color-mix(in srgb, var(--cat) 22%, transparent); transform: rotate(-14deg); }
.product-card__brand, .product-visual__brand { position: absolute; top: 18px; left: 20px; z-index: 2; color: var(--cat); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.product-card__mark { position: relative; z-index: 2; color: var(--cat); font-size: 58px; font-weight: 950; letter-spacing: -.11em; line-height: .82; }
.product-card__kind { position: relative; z-index: 2; margin-top: 5px; color: #51606e; font-size: 11px; font-weight: 700; }
.product-card__body { padding: 20px 20px 22px; }
.eyebrow-row { min-height: 28px; display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.pick-badge { display: inline-flex; width: fit-content; padding: 4px 8px; border-radius: 2px; background: #fff0e6; color: #a8400d; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.save-button { border: 0; padding: 3px; background: transparent; color: #64707d; font-size: 11px; font-weight: 800; cursor: pointer; }
.save-button:hover, .save-button.is-saved { color: var(--orange-dark); }
.save-button--large { min-height: 40px; padding: 0 15px; border: 1px solid var(--line); border-radius: 3px; font-size: 13px; }
.save-button--large:hover, .save-button--large.is-saved { border-color: var(--orange); background: var(--cream); }
.product-card h3 { margin-bottom: 10px; min-height: 48px; font-size: 18px; line-height: 1.25; letter-spacing: -.02em; }
.product-card h3 a:hover { color: var(--orange-dark); }
.product-card p { font-size: 13px; line-height: 1.5; }
.product-card .best-for { min-height: 39px; margin-bottom: 8px; color: var(--ink-2); font-weight: 750; }
.product-card__body > p:not(.best-for) { min-height: 59px; }
.product-card .text-link { font-size: 13px; }

.guide-feature { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.guide-feature__intro h2 { font-size: clamp(38px, 4vw, 57px); }
.guide-feature__intro p { margin-bottom: 26px; font-size: 17px; line-height: 1.7; }
.guide-feature__list { border-top: 1px solid var(--line); }
.guide-feature__list a { min-height: 90px; display: grid; grid-template-columns: 42px 1fr 25px; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.guide-feature__list a:hover strong { color: var(--orange-dark); }
.guide-index { color: var(--orange); font-size: 12px; font-weight: 900; }
.guide-feature__list strong { display: block; font-size: 16px; line-height: 1.25; }
.guide-feature__list small { color: var(--muted); }
.editorial-pledge { display: grid; grid-template-columns: 90px 1.1fr 1fr auto; align-items: center; gap: 32px; }
.editorial-pledge__mark { width: 72px; height: 72px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.55); font-size: 38px; font-weight: 950; }
.editorial-pledge h2 { margin-bottom: 0; font-size: clamp(30px, 3.5vw, 47px); }
.editorial-pledge p { margin: 0; color: #fff2e8; }
.editorial-pledge--short { grid-template-columns: 1fr 1fr auto; }

.page-hero { background: var(--cat-soft); border-bottom: 1px solid color-mix(in srgb, var(--cat) 23%, #fff); }
.page-hero__inner { min-height: 355px; display: grid; grid-template-columns: 1fr 270px; align-items: center; gap: 50px; }
.page-hero h1 { margin-bottom: 15px; font-size: clamp(50px, 6vw, 78px); }
.page-hero p { max-width: 690px; font-size: 18px; }
.page-hero__mark { color: color-mix(in srgb, var(--cat) 72%, #fff); font-size: 150px; font-weight: 950; letter-spacing: -.13em; line-height: 1; text-align: right; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 35px; color: #697582; font-size: 12px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.category-guide { min-height: 190px; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.category-guide h2 { font-size: clamp(34px, 4vw, 52px); }
.category-guide p { max-width: 780px; margin-bottom: 0; color: #bdc6d0; }

.simple-hero { padding: 92px 0 80px; background: #f1f2ef; }
.simple-hero--dark { background: var(--ink); color: #fff; }
.simple-hero h1 { margin-bottom: 20px; font-size: clamp(48px, 6vw, 76px); }
.simple-hero p { margin-bottom: 0; font-size: 19px; line-height: 1.65; }
.simple-hero--dark p { color: #c1c9d2; }
.empty-state { padding: 80px 20px; text-align: center; border: 1px dashed #bfc6cd; }
.empty-state > span { color: var(--orange); font-size: 64px; }
.empty-state h2 { font-size: 34px; }
.empty-state .button { margin-top: 15px; }
.search-suggestions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.search-suggestions a { display: flex; justify-content: space-between; padding: 19px 20px; border: 1px solid var(--line); font-weight: 800; }
.search-suggestions a:hover { border-color: var(--orange); }

.product-hero { padding: 35px 0 70px; background: #fafafa; border-bottom: 1px solid var(--line); }
.product-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 70px; align-items: center; }
.product-visual { aspect-ratio: 1.25 / 1; position: relative; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 48px; background: var(--cat-soft); border: 1px solid color-mix(in srgb, var(--cat) 16%, #ddd); }
.product-visual__brand { top: 30px; left: 32px; }
.product-visual__mark { position: relative; z-index: 2; color: var(--cat); font-size: clamp(110px, 14vw, 190px); font-weight: 950; letter-spacing: -.13em; line-height: .82; }
.product-visual__category { position: relative; z-index: 2; margin-top: 15px; color: #53606e; font-size: 13px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.product-visual__caption { position: absolute; left: 32px; bottom: 24px; z-index: 2; color: #77818c; font-size: 10px; }
.product-intro h1 { margin: 16px 0 16px; font-size: clamp(42px, 5vw, 67px); }
.product-intro__best { color: var(--ink-2); font-size: 16px; }
.product-intro__summary { font-size: 18px; line-height: 1.7; }
.verdict-box { margin: 24px 0 18px; padding: 18px 20px; border-left: 4px solid var(--orange); background: #fff; box-shadow: 0 3px 14px rgba(17,24,39,.05); }
.verdict-box span { color: var(--orange-dark); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.verdict-box p { margin: 4px 0 0; color: var(--ink-2); font-size: 14px; font-weight: 650; }
.section--product { padding-top: 72px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 370px; align-items: start; gap: 70px; }
.product-content h2 { margin: 34px 0 17px; font-size: 29px; }
.product-content > .kicker + h2 { margin-top: 0; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 0; background: var(--line); border: 1px solid var(--line); }
.spec-grid div { padding: 17px 18px; background: #fff; }
.spec-grid dt { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.spec-grid dd { margin: 4px 0 0; color: var(--ink); font-weight: 750; }
.check-list { display: grid; gap: 10px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--ink-2); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.verification-box { margin-top: 36px; padding: 24px; border: 1px solid #e7c79f; background: var(--cream); }
.verification-box h2 { margin: 0 0 9px; font-size: 21px; }
.verification-box p { margin: 0; font-size: 13px; }
.offer-box { position: sticky; top: 20px; padding: 27px; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.offer-box h2 { margin-bottom: 18px; font-size: 30px; }
.offer-list { display: grid; gap: 10px; }
.retailer-button { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px 16px; border: 1px solid #bfc6cd; border-radius: 3px; }
.retailer-button:hover { border-color: var(--orange); transform: translateY(-1px); }
.retailer-button span:first-child { display: flex; flex-direction: column; }
.retailer-button strong { font-size: 15px; }
.retailer-button small { color: var(--muted); font-size: 11px; }
.retailer-button > span:last-child { color: var(--orange-dark); font-size: 19px; }
.offer-box__fine { margin: 15px 0; font-size: 11px; line-height: 1.5; }
.method-link { color: var(--ink); font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.guide-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-top: 5px solid var(--cat); }
.guide-card__meta { display: flex; justify-content: space-between; margin-bottom: 34px; color: var(--cat); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.guide-card h2 { max-width: 600px; font-size: 30px; }
.guide-card h2 a:hover { color: var(--cat); }
.guide-card p { max-width: 620px; }
.guide-card .text-link { font-size: 13px; }
.article-hero { padding: 46px 0 80px; background: var(--cat-soft); }
.article-hero h1 { margin-bottom: 22px; font-size: clamp(49px, 6vw, 78px); }
.article-hero p { max-width: 750px; font-size: 20px; line-height: 1.6; }
.article-hero__date { color: #6a7580; font-size: 12px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; justify-content: space-between; gap: 80px; padding-top: 78px; padding-bottom: 90px; }
.article-lead { color: var(--ink-2); font-size: 21px; line-height: 1.7; }
.article-body section { position: relative; padding: 42px 0 35px 62px; border-bottom: 1px solid var(--line); }
.article-number { position: absolute; left: 0; top: 46px; color: var(--orange); font-size: 12px; font-weight: 900; }
.article-body h2 { font-size: 32px; }
.article-body section p { margin: 0; font-size: 17px; line-height: 1.85; }
.article-safety { margin-top: 35px; padding: 24px; border-left: 4px solid #dc2626; background: #fff1f1; }
.article-safety strong { color: #a51d1d; }
.article-safety p { margin: 5px 0 0; font-size: 14px; }
.article-aside { position: sticky; top: 24px; align-self: start; padding: 24px; border: 1px solid var(--line); }
.article-aside h2 { font-size: 28px; }

.prose-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.prose-grid h2 { font-size: 46px; }
.prose p, .legal-copy p { font-size: 17px; line-height: 1.8; }
.prose a, .legal-copy a, .contact-copy a, .contact-form a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.values-grid article { padding: 30px; background: #fff; border: 1px solid var(--line); }
.values-grid article > span { color: var(--orange); font-size: 12px; font-weight: 900; }
.values-grid h2 { margin-top: 32px; font-size: 28px; }
.methodology-list { max-width: 960px; }
.methodology-list article { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.methodology-list article > span { color: var(--orange); font-weight: 900; }
.methodology-list h2 { font-size: 34px; }
.methodology-list p { margin: 0; font-size: 17px; line-height: 1.75; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: space-between; gap: 80px; }
.legal-layout > aside { position: sticky; top: 24px; align-self: start; display: flex; flex-direction: column; gap: 8px; padding: 18px; border-top: 4px solid var(--orange); background: var(--tint); font-size: 13px; }
.legal-layout > aside span { color: var(--muted); margin-bottom: 15px; }
.legal-layout > aside a { color: var(--orange-dark); font-weight: 750; }
.legal-copy h2 { margin: 42px 0 12px; font-size: 31px; }
.legal-copy h2:first-child { margin-top: 0; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.contact-copy h2 { font-size: 40px; }
.contact-note { display: flex; flex-direction: column; gap: 5px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-note span { color: var(--muted); font-size: 14px; }
.contact-form-wrap { padding: 30px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-form { display: grid; }
.contact-form label { margin: 14px 0 6px; font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #aeb6bf; border-radius: 2px; padding: 12px; outline: 0; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #1d4ed8; box-shadow: 0 0 0 3px rgba(29,78,216,.14); }
.contact-form .button { margin-top: 20px; }
.contact-form > p { margin: 12px 0 0; font-size: 11px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.success-message, .error-message { display: flex; flex-direction: column; margin-bottom: 15px; padding: 15px; }
.success-message { border-left: 4px solid #15803d; background: #eaf8ef; color: #14532d; }
.error-message { border-left: 4px solid #dc2626; background: #fff1f1; color: #991b1b; }
.success-message span { font-size: 13px; }
.not-found { min-height: 640px; display: flex; align-items: center; text-align: center; background: var(--tint); }
.not-found__code { display: block; color: #d9dddf; font-size: 150px; font-weight: 950; line-height: .8; }
.not-found h1 { margin-top: 16px; font-size: 48px; }
.not-found div div { display: flex; justify-content: center; gap: 10px; margin-top: 25px; }

.saved-panel { position: fixed; inset: 0 0 0 auto; z-index: 100; width: min(430px, 92vw); padding: 26px; overflow-y: auto; background: #fff; box-shadow: -20px 0 60px rgba(17,24,39,.22); transform: translateX(105%); transition: transform 180ms ease; }
.saved-panel[aria-hidden="false"] { transform: translateX(0); }
.saved-panel__head { display: flex; align-items: start; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.saved-panel__head h2 { margin: 0; font-size: 31px; }
.saved-panel__head button { border: 0; background: transparent; font-size: 34px; cursor: pointer; }
.saved-panel__items { display: grid; }
.saved-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.saved-item a { font-size: 14px; font-weight: 800; }
.saved-item button { border: 0; background: transparent; color: #9b2c1f; font-size: 11px; cursor: pointer; }
.saved-panel__empty { margin-top: 30px; }
.saved-panel__privacy { margin-top: 25px; color: #7b858f; font-size: 11px; }
.saved-backdrop { display: none; position: fixed; inset: 0; z-index: 90; width: 100%; height: 100%; border: 0; background: rgba(10,15,20,.48); }
.saved-is-open { overflow: hidden; }
.saved-is-open .saved-backdrop { display: block; }

.site-footer { padding: 66px 0 24px; background: #101721; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 60px; }
.brand--footer .brand__words small { color: #ffb071; }
.footer-about p { max-width: 400px; color: #9eabb8; font-size: 13px; }
.footer-about .footer-disclosure { color: #d4dae0; font-size: 11px; }
.footer-grid h2 { margin-bottom: 18px; color: #9eabb8; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid > div:not(.footer-about) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid a { color: #e0e5ea; font-size: 13px; }
.footer-grid a:hover { color: #ffb071; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; margin-top: 50px; padding-top: 22px; border-top: 1px solid #2a3440; color: #8794a1; font-size: 10px; }

@media (max-width: 1050px) {
  .header-main { grid-template-columns: 190px 1fr 75px; gap: 18px; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid div:nth-child(2) { border-right: 0; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid--three { grid-template-columns: repeat(3, 1fr); }
  .guide-feature { gap: 45px; }
  .editorial-pledge { grid-template-columns: 70px 1fr 1fr; }
  .editorial-pledge .button { grid-column: 2; width: fit-content; }
  .editorial-pledge--short { grid-template-columns: 1fr 1fr; }
  .editorial-pledge--short .button { grid-column: 1; }
  .product-layout { gap: 40px; }
  .product-detail-grid { grid-template-columns: minmax(0, 1fr) 330px; gap: 40px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 680px); }
  .disclosure-bar__inner { min-height: 41px; justify-content: flex-start; line-height: 1.25; }
  .header-main { min-height: auto; grid-template-columns: 1fr auto; padding-top: 14px; padding-bottom: 14px; }
  .brand__mark { width: 37px; height: 37px; }
  .brand__words strong { font-size: 20px; }
  .saved-link span { display: none; }
  .site-search { grid-column: 1 / -1; grid-row: 2; width: 100%; }
  .category-nav a { padding: 11px 13px 10px; }
  .hero, .hero__inner { min-height: 580px; }
  .hero { background-position: 57% center; }
  .hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,15,20,.88), rgba(10,15,20,.38)); }
  .hero { position: relative; }
  .hero__inner { position: relative; z-index: 1; }
  .hero__copy { padding: 58px 0; }
  .hero h1 { font-size: clamp(46px, 15vw, 68px); }
  .hero__copy > p { font-size: 16px; }
  .trust-strip__grid { grid-template-columns: 1fr; padding: 8px 0; }
  .trust-strip__grid div, .trust-strip__grid div:first-child { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip__grid div:last-child { border-bottom: 0; }
  .section { padding: 62px 0; }
  .section-heading { display: block; }
  .section-heading h2 { font-size: 38px; }
  .section-heading > p { margin-top: 14px; }
  .category-grid, .product-grid, .product-grid--three, .guide-grid, .values-grid { grid-template-columns: 1fr; }
  .category-tile { min-height: 126px; }
  .product-card__visual { height: 210px; }
  .product-card h3, .product-card .best-for, .product-card__body > p:not(.best-for) { min-height: 0; }
  .guide-feature, .prose-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .editorial-pledge, .editorial-pledge--short { grid-template-columns: 1fr; }
  .editorial-pledge__mark { display: none; }
  .editorial-pledge .button, .editorial-pledge--short .button { grid-column: 1; }
  .page-hero__inner { min-height: 310px; grid-template-columns: 1fr; padding: 45px 0; }
  .page-hero__mark { display: none; }
  .page-hero h1, .simple-hero h1 { font-size: 46px; }
  .category-guide { align-items: flex-start; flex-direction: column; gap: 25px; padding: 50px 0; }
  .product-layout { grid-template-columns: 1fr; }
  .product-visual { padding: 32px; }
  .product-intro h1 { font-size: 43px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .offer-box { position: static; }
  .spec-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 45px; padding-top: 55px; }
  .article-aside { position: static; }
  .article-body section { padding-left: 38px; }
  .legal-layout { grid-template-columns: 1fr; gap: 42px; }
  .legal-layout > aside { position: static; }
  .methodology-list article { grid-template-columns: 48px 1fr; }
  .contact-form-wrap { padding: 20px; }
  .search-suggestions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .not-found div div { flex-direction: column; }
}

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