:root {
  --red: #ed1c24;
  --red-dark: #c30f18;
  --blue: #148bd2;
  --ink: #111111;
  --charcoal: #202226;
  --muted: #65686e;
  --line: #dedfe2;
  --soft: #f5f5f6;
  --paper: #ffffff;
  --green: #237a48;
  --amber: #f5a623;
  --shadow: 0 18px 50px rgba(0,0,0,.12);
  --content: 1260px;
}

* { 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; }
body.menu-open, body.search-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { stroke-width: 1.8; }
.content-width { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.skip-link { position: fixed; top: -90px; left: 18px; z-index: 200; padding: 11px 15px; color: #fff; background: #000; }
.skip-link:focus { top: 18px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 80; padding: 0 18px; background: #fff; border-bottom: 1px solid var(--line); }
.site-header.overlay-header { position: absolute; top: 14px; left: 0; right: 0; padding: 0 32px; background: transparent; border: 0; }
.nav-shell { width: min(100%, 1490px); height: 68px; margin-inline: auto; padding: 0 18px; display: flex; align-items: center; gap: 26px; border-radius: 12px; background: rgba(255,255,255,.97); box-shadow: 0 8px 28px rgba(0,0,0,.16); }
.site-header:not(.overlay-header) .nav-shell { width: min(100%, var(--content)); box-shadow: none; border-radius: 0; padding-inline: 0; }
.brand { display: inline-flex; align-items: center; gap: 9px; min-width: max-content; line-height: 1; }
.brand-sigil { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 4px; color: #fff; background: var(--red); font-size: 12px; font-weight: 900; letter-spacing: -.04em; }
.brand-image { width: 42px; height: 42px; object-fit: contain; border-radius: 4px; }
.brand-words { display: grid; gap: 3px; font-style: normal; letter-spacing: -.04em; }
.brand-words strong { font-size: 15px; font-weight: 900; }
.brand-words em { color: var(--red); font-size: 13px; font-weight: 900; font-style: normal; }
.desktop-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.desktop-nav > a, .nav-trigger { border: 0; background: transparent; color: #27282b; font-size: 14px; font-weight: 600; }
.desktop-nav > a:hover, .desktop-nav > a[aria-current="page"], .nav-trigger:hover { color: var(--red); }
.nav-trigger { min-height: 68px; display: inline-flex; align-items: center; gap: 6px; padding: 0; }
.nav-trigger svg { width: 15px; height: 15px; }
.desktop-category-menu { position: relative; }
.desktop-category-menu::after { position: absolute; top: 100%; left: -20px; right: -20px; height: 14px; content: ""; }
.product-dropdown { position: absolute; top: calc(100% + 12px); left: 50%; width: min(780px, 88vw); padding: 22px; visibility: hidden; opacity: 0; transform: translate(-35%, 8px); border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: var(--shadow); transition: .18s ease; }
.desktop-category-menu:hover .product-dropdown, .desktop-category-menu:focus-within .product-dropdown { visibility: visible; opacity: 1; transform: translate(-35%, 0); }
.product-dropdown > p { margin: 0 0 14px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-dropdown > div { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; }
.product-dropdown a { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 7px; }
.product-dropdown a:hover { background: #fff2f2; }
.product-dropdown a > svg { width: 23px; height: 23px; color: var(--red); }
.product-dropdown a span { display: grid; gap: 2px; }
.product-dropdown a strong { font-size: 14px; }
.product-dropdown a small { color: var(--muted); font-size: 11px; }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.round-action { width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--red); }
.round-action:hover { background: #fff1f1; }
.round-action svg { width: 21px; height: 21px; }
.admin-link { padding: 10px 14px; border-radius: 5px; color: #fff; background: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.admin-link:hover { background: var(--red); }
.menu-button { display: none; }
.mobile-panel { position: fixed; inset: 0; z-index: 70; display: none; padding: 90px 24px 30px; background: #fff; overflow-y: auto; }
.mobile-panel.open { display: block; }
.mobile-panel nav { display: grid; max-width: 560px; margin: 0 auto; }
.mobile-panel a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-weight: 700; }

/* Search */
.search-panel { position: fixed; inset: 0; z-index: 120; visibility: hidden; opacity: 0; padding: 7vh 24px; background: rgba(14,15,17,.94); transition: .2s ease; }
.search-panel.open { visibility: visible; opacity: 1; }
.search-inner { width: min(780px,100%); margin: 0 auto; padding: 30px; border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.search-top { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.search-top span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .09em; }
.search-top h2 { margin: 5px 0 24px; font-size: clamp(28px,4vw,42px); letter-spacing: -.045em; }
.search-field { display: flex; align-items: center; gap: 11px; padding: 0 16px; border: 2px solid var(--ink); border-radius: 7px; }
.search-field svg { width: 21px; color: var(--red); }
.search-input { width: 100%; height: 56px; border: 0; outline: 0; }
.search-results { display: grid; gap: 5px; margin-top: 18px; }
.search-result { display: flex; justify-content: space-between; gap: 20px; padding: 13px 14px; border-radius: 6px; background: var(--soft); }
.search-result:hover { color: var(--red); background: #fff1f1; }
.search-result span { color: var(--muted); font-size: 12px; }
.search-empty { color: var(--muted); }

/* Homepage hero */
.home-hero { position: relative; min-height: 730px; display: flex; align-items: center; background-size: cover; background-position: center; color: #fff; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.75) 42%, rgba(0,0,0,.25) 75%, rgba(0,0,0,.18) 100%); }
.hero-content { position: relative; z-index: 2; width: min(calc(100% - 48px), 1030px); margin: 94px auto 0; transform: translateX(-9%); }
.hero-kicker { margin: 0 0 15px; color: #ff7277; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.home-hero h1 { max-width: 760px; margin: 0 0 20px; font-size: clamp(50px,6.1vw,88px); font-weight: 900; line-height: .96; letter-spacing: -.065em; text-transform: uppercase; }
.hero-copy { max-width: 780px; margin: 0 0 34px; color: rgba(255,255,255,.88); font-size: clamp(16px,1.5vw,20px); line-height: 1.45; }
.hero-search-wrap { position: relative; width: min(920px,100%); border-radius: 10px; color: var(--ink); background: #fff; box-shadow: 0 18px 42px rgba(0,0,0,.25); }
.hero-search { height: 60px; display: flex; align-items: center; gap: 12px; padding: 0 18px; }
.hero-search svg { width: 23px; color: var(--red); }
.hero-search input { flex: 1; height: 100%; border: 0; outline: 0; font-size: 16px; }
.hero-search kbd { padding: 4px 8px; border: 1px solid var(--line); border-radius: 5px; color: var(--muted); background: var(--soft); font-size: 11px; }
.hero-suggestions { display: flex; align-items: center; gap: 14px; padding: 11px 18px 14px; border-top: 1px solid #ececef; overflow-x: auto; white-space: nowrap; }
.hero-suggestions span { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.hero-suggestions a { color: #6c6e73; font-size: 13px; }
.hero-suggestions a:hover { color: var(--red); }
.hero-search-results { position: absolute; top: calc(100% + 7px); left: 0; right: 0; z-index: 5; padding: 9px; border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.hero-search-results a { display: flex; justify-content: space-between; gap: 18px; padding: 12px; border-radius: 6px; }
.hero-search-results a:hover { color: var(--red); background: #fff1f1; }
.hero-search-results span { color: var(--muted); font-size: 12px; }

/* Category directory */
.category-directory { padding: 48px 0 74px; background: var(--soft); }
.directory-heading { display: grid; place-items: center; margin-bottom: 24px; text-align: center; }
.directory-heading span, .section-title-row span, .score-explainer > div > div > span, .section-kicker { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.directory-heading h2 { margin: 5px 0 7px; font-size: 17px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
.directory-heading svg { width: 17px; color: #999; }
.category-mega-card { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0; overflow: hidden; border: 1px solid #e5e5e7; border-radius: 12px; background: #fff; box-shadow: 0 11px 32px rgba(0,0,0,.09); }
.category-column { min-height: 260px; padding: 28px; border-right: 1px solid #ececef; border-bottom: 1px solid #ececef; }
.category-column:nth-child(3n) { border-right: 0; }
.category-column:nth-last-child(-n+2) { border-bottom: 0; }
.category-name { display: flex; align-items: center; gap: 11px; color: var(--red); font-size: 16px; font-weight: 900; text-transform: uppercase; }
.category-name svg { width: 23px; height: 23px; }
.category-column > p { min-height: 44px; margin: 11px 0 15px; color: var(--muted); font-size: 12px; }
.category-column nav { display: grid; }
.category-column nav a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 0; border-top: 1px solid #f0f0f1; color: #3f4145; font-size: 14px; }
.category-column nav a:hover { color: var(--red); }
.category-column nav svg { width: 14px; }

/* What's new */
.whats-new { padding: 80px 0 92px; }
.section-title-row { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 28px; }
.section-title-row h2 { margin: 4px 0 0; font-size: clamp(34px,4.5vw,54px); font-weight: 900; letter-spacing: -.055em; }
.section-title-row > p { max-width: 520px; margin: 0; color: var(--muted); }
.new-grid { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(330px,.75fr); gap: 36px; }
.lead-story { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.lead-story-media { position: relative; aspect-ratio: 16/9; display: grid; place-items: center; overflow: hidden; background: #f2f2f2; }
.lead-story-media img { width: 100%; height: 100%; object-fit: contain; }
.lead-score { position: absolute; right: 18px; bottom: 18px; width: 74px; height: 74px; display: grid; place-items: center; align-content: center; border: 4px solid #fff; border-radius: 50%; color: #fff; background: var(--red); box-shadow: 0 7px 18px rgba(0,0,0,.22); line-height: 1; }
.lead-score strong { font-size: 26px; }
.lead-score small { margin-top: 3px; font-size: 10px; }
.lead-story-copy { padding: 25px 27px 28px; }
.lead-story-copy > span { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .07em; }
.lead-story h3 { margin: 7px 0 10px; font-size: clamp(28px,3vw,42px); line-height: 1.08; letter-spacing: -.045em; }
.lead-story p { margin: 0 0 20px; color: var(--muted); }
.lead-story b { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-size: 13px; }
.lead-story b svg { width: 16px; }
.news-rail { padding-left: 32px; border-left: 1px solid var(--line); }
.news-rail > h3 { margin: 0 0 14px; font-size: 18px; }
.rail-story { padding: 16px 0; border-top: 1px solid var(--line); }
.rail-story a { display: grid; grid-template-columns: 150px 1fr; gap: 16px; }
.rail-story a > div { position: relative; height: 112px; display: grid; place-items: center; overflow: hidden; border-radius: 5px; background: var(--soft); }
.rail-story img { width: 100%; height: 100%; object-fit: contain; }
.rail-story a > div span { position: absolute; right: 6px; bottom: 6px; padding: 4px 6px; border-radius: 4px; color: #fff; background: var(--red); font-size: 11px; font-weight: 800; }
.rail-story small { color: var(--red); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.rail-story h4 { margin: 4px 0 6px; font-size: 18px; line-height: 1.2; }
.rail-story p { display: -webkit-box; margin: 0; overflow: hidden; color: var(--muted); font-size: 12px; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.method-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; margin-top: 24px; padding: 19px; border-radius: 7px; color: #fff; background: var(--ink); }
.method-card > svg:first-child { width: 30px; color: #ff6268; }
.method-card > svg:last-child { width: 18px; }
.method-card small { display: block; margin-bottom: 4px; color: #ff777c; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.method-card strong { display: block; font-size: 13px; line-height: 1.35; }

/* Method */
.score-explainer { padding: 86px 0; color: #fff; background: var(--ink); }
.score-explainer > .content-width { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.score-explainer h2 { margin: 9px 0 18px; font-size: clamp(38px,5vw,62px); line-height: 1; letter-spacing: -.06em; }
.score-explainer p { color: #b9bbc0; }
.score-explainer a { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: #ff5f65; font-weight: 800; }
.score-explainer a svg { width: 17px; }
.score-explainer ol { margin: 0; padding: 0; list-style: none; }
.score-explainer li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-top: 1px solid #3b3d42; }
.score-explainer li > b { color: #ff5f65; font-size: 13px; }
.score-explainer li h3 { margin: 0 0 6px; font-size: 20px; }
.score-explainer li p { margin: 0; font-size: 14px; }

/* Cards and category pages */
.review-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.review-card { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-card-image { position: relative; aspect-ratio: 16/10; display: grid; place-items: center; overflow: hidden; background: #f4f4f5; }
.review-card-image img { width: 100%; height: 100%; object-fit: contain; }
.card-score { position: absolute; right: 12px; bottom: 12px; min-width: 55px; padding: 8px; border-radius: 5px; color: #fff; background: var(--red); text-align: center; line-height: 1; }
.card-score b { font-size: 20px; }
.card-score small { font-size: 9px; }
.review-card-body { padding: 20px; }
.card-category { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.review-card h3 { margin: 6px 0 9px; font-size: 22px; letter-spacing: -.035em; }
.review-card p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 15px; border-top: 1px solid #ececef; }
.card-bottom > span { display: inline-flex; align-items: center; gap: 3px; color: var(--red); font-size: 12px; font-weight: 800; }
.card-bottom > span svg { width: 14px; }
.star-rating { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 11px; line-height: 1; }
.stars { position: relative; display: inline-block; color: #c9cbd0; font-size: 17px; letter-spacing: 1px; white-space: nowrap; }
.stars-fill { position: absolute; inset: 0 auto 0 0; overflow: hidden; color: var(--red); }
.star-rating strong { color: var(--ink); font-size: 14px; }
.category-subnav, .review-subnav { position: sticky; top: 68px; z-index: 45; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.category-subnav .content-width, .review-subnav .content-width { min-height: 50px; display: flex; align-items: center; gap: 34px; }
.category-subnav strong, .review-subnav strong { font-size: 13px; }
.category-subnav nav, .review-subnav nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.category-subnav a, .review-subnav a { color: var(--muted); font-size: 12px; }
.category-subnav a:hover, .review-subnav a:hover { color: var(--red); }
.category-hero { min-height: 420px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: #fff; }
.category-hero-copy { width: min(630px,calc(100% - 48px)); align-self: center; justify-self: end; padding: 55px 60px 55px 24px; }
.category-hero-copy > span { color: #ff6268; font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.category-hero h1 { margin: 8px 0 15px; font-size: clamp(42px,5vw,66px); line-height: 1; letter-spacing: -.055em; }
.category-hero p { max-width: 540px; color: #c9cbd0; }
.category-hero-copy > div { margin-top: 24px; color: #aeb0b4; font-size: 12px; }
.category-hero-copy > div b { margin-right: 5px; color: #fff; font-size: 22px; }
.category-hero-image { min-width: 0; background: #eee; overflow: hidden; }
.category-hero-image img { width: 100%; height: 100%; object-fit: contain; }
.category-results { padding: 76px 0 90px; }
.empty-state { padding: 70px 24px; border: 1px dashed #c9cbd0; border-radius: 8px; text-align: center; }
.empty-state svg { width: 34px; color: var(--red); }
.empty-state h3 { margin: 10px 0 5px; }
.empty-state p { margin: 0; color: var(--muted); }

/* Review page */
.review-header { padding: 45px 0 34px; border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: 11px; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb svg { width: 13px; }
.review-label { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.review-header h1 { max-width: 920px; margin: 7px 0 15px; font-size: clamp(42px,6vw,74px); line-height: .98; letter-spacing: -.065em; }
.review-header > .content-width > p { max-width: 900px; margin: 0 0 24px; color: #55585d; font-size: 19px; }
.byline { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: 10px; font-weight: 900; }
.byline > div { display: grid; gap: 2px; }
.byline strong { font-size: 12px; }
.byline small { color: var(--muted); font-size: 10px; }
.byline > a { display: inline-flex; align-items: center; gap: 5px; margin-left: 12px; color: var(--blue); font-size: 11px; font-weight: 700; }
.byline > a svg { width: 15px; }
.product-overview { padding: 38px 0 56px; background: var(--soft); }
.product-overview > .content-width { display: grid; grid-template-columns: minmax(0,1.22fr) minmax(340px,.78fr); gap: 36px; align-items: stretch; }
.product-media { min-height: 500px; display: grid; place-items: center; overflow: hidden; border: 1px solid #e0e1e3; border-radius: 8px; background: #fff; }
.product-media img { width: 100%; height: 100%; max-height: 560px; padding: 24px; object-fit: contain; }
.quick-verdict { padding: 28px; border-top: 5px solid var(--red); border-radius: 4px 4px 8px 8px; background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.06); }
.quick-verdict > span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.quick-verdict h2 { margin: 5px 0 16px; font-size: 26px; line-height: 1.12; letter-spacing: -.04em; }
.quick-score { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-block: 1px solid var(--line); }
.quick-score > strong { font-size: 48px; line-height: 1; letter-spacing: -.06em; }
.quick-score > div { display: grid; gap: 5px; }
.quick-score a { color: var(--blue); font-size: 11px; font-weight: 700; }
.quick-verdict dl { margin: 0; }
.quick-verdict dl > div { padding: 13px 0; border-bottom: 1px solid var(--line); }
.quick-verdict dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.quick-verdict dd { margin: 4px 0 0; font-size: 13px; }
.quick-bottom-line { margin: 15px 0; font-size: 13px; }
.quick-bottom-line strong { display: block; margin-bottom: 4px; color: var(--red); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.price-block { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 11px; margin: 17px 0; }
.current-price { font-size: 25px; font-weight: 900; }
.regular-price { color: #999; font-size: 13px; text-decoration: line-through; }
.price-note { width: 100%; color: var(--muted); font-size: 10px; }
.price-block small { color: var(--muted); font-size: 9px; }
.buy-button { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 16px; border-radius: 5px; color: #fff; background: var(--red); font-size: 13px; font-weight: 800; }
.buy-button:hover { background: var(--red-dark); }
.buy-button svg { width: 17px; }
.commerce-note { display: block; margin-top: 8px; color: var(--muted); font-size: 9px; text-align: center; }
.review-layout { display: grid; grid-template-columns: minmax(0,880px) minmax(220px,1fr); gap: 70px; align-items: start; padding-top: 64px; padding-bottom: 90px; }
.verdict-panel { scroll-margin-top: 135px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.verdict-intro { display: grid; grid-template-columns: 1fr 180px; gap: 28px; padding: 30px; color: #fff; background: var(--ink); }
.verdict-intro h2 { margin: 5px 0 9px; font-size: 38px; letter-spacing: -.05em; }
.verdict-intro p { max-width: 560px; margin: 0; color: #c8c9cc; font-size: 13px; }
.overall-score { display: grid; place-items: center; align-content: center; padding: 18px; border-radius: 7px; color: var(--ink); background: #fff; }
.overall-score > strong { font-size: 56px; line-height: .9; letter-spacing: -.07em; }
.overall-score > span { margin: 5px 0 8px; color: var(--muted); font-size: 10px; }
.usecase-scores { padding: 13px 30px 20px; }
.usecase-row { display: grid; grid-template-columns: 170px 1fr 42px; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid #ececef; }
.usecase-row:last-child { border-bottom: 0; }
.usecase-label { display: grid; gap: 2px; }
.usecase-label strong { font-size: 13px; }
.usecase-label span { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.score-meter { height: 7px; overflow: hidden; border-radius: 10px; background: #e5e6e8; }
.score-meter span { display: block; height: 100%; border-radius: 10px; background: linear-gradient(90deg,var(--amber),var(--red)); }
.usecase-row > b { color: var(--red); font-size: 18px; text-align: right; }
.review-main > section, .cms-content { scroll-margin-top: 135px; }
.review-summary { margin-top: 54px; }
.review-main h2 { margin: 8px 0 16px; font-size: 36px; line-height: 1.1; letter-spacing: -.045em; }
.review-summary > p { color: #404247; font-size: 17px; }
.review-summary ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 23px 0 0; padding: 0; list-style: none; }
.review-summary li { display: flex; align-items: start; gap: 9px; padding: 14px; border-radius: 6px; background: var(--soft); font-size: 13px; font-weight: 600; }
.review-summary li svg { flex: 0 0 auto; width: 17px; color: var(--green); }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.pros-cons > div { padding: 22px; border: 1px solid var(--line); border-radius: 7px; }
.pros-cons h3 { display: flex; align-items: center; gap: 8px; margin: 0 0 12px; font-size: 16px; }
.pros-cons h3 svg { width: 18px; color: var(--green); }
.pros-cons > div:last-child h3 svg { color: var(--red); }
.pros-cons ul { margin: 0; padding-left: 18px; color: #4c4f54; font-size: 13px; }
.pros-cons li { margin: 7px 0; }
.cms-content { margin-top: 58px; }
.cms-content h2 { margin: 54px 0 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 32px; }
.cms-content h3 { margin: 32px 0 10px; font-size: 22px; letter-spacing: -.025em; }
.cms-content p { margin: 0 0 18px; color: #404247; font-size: 16px; line-height: 1.75; }
.cms-content ul, .cms-content ol { color: #404247; }
.cms-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.cms-content blockquote { margin: 25px 0; padding: 18px 20px; border-left: 4px solid var(--red); background: var(--soft); }
.specifications, .source-section, .featured-products { margin-top: 62px; }
.spec-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.spec-grid > div { min-height: 86px; padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-grid dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.spec-grid dd { margin: 6px 0 0; font-size: 13px; font-weight: 600; }
.source-section > p { color: var(--muted); }
.source-section ul { margin: 20px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.source-section a { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 4px; border-bottom: 1px solid var(--line); color: var(--blue); font-size: 13px; font-weight: 700; }
.source-section a:hover { color: var(--red); }
.source-section svg { width: 17px; }
.featured-products article { display: grid; grid-template-columns: 220px 1fr; gap: 25px; margin-top: 20px; padding: 20px; border: 1px solid var(--line); }
.featured-products article img { width: 100%; height: 180px; object-fit: contain; }
.featured-products article h3 { margin: 0 0 8px; }
.featured-products article p { color: var(--muted); }
.review-aside { position: sticky; top: 138px; display: grid; gap: 25px; }
.review-aside nav { display: grid; padding-left: 18px; border-left: 3px solid var(--red); }
.review-aside nav span { margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.review-aside nav a { padding: 5px 0; color: #5a5d62; font-size: 12px; }
.review-aside nav a:hover { color: var(--red); }
.review-aside > div { padding: 18px; border-radius: 7px; background: var(--soft); }
.review-aside > div > svg { width: 22px; color: var(--blue); }
.review-aside > div strong { display: block; margin: 8px 0 5px; font-size: 12px; }
.review-aside > div p { margin: 0 0 10px; color: var(--muted); font-size: 11px; }
.review-aside > div a { color: var(--blue); font-size: 11px; font-weight: 700; }
.related-reviews { padding: 72px 0 90px; background: var(--soft); }

/* Content pages */
.content-page > header { padding: 75px 0; color: #fff; background: var(--ink); }
.content-page > header span { color: #ff6268; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.content-page > header h1 { max-width: 900px; margin: 8px 0 15px; font-size: clamp(42px,6vw,70px); line-height: 1; letter-spacing: -.06em; }
.content-page > header p { max-width: 760px; margin: 0; color: #c8c9cc; font-size: 19px; }
.prose { max-width: 800px; margin: 62px auto 90px; }
.prose h2 { margin: 45px 0 13px; font-size: 30px; letter-spacing: -.04em; }
.prose p { color: #42454a; line-height: 1.75; }
.prose a { color: var(--blue); text-decoration: underline; }
.not-found { min-height: 65vh; display: grid; place-items: center; padding: 70px 24px; text-align: center; }
.not-found span { color: var(--red); font-size: 14px; font-weight: 900; }
.not-found h1 { margin: 8px 0; font-size: clamp(40px,6vw,70px); letter-spacing: -.06em; }
.not-found p { color: var(--muted); }
.not-found a { display: inline-flex; align-items: center; gap: 7px; color: var(--red); font-weight: 800; }

/* Footer */
.site-footer { color: #fff; background: #0e0f11; }
.footer-main { padding: 68px 24px 54px; }
.footer-grid { width: min(100%,var(--content)); display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 52px; margin-inline: auto; }
.site-footer .brand-words strong { color: #fff; }
.footer-brand > p { max-width: 320px; margin: 20px 0; color: #a9abb0; font-size: 13px; }
.independence-note { display: inline-flex; align-items: center; gap: 7px; color: #ff656b; font-size: 11px; font-weight: 700; }
.independence-note svg { width: 16px; }
.footer-col { display: grid; align-content: start; gap: 9px; }
.footer-col h3 { margin: 0 0 8px; color: #fff; font-size: 12px; }
.footer-col a { color: #a9abb0; font-size: 12px; }
.footer-col a:hover { color: #ff656b; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 18px max(24px,calc((100% - var(--content))/2)); border-top: 1px solid #303237; color: #85878d; font-size: 10px; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .nav-actions { margin-left: auto; }
  .menu-button { display: grid; }
  .hero-content { transform: none; }
  .category-mega-card { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .category-column:nth-child(3n) { border-right: 1px solid #ececef; }
  .category-column:nth-child(2n) { border-right: 0; }
  .category-column:nth-last-child(-n+2) { border-bottom: 1px solid #ececef; }
  .category-column:last-child { border-bottom: 0; }
  .review-layout { grid-template-columns: 1fr; }
  .review-aside { position: static; grid-template-columns: 1fr 1fr; }
  .review-aside nav { display: none; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2,1fr); }
  .footer-col:last-child { grid-column: 2; }
}

@media (max-width: 780px) {
  .content-width { width: min(calc(100% - 30px),var(--content)); }
  .site-header, .site-header.overlay-header { top: 0; padding: 0; }
  .nav-shell { height: 62px; border-radius: 0; padding-inline: 14px; }
  .brand-sigil { width: 37px; height: 37px; }
  .brand-words strong { font-size: 13px; }
  .brand-words em { font-size: 11px; }
  .admin-link { display: none; }
  .home-hero { min-height: 680px; }
  .hero-content { width: calc(100% - 30px); margin-top: 80px; }
  .home-hero h1 { font-size: clamp(43px,13vw,64px); }
  .hero-copy { font-size: 15px; }
  .hero-search kbd { display: none; }
  .hero-suggestions { gap: 12px; }
  .category-directory { padding: 38px 0 55px; }
  .category-mega-card { grid-template-columns: 1fr; }
  .category-column, .category-column:nth-child(2n), .category-column:nth-child(3n), .category-column:nth-last-child(-n+2) { min-height: 0; padding: 22px; border-right: 0; border-bottom: 1px solid #ececef; }
  .category-column:last-child { border-bottom: 0; }
  .category-column > p { min-height: 0; }
  .whats-new { padding: 58px 0 68px; }
  .section-title-row { display: block; }
  .section-title-row > p { margin-top: 12px; }
  .new-grid { grid-template-columns: 1fr; }
  .news-rail { padding-left: 0; border-left: 0; }
  .rail-story a { grid-template-columns: 118px 1fr; }
  .rail-story a > div { height: 95px; }
  .score-explainer { padding: 62px 0; }
  .score-explainer > .content-width { grid-template-columns: 1fr; gap: 45px; }
  .review-grid { grid-template-columns: 1fr; }
  .category-subnav, .review-subnav { top: 62px; overflow-x: auto; }
  .category-subnav .content-width, .review-subnav .content-width { width: max-content; min-width: 100%; padding-inline: 15px; }
  .category-hero { grid-template-columns: 1fr; }
  .category-hero-copy { width: 100%; padding: 48px 20px; }
  .category-hero-image { min-height: 320px; }
  .review-header { padding: 34px 0 28px; }
  .review-header h1 { font-size: clamp(40px,12vw,60px); }
  .review-header > .content-width > p { font-size: 16px; }
  .byline { align-items: start; flex-wrap: wrap; }
  .byline > a { width: 100%; margin-left: 50px; }
  .product-overview > .content-width { grid-template-columns: 1fr; }
  .product-media { min-height: 350px; }
  .review-layout { gap: 45px; padding-top: 45px; }
  .verdict-intro { grid-template-columns: 1fr; }
  .overall-score { grid-template-columns: auto auto; gap: 10px; justify-content: start; }
  .overall-score > span { margin: 0; }
  .overall-score .star-rating { grid-column: 1/-1; }
  .usecase-scores { padding-inline: 18px; }
  .usecase-row { grid-template-columns: 120px 1fr 35px; gap: 10px; }
  .review-summary ul, .pros-cons, .spec-grid { grid-template-columns: 1fr; }
  .cms-content h2 { font-size: 28px; }
  .review-aside { grid-template-columns: 1fr; }
  .featured-products article { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .search-panel { padding: 20px 10px; }
  .search-inner { padding: 20px; }
  .home-hero h1 { font-size: 42px; }
  .hero-suggestions a:nth-of-type(n+3) { display: none; }
  .lead-story-copy { padding: 20px; }
  .lead-score { width: 62px; height: 62px; }
  .quick-verdict { padding: 22px; }
  .usecase-row { grid-template-columns: 1fr 38px; }
  .score-meter { grid-column: 1/-1; grid-row: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
