/* Cleaning Business Software Guide — "operations center" dark dashboard (option-2)
   Deep teal-black canvas, teal + lime accents, Manrope. */

@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 400 800; font-display: swap; src: url('/assets/fonts/manrope.woff2') format('woff2'); }

:root {
  --bg: #0a1512;
  --bg-2: #0d1a16;
  --surface: #10201b;
  --surface-2: #14261f;
  --card: #11221c;
  --teal: #17b8a4;
  --teal-bright: #2dd4bf;
  --teal-dim: #0f7d70;
  --lime: #bef264;
  --lime-2: #a3e635;
  --ink: #061410;
  --text: #d6e4de;
  --heading: #ffffff;
  --muted: #86a096;
  --muted-2: #6f8880;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .055);
  --danger: #f26d6d;
  --shadow: 0 22px 60px rgba(0, 0, 0, .45);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, .28);
  --sans: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --focus: 0 0 0 3px rgba(45, 212, 191, .4);
  --grid: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; color: var(--teal-bright); }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--sans); line-height: 1.14; letter-spacing: -.02em; font-weight: 800; color: var(--heading); }
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 8px; }
::selection { background: var(--teal); color: var(--ink); }
.container, .shell { width: min(1200px, calc(100% - 40px)); margin-inline: auto; }
.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; }
.text-small { font-size: 13px; }
.text-muted { color: var(--muted); }
.center-link { display: block; text-align: center; margin-top: 16px; }
.text-link { color: var(--teal-bright); font-weight: 700; font-size: 13px; }
.text-link:hover { color: var(--lime); }

/* Buttons */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 22px; border-radius: 10px; border: 1px solid transparent; font-family: var(--sans); font-weight: 700; font-size: 14.5px; letter-spacing: .005em; cursor: pointer; transition: transform .16s, box-shadow .16s, background .16s, border-color .16s; }
.button:hover { transform: translateY(-1px); text-decoration: none; }
.button .ico { width: 18px; height: 18px; }
.button-primary { background: var(--teal); color: var(--ink); box-shadow: 0 8px 24px rgba(23, 184, 164, .28); }
.button-primary:hover { background: var(--teal-bright); color: var(--ink); box-shadow: 0 12px 30px rgba(45, 212, 191, .4); }
.button-outline { border-color: rgba(255, 255, 255, .18); background: transparent; color: var(--heading); }
.button-outline:hover { border-color: var(--teal); color: var(--teal-bright); }
.button-blue, .button-navy, .button-dark { background: var(--surface-2); color: var(--heading); border-color: var(--line); }
.button-blue:hover, .button-navy:hover, .button-dark:hover { border-color: var(--teal); color: var(--teal-bright); }
.button-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.blue-outline { border-color: var(--teal); color: var(--teal-bright); }
.button-compact { min-height: 40px; padding: 0 16px; font-size: 13px; }

/* Header */
.announcement { background: var(--bg-2); color: var(--muted); text-align: center; font-size: 13px; padding: 8px 16px; border-bottom: 1px solid var(--line-2); }
.announcement a { color: var(--teal-bright); font-weight: 700; }
.signal-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); margin-right: 7px; vertical-align: middle; box-shadow: 0 0 0 4px rgba(190, 242, 100, .16); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10, 21, 18, .82); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-text b { font-family: var(--sans); font-weight: 800; font-size: 18px; letter-spacing: -.02em; color: var(--heading); }
.brand-text i { font-family: var(--sans); font-style: normal; font-weight: 800; font-size: 18px; letter-spacing: -.02em; color: var(--heading); }
.main-nav { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.main-nav a { color: var(--text); font-size: 14.5px; font-weight: 600; }
.main-nav a:hover { color: var(--teal-bright); }
.main-nav a[aria-current="page"] { color: var(--teal-bright); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.icon-button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); color: var(--text); font-size: 20px; cursor: pointer; display: grid; place-items: center; }
.icon-button:hover { border-color: var(--teal); color: var(--teal-bright); }
.icon-button .ico { width: 20px; height: 20px; }
.icon-button.plain { border: 0; color: var(--muted); }
.mobile-toggle { display: none; margin-left: auto; background: transparent; border: 0; color: var(--heading); font-size: 28px; cursor: pointer; }

/* ============================================================
   HOME — cinematic full-bleed photo hero
   ============================================================ */
/* Transparent header integrated over the hero (home only) */
.is-home .announcement { display: none; }
.is-home .site-header { position: absolute; top: 0; left: 0; right: 0; background: transparent; border-bottom: 0; backdrop-filter: none; z-index: 30; }
.is-home .site-header .nav-actions { display: none; }
.is-home .main-nav a { color: #eaf3ef; }
.is-home main { display: block; }

.hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 118px 0 30px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 68% center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--bg) 6%, rgba(10,21,18,.92) 27%, rgba(10,21,18,.5) 50%, rgba(10,21,18,.12) 70%, rgba(10,21,18,.5) 100%); }
.hero-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,21,18,.5) 0%, transparent 20%, transparent 72%, rgba(10,21,18,.9) 100%); }
.hero-body { position: relative; z-index: 3; flex: 1; display: grid; grid-template-columns: 1.08fr 1fr; gap: 36px; align-items: center; }
.hero-copy { max-width: 620px; }
.eyebrow { text-transform: uppercase; color: var(--teal-bright); font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: .16em; margin: 0 0 20px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--teal); display: inline-block; }
.eyebrow.centered { justify-content: center; }
.hero h1 { font-family: var(--sans); font-size: clamp(38px, 4.7vw, 60px); line-height: 1.02; letter-spacing: -.03em; font-weight: 800; margin: 0 0 22px; color: var(--heading); text-shadow: 0 2px 34px rgba(0,0,0,.45); }
.hero h1 span { display: block; white-space: nowrap; }
.hero-lead { max-width: 42ch; font-size: 18px; color: #cfe0da; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-textlink { font-weight: 700; color: var(--heading); font-family: var(--sans); border: 1px solid rgba(255,255,255,.28); border-radius: 10px; padding: 13px 20px; display: inline-flex; gap: 8px; align-items: center; }
.hero-textlink:hover { border-color: var(--teal); color: var(--teal-bright); text-decoration: none; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: #a8bcb4; font-size: 13.5px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .ico { width: 17px; height: 17px; color: var(--teal-bright); }
.hero-trust b { display: inline-flex; width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }

/* Floating widget cards over the photo */
.hero-widgets { position: relative; min-height: 480px; }
.float-stack { position: absolute; top: 0; right: 0; z-index: 4; display: flex; flex-direction: column; gap: 12px; width: 244px; }
.float-row { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; display: flex; gap: 12px; }
.float-card { background: rgba(8, 16, 13, .72); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, .16); border-radius: 14px; padding: 14px; box-shadow: 0 16px 40px rgba(0, 0, 0, .55); }
.float-row .float-card { flex: 1; min-width: 0; }
.float-card h3 { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin: 0 0 9px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.float-card h3 .ico { width: 15px; height: 15px; color: var(--teal-bright); }
.ops-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 99px; background: rgba(190, 242, 100, .14); color: var(--lime); }
.ops-badge.progress { background: rgba(45, 212, 191, .14); color: var(--teal-bright); }
.ops-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); }
.ops-row strong { color: var(--heading); font-weight: 700; }
.ops-sub { font-size: 12px; color: var(--muted); margin: 4px 0 0; }
.sched { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-top: 4px; }
.sched span { height: 15px; border-radius: 4px; background: rgba(255,255,255,.06); }
.sched span.t { background: var(--teal); } .sched span.l { background: var(--lime-2); }
.sched-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; margin-bottom: 5px; font-size: 9px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .03em; }
.sched-days span { text-align: center; }
.route-mini { height: 58px; border-radius: 10px; background: rgba(255,255,255,.04); position: relative; overflow: hidden; }
.route-mini svg { width: 100%; height: 100%; }
.bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,.14); overflow: hidden; margin-top: 8px; }
.bar > span { display: block; height: 100%; background: var(--teal); border-radius: 99px; }

/* Hero vendor comparator panel (inside the hero, bottom) */
.hero-vendors { position: relative; z-index: 3; margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(8, 16, 13, .68); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.14); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; }
.hv-col { padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.09); }
.hv-col:last-child { border-right: 0; }
.hv-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.hv-brand .logo-tile { width: 40px; height: 40px; }
.hv-brand strong { font-size: 23px; color: var(--heading); font-weight: 800; letter-spacing: -.01em; }
.hv-caps { display: flex; flex-wrap: wrap; gap: 7px; }
.hv-cap { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 600; font-family: var(--sans); color: var(--text); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 5px 9px; }
.hv-cap .ico { width: 13px; height: 13px; color: var(--teal-bright); }
.hv-cap.is-off { color: var(--muted-2); }
.hv-cap.is-off .ico { color: var(--muted-2); opacity: .5; }

@media (max-width: 980px) {
  .hero { min-height: auto; padding: 108px 0 30px; }
  .hero-body { grid-template-columns: 1fr; gap: 28px; }
  .hero-widgets { min-height: 420px; }
  .float-stack { width: 200px; }
  .hero-vendors { grid-template-columns: 1fr; }
  .hv-col { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .hv-col:last-child { border-bottom: 0; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 42px; }
  .hero-widgets { min-height: 0; }
  .float-stack { position: static; width: auto; margin-bottom: 12px; }
  .float-row { position: static; flex-wrap: wrap; }
  .float-row .float-card { flex: 1 1 45%; }
}

/* Top-picks card */
.picks-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 22px 22px 10px; box-shadow: var(--shadow); }
.picks-card h2 { font-family: var(--sans); font-size: 20px; margin: 0 0 4px; color: var(--heading); }
.picks-head { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 6px; }
.picks-head a { font-family: var(--sans); font-size: 12.5px; font-weight: 700; color: var(--teal-bright); }
.pick-row { display: grid; grid-template-columns: 132px 1fr; gap: 16px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line-2); }
.pick-row:last-child { border-bottom: 0; }
.pick-brand { display: flex; align-items: center; gap: 11px; }
.pick-brand .logo-tile { width: 36px; height: 36px; }
.pick-brand strong { font-family: var(--sans); font-size: 15px; color: var(--heading); font-weight: 700; }
.pick-caps { display: flex; flex-wrap: wrap; gap: 6px; }
.pick-cap { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; font-family: var(--sans); color: var(--text); background: var(--surface-2); border: 1px solid var(--line); border-radius: 7px; padding: 4px 8px; }
.pick-cap .ico { width: 13px; height: 13px; color: var(--teal-bright); }
.pick-cap.is-off { color: var(--muted-2); background: transparent; }
.pick-cap.is-off .ico { color: var(--muted-2); opacity: .5; }

/* Stats strip */
.stats-strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 30px 0; }
.stat { display: flex; align-items: center; justify-content: center; gap: 15px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-icon { color: var(--teal-bright); line-height: 1; }
.stat-icon .ico { width: 28px; height: 28px; }
.stat p { margin: 0; }
.stat strong, .stat small { display: block; }
.stat strong { font-size: 21px; color: var(--heading); font-weight: 800; }
.stat small { max-width: 170px; font-size: 12.5px; color: var(--muted); }

/* Sections */
.section { padding: 58px 0; }
.section-heading { margin-bottom: 26px; }
.section-heading h2 { font-size: 32px; margin: 0; }
.section-heading p { color: var(--muted); margin: 8px 0 0; max-width: 66ch; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.split-heading > a { color: var(--teal-bright); font-family: var(--sans); font-weight: 700; font-size: 13.5px; white-space: nowrap; }
.mini-heading h2 { text-transform: uppercase; font-family: var(--sans); font-size: 13px; letter-spacing: .08em; color: var(--muted); }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { position: relative; border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; box-shadow: var(--shadow-sm); background: var(--card); display: flex; flex-direction: column; transition: transform .16s, box-shadow .16s, border-color .16s; }
.product-card:hover { transform: translateY(-3px); border-color: rgba(23,184,164,.5); box-shadow: var(--shadow); }
.badge { position: absolute; top: 0; right: 22px; transform: translateY(-50%); padding: 6px 12px; border-radius: 99px; color: var(--ink); background: var(--teal); font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: .02em; }
.badge.green { background: var(--lime); color: var(--ink); }
.badge.blue { background: var(--teal-bright); color: var(--ink); }
.badge.navy { background: var(--surface-2); color: var(--teal-bright); border: 1px solid var(--line); }
.product-head { display: flex; align-items: center; gap: 14px; }
.product-card h3 { margin: 0; font-size: 21px; }
.product-card .rating { margin: 12px 0 4px; font-family: var(--sans); color: var(--muted); }
.product-card .rating strong { color: var(--lime); font-weight: 800; }
.product-card > p:not(.rating) { color: var(--text); font-size: 14.5px; }
.product-card ul { list-style: none; padding: 0; margin: 16px 0; }
.product-card li { font-size: 13.5px; margin: 9px 0; display: flex; align-items: flex-start; gap: 9px; color: var(--text); }
.product-card li .ico { flex: none; margin-top: 2px; width: 16px; height: 16px; color: var(--teal-bright); stroke-width: 2.3; }
.product-card .card-actions { margin-top: auto; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.card-actions.single { grid-template-columns: 1fr; }
.price-line { font-family: var(--sans); font-size: 13px; color: var(--muted); }
.price-line strong { color: var(--heading); font-size: 15px; }

/* Categories */
.categories-section { padding-top: 8px; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-grid a { min-height: 128px; border: 1px solid var(--line); border-radius: 14px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left; padding: 20px; background: var(--card); box-shadow: var(--shadow-sm); font-family: var(--sans); font-weight: 700; transition: .16s; }
.category-grid a:hover { border-color: var(--teal); transform: translateY(-2px); }
.category-grid span { color: var(--teal-bright); line-height: 1; margin-bottom: 14px; }
.category-grid .ico { width: 26px; height: 26px; }
.category-grid strong { font-size: 15px; color: var(--heading); }
.category-grid small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; margin-top: 4px; }

/* Trust section */
.trust-section { padding: 10px 0 22px; }
.trust-section h2 { text-align: center; text-transform: uppercase; font-family: var(--sans); font-size: 13px; letter-spacing: .08em; color: var(--muted); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.trust-grid > div { display: flex; gap: 16px; padding: 0 28px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid span, .trust-grid .ico-lg { color: var(--teal-bright); flex: none; }
.trust-grid .ico { width: 28px; height: 28px; }
.trust-grid p { margin: 0; }
.trust-grid strong { display: block; font-family: var(--sans); font-size: 16px; color: var(--heading); font-weight: 800; }
.trust-grid small { display: block; color: var(--muted); font-size: 13px; margin-top: 7px; }

/* Article/guide cards */
.article-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.article-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--card); transition: .16s; }
.article-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.article-card img { width: 100%; height: 140px; object-fit: cover; background: var(--surface); }
.article-cover { height: 148px; display: grid; place-items: center; background: radial-gradient(120% 120% at 20% 10%, rgba(23,184,164,.25), var(--surface) 70%); }
.article-cover .ico { width: 44px; height: 44px; color: var(--teal-bright); stroke-width: 1.7; }
.article-card > div { padding: 16px; }
.article-meta { display: flex; justify-content: space-between; font-family: var(--sans); font-size: 10.5px; margin: 0; }
.article-meta span { color: var(--teal-bright); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.article-meta time { color: var(--muted-2); }
.article-card h3 { font-size: 17px; line-height: 1.28; margin: 10px 0; }
.article-card > div > p:last-child { font-size: 13px; color: var(--muted); }

/* Footer */
.site-footer { background: var(--bg-2); color: var(--text); padding: 46px 0 16px; border-top: 1px solid var(--line); margin-top: 8px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--muted); max-width: 40ch; }
.footer-grid h3 { font-family: var(--sans); font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); margin: 0 0 14px; }
.footer-grid p, .footer-grid a { font-size: 13px; color: var(--text); }
.footer-grid > div:not(.footer-brand) > a { display: block; margin: 8px 0; }
.footer-grid a:hover { color: var(--teal-bright); }
.footer-button { border-color: var(--teal) !important; color: var(--teal-bright) !important; margin-top: 16px !important; background: transparent !important; }
.copyright { text-align: center; color: var(--muted-2); font-size: 11.5px; padding-top: 22px; margin-top: 24px; border-top: 1px solid var(--line-2); }
.source-note { color: var(--muted-2); font-size: 12px; }

/* Toast */
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 100; background: var(--surface-2); color: var(--heading); padding: 14px 18px; border-radius: 12px; box-shadow: var(--shadow); border: 1px solid var(--line); transform: translateY(120px); opacity: 0; transition: .25s; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ============================================================
   Interior pages
   ============================================================ */
main { display: block; }
.page-hero { background: radial-gradient(100% 120% at 90% -20%, rgba(23,184,164,.12), transparent 55%), var(--bg-2); border-bottom: 1px solid var(--line); padding: 44px 0; }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(30px, 3.8vw, 46px); margin: 8px 0 14px; max-width: 20ch; }
.page-hero p { color: var(--muted); max-width: 70ch; font-size: 17px; }
.breadcrumbs { font-family: var(--sans); font-size: 12.5px; color: var(--muted); }
.breadcrumbs a { color: var(--teal-bright); font-weight: 700; }
.section-block { padding: 44px 0; }
.section-head { margin-bottom: 20px; }
.section-head h2 { font-size: 28px; margin: 0 0 6px; }
.section-sub { color: var(--muted); }
.data-table, .research-table { width: 100%; border-collapse: collapse; background: var(--card); font-family: var(--sans); font-size: 14px; margin: 12px 0; border-radius: 12px; overflow: hidden; }
.data-table th, .data-table td, .research-table th, .research-table td { padding: 13px 15px; border: 1px solid var(--line); text-align: left; vertical-align: top; color: var(--text); }
.data-table thead th, .research-table thead th { background: var(--surface-2); font-size: 13px; color: var(--heading); }
.card { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: var(--card); box-shadow: var(--shadow-sm); }
.callout, .source-list { border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; background: var(--surface); }
.meta-row { display: flex; flex-wrap: wrap; gap: 16px; font-family: var(--sans); font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.evidence-badge, .badge-pill { display: inline-block; font-family: var(--sans); font-size: 11px; font-weight: 800; letter-spacing: .03em; padding: 5px 11px; border-radius: 99px; background: rgba(45,212,191,.14); color: var(--teal-bright); }
.evidence-vendor-research { background: var(--surface-2); color: var(--muted); }
.evidence-hands-on, .evidence-verified-customer { background: rgba(190,242,100,.14); color: var(--lime); }
.facet-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.facet-chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 8px; background: var(--surface-2); color: var(--text); border: 1px solid var(--line); }
.facet-chip .ico { width: 14px; height: 14px; color: var(--teal-bright); }

/* Search dialog */
.search-dialog { border: 1px solid var(--line); border-radius: 16px; padding: 24px; width: min(560px, 92vw); box-shadow: var(--shadow); background: var(--surface); color: var(--text); }
.search-dialog::backdrop { background: rgba(0, 0, 0, .6); }
.search-input { width: 100%; height: 46px; border: 1px solid var(--line); border-radius: 8px; padding: 0 12px; margin-top: 6px; background: var(--bg-2); color: var(--text); }
.search-results a { display: block; padding: 10px 8px; border-bottom: 1px solid var(--line); }
.search-dialog-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.search-dialog-head h2 { font-size: 19px; margin: 0; }
.search-label { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.search-result { display: block; padding: 10px 8px; border-bottom: 1px solid var(--line); }
.search-result strong { display: block; color: var(--heading); }
.search-result span { font-size: 13px; color: var(--muted); }

/* Skip link + logo tiles + icons */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--surface); color: var(--teal-bright); padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 700; }
.skip-link:focus { left: 0; box-shadow: var(--shadow); }
.logo-tile { display: grid; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; flex: none; }
.logo-tile img { width: 66%; height: 66%; object-fit: contain; }
.logo-tile.sm { width: 44px; height: 44px; }
.logo-tile.lg { width: 58px; height: 58px; }
.logo-tile.fallback { background: var(--surface-2); color: var(--teal-bright); font-family: var(--sans); font-weight: 800; font-size: 17px; }
.ico { width: 1em; height: 1em; stroke: currentColor; stroke-width: 1.85; fill: none; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.125em; }
.check .ico { width: 12px; height: 12px; stroke-width: 3; }
.tick { color: var(--lime); }

.mt-0 { margin-top: 0; } .mt-1 { margin-top: 4px; } .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.narrow { max-width: 760px; margin-inline: auto; }
.table-wrap { overflow-x: auto; margin: 16px 0; border: 1px solid var(--line); border-radius: 12px; }
.table-wrap table { margin: 0; border: 0; }
.section-soft { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-intro { color: var(--muted); max-width: 75ch; font-size: 16.5px; margin: 6px 0 22px; }
.mobile-scroll-hint { font-family: var(--sans); font-size: 12px; color: var(--muted); }

/* Content prose + TOC */
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 48px; align-items: start; }
.content-prose { max-width: 760px; font-size: 16.5px; }
.content-prose h2 { font-size: 27px; margin: 40px 0 14px; }
.content-prose h3 { font-size: 20px; margin: 26px 0 8px; }
.content-prose p, .content-prose li { color: var(--text); }
.content-prose ul, .content-prose ol { padding-left: 20px; }
.content-prose li { margin: 8px 0; }
.content-prose a { color: var(--teal-bright); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.content-prose > p:first-of-type { font-size: 18px; color: #e7f0ec; }
.review-shot { margin: 24px 0 10px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--card); box-shadow: var(--shadow-sm); }
.review-shot img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--line); }
.review-shot figcaption { font-family: var(--sans); font-size: 12px; color: var(--muted); padding: 10px 14px; }
.toc { position: sticky; top: 100px; border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: var(--card); }
.toc h2 { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 10px; }
.toc a { display: block; padding: 7px 0; font-family: var(--sans); font-size: 14px; color: var(--text); border-bottom: 1px solid var(--line-2); }
.toc a:hover { color: var(--teal-bright); }
.clean-list { list-style: none; padding: 0; }
.clean-list li { position: relative; padding-left: 28px; margin: 10px 0; }
.clean-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: rgba(190,242,100,.16); }
.clean-list li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 6px; height: 3px; border-left: 2px solid var(--lime); border-bottom: 2px solid var(--lime); transform: rotate(-45deg); }

/* Review profile */
.review-profile-head { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 36px; align-items: start; }
.review-identity { display: flex; gap: 16px; align-items: center; margin: 12px 0; }
.review-identity h1 { font-size: clamp(30px, 3.6vw, 42px); margin: 4px 0 0; }
.review-summary-card { border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: var(--card); box-shadow: var(--shadow-sm); }
.review-summary-card dl { margin: 0; }
.review-summary-card dl > div { padding: 11px 0; border-bottom: 1px solid var(--line); }
.review-summary-card dt { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.review-summary-card dd { margin: 5px 0 0; font-family: var(--sans); font-weight: 600; color: var(--heading); }
.evidence-notice { border: 1px solid var(--line); border-left: 4px solid var(--teal); background: var(--surface); border-radius: 8px; padding: 15px 18px; font-size: 14px; color: var(--text); }
.profile-rating-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 16px 0; }
.profile-rating-card { border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: var(--card); }
.profile-rating-head { display: flex; justify-content: space-between; align-items: baseline; }
.profile-rating-head span { font-family: var(--sans); font-weight: 700; color: var(--heading); }
.profile-rating-head strong { font-family: var(--sans); font-size: 30px; color: var(--lime); font-weight: 800; }
.profile-rating-head small { color: var(--muted); font-size: 14px; }
.profile-rating-count { color: var(--muted); font-size: 13px; margin: 4px 0 10px; }
.profile-rating-theme { font-size: 13px; background: var(--surface-2); border-radius: 8px; padding: 10px; }
.profile-rating-theme strong { display: block; margin-bottom: 4px; color: var(--heading); }
.profile-rating-note { font-size: 12px; color: var(--muted); }
.profile-rating-source { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.directory-verification-note, .review-research-state { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; background: var(--surface); font-size: 14px; margin: 16px 0; }
.procon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 14px 0; }
.procon { border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: var(--card); }
.procon h2 { font-size: 16px; margin: 0 0 8px; }
.procon-pros { border-top: 3px solid var(--lime); }
.procon-cons { border-top: 3px solid #e0a03a; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
.source-list { list-style: none; padding: 0; }
.source-list li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.source-list a { color: var(--teal-bright); font-weight: 600; }
.source-list span { color: var(--muted); font-size: 12px; }

/* Reviews hub */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.review-card { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: var(--card); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: .16s; }
.review-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-card h3 { margin: 0; font-size: 19px; }
.review-empty { text-align: center; color: var(--muted); padding: 30px; border: 1px dashed var(--line); border-radius: 12px; }

/* Compare */
.comparison-section { padding: 34px 0; }
.comparison-section-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.comparison-section-head > span { flex: none; width: 40px; height: 40px; display: grid; place-items: center; background: var(--surface-2); color: var(--teal-bright); font-family: var(--sans); font-weight: 800; border-radius: 11px; font-size: 15px; border: 1px solid var(--line); }
.comparison-section-head h2 { font-size: 24px; margin: 0 0 4px; }
.comparison-section-head p { margin: 0; color: var(--muted); font-size: 14px; }
.compare-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-list { list-style: none; padding: 0; }
.compare-list li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.detail-product-title { display: flex; align-items: center; gap: 12px; font-size: 21px; margin: 0 0 10px; }
.software-cell { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 700; color: var(--heading); }
.software-cell a { color: var(--teal-bright); }
.comparison-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 12px 0; }
.source-rating-table { width: 100%; }
.related-comparisons { margin-top: 34px; }
.related-comparison-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }

/* Ranking */
.ranking-main { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 36px; align-items: start; }
.ranking-main-head { margin-bottom: 18px; }
.ranking-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.ranking-item { display: flex; gap: 18px; border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: var(--card); box-shadow: var(--shadow-sm); }
.rank-number { flex: none; width: 44px; height: 44px; display: grid; place-items: center; background: var(--teal); color: var(--ink); font-family: var(--sans); font-weight: 800; font-size: 20px; border-radius: 12px; }
.ranking-side { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: var(--surface); position: sticky; top: 100px; }
.best-for { font-family: var(--sans); font-weight: 700; color: var(--heading); }

/* Forms */
.form-field { margin: 14px 0; }
.form-field label { display: block; font-family: var(--sans); font-weight: 700; font-size: 14px; margin-bottom: 6px; color: var(--heading); }
.form-control { width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; background: var(--bg-2); color: var(--text); }
.form-control:focus-visible { border-color: var(--teal); }
textarea.form-control { min-height: 130px; }
.form-card { border: 1px solid var(--line); border-radius: 16px; padding: 28px; background: var(--card); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field-full { grid-column: 1 / -1; }
.form-help { font-size: 12px; color: var(--muted); margin: 6px 0 0; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { border-radius: 10px; padding: 14px 18px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: rgba(190,242,100,.12); color: var(--lime); border: 1px solid rgba(190,242,100,.3); }
.alert-error { background: rgba(242,109,109,.12); color: var(--danger); border: 1px solid rgba(242,109,109,.3); }

@media (max-width: 900px) {
  .content-layout, .review-profile-head, .compare-detail-grid, .procon-grid, .ranking-main { grid-template-columns: 1fr; }
  .toc, .ranking-side { position: static; }
}

/* Comparisons hub */
.comparison-directory { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-top: 20px; }
.comparison-directory-card { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: var(--card); box-shadow: var(--shadow-sm); transition: .16s; }
.comparison-directory-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.comparison-directory-brands { display: flex; align-items: center; gap: 12px; }
.comparison-directory-brands > span { display: inline-flex; }
.comparison-directory-brands .logo-tile { width: 44px; height: 44px; }
.comparison-directory-brands i { font-style: normal; font-family: var(--sans); font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; }
.comparison-directory-card strong { font-size: 17px; color: var(--heading); font-family: var(--sans); font-weight: 800; }
.comparison-directory-card small { color: var(--muted); font-size: 13px; }
.comparison-directory-card em { color: var(--teal-bright); font-family: var(--sans); font-weight: 700; font-size: 13px; font-style: normal; }
.comparison-hub-picker { align-items: flex-end; flex-wrap: wrap; }
.comparison-directory-head { margin-top: 26px; }

/* Compare detail */
.compare-intro { background: radial-gradient(100% 120% at 90% -20%, rgba(23,184,164,.12), transparent 55%), var(--bg-2); border-bottom: 1px solid var(--line); padding: 36px 0; }
.compare-intro h1 { font-size: clamp(28px, 3.5vw, 42px); margin: 8px 0 10px; }
.compare-intro p { color: var(--muted); max-width: 70ch; }
.compare-intro-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.independence-note { flex: none; font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--teal-bright); background: rgba(45,212,191,.12); border-radius: 99px; padding: 8px 14px; }
.comparison-report { padding: 34px 0; }
.compare-products { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.compare-product { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: var(--card); box-shadow: var(--shadow-sm); }
.compare-product-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.compare-product-brand h2 { margin: 0; font-size: 21px; }
.compare-product dl { margin: 14px 0; }
.compare-product dl > div { padding: 9px 0; border-bottom: 1px solid var(--line); }
.compare-product dt { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.compare-product dd { margin: 3px 0 0; font-family: var(--sans); font-weight: 600; color: var(--heading); }
.compare-product > a { color: var(--teal-bright); font-weight: 700; font-size: 14px; }
.report-nav { display: flex; flex-wrap: wrap; gap: 6px; margin: 24px 0; padding: 10px; background: var(--surface); border-radius: 12px; }
.report-nav a { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--text); padding: 7px 13px; border-radius: 7px; }
.report-nav a:hover { background: var(--surface-2); color: var(--teal-bright); }
.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.decision-grid > article, .compare-detail-grid > article { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: var(--card); }
.decision-grid dl > div, .compare-detail-grid dl > div { padding: 7px 0; }
.decision-grid dt { font-family: var(--sans); font-size: 12px; text-transform: uppercase; color: var(--muted); }
.decision-grid dd { margin: 2px 0 8px; }
.rating-record { display: block; border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: var(--card); }
.rating-record strong { font-family: var(--sans); font-size: 24px; color: var(--lime); font-weight: 800; }
.rating-record strong span { font-size: 14px; color: var(--muted); font-weight: 400; }
.rating-record > span { display: block; font-size: 13px; color: var(--muted); }
.rating-record small { display: block; font-size: 11px; color: var(--teal-bright); margin-top: 6px; }
.rating-theme, .rating-note { font-size: 12px; color: var(--muted); margin: 8px 0 0; }
.comparison-footnote { font-size: 13px; color: var(--muted); margin-top: 12px; }
.comparison-verdict { font-family: var(--sans); font-weight: 600; color: var(--heading); }
.compare-detail-grid h4 { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); margin: 14px 0 6px; }
.compare-list.is-positive li::marker { color: var(--lime); }
.compare-list.is-caution li::marker { color: #e0a03a; }
.compare-list li span { display: block; font-size: 11px; color: var(--muted); }
.compare-source-list { list-style: none; padding: 0; }
.compare-source-list li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.compare-source-list a { color: var(--teal-bright); font-weight: 600; font-size: 14px; }
.compare-source-list small { display: block; color: var(--muted); font-size: 12px; }
.demo-checklist ol { padding-left: 20px; }
.demo-checklist li { margin: 10px 0; }
.related-comparison-grid a { display: block; border: 1px solid var(--line); border-radius: 12px; padding: 16px; background: var(--card); }
.related-comparison-grid a:hover { border-color: var(--teal); }
.related-comparison-grid strong { display: block; color: var(--heading); font-family: var(--sans); font-weight: 800; }
.related-comparison-grid span { display: block; font-size: 12px; color: var(--muted); margin: 4px 0; }
.related-comparison-grid em { color: var(--teal-bright); font-family: var(--sans); font-weight: 700; font-size: 13px; font-style: normal; }

/* Guides hub */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.guide-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: var(--card); box-shadow: var(--shadow-sm); transition: .16s; }
.guide-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.guide-kicker { font-family: var(--sans); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--teal-bright); }
.guide-card h2 { font-size: 19px; margin: 8px 0; }
.guide-card p { color: var(--muted); font-size: 14px; }
.guide-arrow { font-size: 20px; color: var(--teal-bright); margin-top: auto; }

/* Misc */
.faq-list > div, .faq-list details { border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; margin: 10px 0; background: var(--card); }
.faq-list h3 { font-size: 17px; margin: 0 0 6px; }
.rating-inline { font-family: var(--sans); color: var(--muted); font-size: 13px; }
.rating-inline strong { color: var(--lime); }
.fine-print { font-size: 12px; color: var(--muted); }
.lead { font-size: 18.5px; color: var(--text); }
.muted { color: var(--muted); }

/* Compare "At a glance" table */
.compare-glance { table-layout: auto; }
.compare-glance thead th { text-align: left; vertical-align: bottom; background: var(--surface-2); }
.compare-glance th[scope="row"] { width: 30%; text-align: left; font-family: var(--sans); font-weight: 700; color: var(--heading); background: var(--surface); }
.compare-glance td { text-align: center; vertical-align: middle; }
.compare-glance tr.glance-text td { text-align: left; font-size: 13px; color: var(--text); }
.glance-head { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 800; color: var(--heading); }
.glance-head .logo-tile { width: 34px; height: 34px; }
.glance-yes { color: var(--lime); font-weight: 800; font-size: 18px; }
.glance-yes .ico { width: 18px; height: 18px; stroke-width: 2.6; }
.glance-no { color: var(--muted-2); font-weight: 700; }
.compare-glance tr.row-diff { background: rgba(45,212,191,.07); }
.compare-glance tr.row-diff th[scope="row"] { box-shadow: inset 3px 0 0 var(--teal); background: rgba(45,212,191,.07); }

/* Responsive */
@media (max-width: 980px) {
  .main-nav, .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .nav-wrap.open { flex-wrap: wrap; padding-bottom: 18px; }
  .nav-wrap.open .main-nav { display: flex; order: 3; width: 100%; flex-direction: column; align-items: flex-start; gap: 15px; }
  .nav-wrap.open .nav-actions { display: flex; order: 4; width: 100%; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .ops-cards { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .stat:nth-child(2) { border-right: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .compare-products, .decision-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container, .shell { width: min(100% - 24px, 1200px); }
  .hero { padding: 40px 0 46px; }
  .hero h1 { font-size: 40px; }
  .ops-cards { grid-template-columns: 1fr; }
  .pick-row { grid-template-columns: 1fr; gap: 10px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
  .stat:last-child { border-bottom: 0; }
  .category-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .card-actions { grid-template-columns: 1fr; }
}
