/* ==========================================================================
   Free Tablet Finder — design system
   Fonts are loaded via <link> in each page's <head> (Inter + Plus Jakarta Sans).
   ========================================================================== */

:root {
  /* Type */
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font);
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: clamp(1.4rem, 1.2rem + 0.8vw, 1.75rem);
  --fs-3xl: clamp(1.8rem, 1.4rem + 1.6vw, 2.5rem);
  --fs-4xl: clamp(2.2rem, 1.5rem + 3vw, 3.5rem);

  /* Color */
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #f9fafc;
  --surface-3: #f1f4f9;
  --text: #0b1220;
  --text-2: #334155;
  --muted: #5b6478;
  --subtle: #8a93a6;
  --border: #e6e9f0;
  --border-strong: #d5dae4;

  --primary: #2358e6;
  --primary-dark: #1a44c2;
  --primary-light: #eef3ff;
  --primary-100: #dce6ff;
  --accent: #6d4bff;
  --brand-gradient: linear-gradient(135deg, #2358e6 0%, #6d4bff 100%);
  --ink-gradient: linear-gradient(135deg, #0b1a45 0%, #1c2f7a 55%, #3b2a8f 100%);

  --success: #0e9f6e;
  --success-bg: #e7f8f1;
  --warning-bg: #fff8eb;
  --warning-border: #fbe3b0;
  --warning-text: #a85a07;
  --ended-bg: #fef1f1;
  --ended-text: #b42318;

  /* Shape & depth */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.06), 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow: 0 6px 16px -4px rgba(16, 24, 40, 0.08), 0 2px 4px -2px rgba(16, 24, 40, 0.04);
  --shadow-lg: 0 18px 36px -14px rgba(16, 24, 40, 0.18), 0 4px 10px -4px rgba(16, 24, 40, 0.06);
  --shadow-xl: 0 32px 64px -24px rgba(16, 24, 40, 0.28);
  --shadow-primary: 0 8px 20px -6px rgba(35, 88, 230, 0.45);
  --ring: 0 0 0 4px rgba(35, 88, 230, 0.18);

  /* Space */
  --space-section: clamp(3.5rem, 7vw, 6rem);
  --header-h: 68px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur: 240ms;
  --transition: color var(--dur-fast) ease, background-color var(--dur-fast) ease, border-color var(--dur) ease, box-shadow var(--dur) ease, transform var(--dur) var(--ease-out), opacity var(--dur) ease;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  font-feature-settings: "cv11", "ss01", "ss03";
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); line-height: 1.2; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-weight: 800; }
h2, h3, h4 { font-weight: 700; }
p { text-wrap: pretty; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--primary-100); color: var(--text); }

img { max-width: 100%; height: auto; }
code { font-family: ui-monospace, 'SFMono-Regular', Consolas, monospace; font-size: 0.875em; background: var(--surface-3); border: 1px solid var(--border); border-radius: 6px; padding: 0.1em 0.4em; }
small { font-size: var(--fs-sm); }

.container { width: min(1180px, 100% - 2.5rem); 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; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(230, 233, 240, 0.9);
}
/* The frosted blur lives on a pseudo-element rather than directly on
   .site-header: backdrop-filter on a real element makes it the containing
   block for its position:fixed descendants (the off-canvas mobile nav and its
   backdrop), which pushes their off-screen "closed" position outside that box
   and inflates the page's scrollable width. A pseudo-element can't contain
   real children, so it can't trigger that. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.site-header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }

html.nav-locked, html.nav-locked body { overflow: hidden; }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 44;
  background: rgba(11, 18, 32, 0.4);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur) ease, visibility 0s linear var(--dur);
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; transition-delay: 0s; }
@media (min-width: 861px) { .nav-backdrop { display: none; } }

.nav-toggle {
  display: none; flex: none; align-items: center; justify-content: center; gap: 0; width: 42px; height: 42px;
  padding: 0; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle:hover { background: var(--surface-3); }
.nav-toggle__box { position: relative; width: 18px; height: 13px; }
.nav-toggle__box span, .nav-toggle__box::before, .nav-toggle__box::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform var(--dur) var(--ease-out), opacity var(--dur-fast) ease, top var(--dur) var(--ease-out);
}
.nav-toggle__box::before { top: 0; }
.nav-toggle__box span { top: 50%; margin-top: -1px; }
.nav-toggle__box::after { top: 100%; margin-top: -2px; }
.is-menu-open .nav-toggle__box::before { top: 50%; margin-top: -1px; transform: rotate(45deg); }
.is-menu-open .nav-toggle__box span { opacity: 0; }
.is-menu-open .nav-toggle__box::after { top: 50%; margin-top: -1px; transform: rotate(-45deg); }

.logo { display: inline-flex; align-items: center; white-space: nowrap; transition: transform var(--dur) var(--ease-out); }
.logo:hover { transform: scale(1.02); }
.logo img { display: block; height: 46px; width: auto; }
.footer-logo img { display: block; height: 40px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 0.25rem; font-weight: 500; font-size: 0.95rem; }
.site-nav > a, .nav-dropdown-btn { color: var(--muted); padding: 0.5rem 0.8rem; border-radius: 999px; white-space: nowrap; transition: var(--transition); }
.site-nav > a:hover, .nav-dropdown-btn:hover, .nav-dropdown:focus-within .nav-dropdown-btn { color: var(--text); background: var(--surface-3); text-decoration: none; }
.site-nav > a[aria-current="page"] { color: var(--primary); background: var(--primary-light); }

.nav-dropdown { position: relative; }
.nav-dropdown-btn { background: none; border: 0; font: inherit; font-weight: 500; cursor: pointer; margin: 0; }
.nav-dropdown-content {
  position: absolute; top: calc(100% + 8px); left: 50%; z-index: 100; min-width: 230px;
  padding: 0.4rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translate(-50%, 6px);
  transition: opacity var(--dur) ease, transform var(--dur) var(--ease-out), visibility 0s linear var(--dur);
}
.nav-dropdown-content::before { content: ""; position: absolute; inset: -10px 0 auto; height: 10px; } /* hover bridge */
/* Desktop-only: the dropdown is absolutely positioned and centered under its button.
   On mobile it's an inline, static-flow accordion (see the max-width:860px block below),
   so this must not apply there — it would translateX(-50%) the accordion off-screen. */
@media (min-width: 861px) {
  .nav-dropdown:hover .nav-dropdown-content,
  .nav-dropdown:focus-within .nav-dropdown-content,
  .nav-dropdown-btn[aria-expanded="true"] ~ .nav-dropdown-content { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition-delay: 0s; }
}
.nav-dropdown-content a { display: block; padding: 0.6rem 0.8rem; border-radius: var(--radius-sm); color: var(--text-2); font-size: 0.925rem; }
.nav-dropdown-content a:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }
.nav-dropdown-btn__chevron { flex: none; }

/* ---------- Page heroes ---------- */
.hero, .detail-header, .guides-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(760px 320px at 92% -30%, rgba(109, 75, 255, 0.12), transparent 60%),
    radial-gradient(680px 300px at -8% 130%, rgba(35, 88, 230, 0.12), transparent 60%),
    var(--surface);
  border-bottom: 1px solid var(--border);
}
.hero::before, .detail-header::before, .guides-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 70% 0%, #000 10%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 90% at 70% 0%, #000 10%, transparent 70%);
  opacity: 0.55;
}

.hero { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.hero h1 { margin: 0 auto 1rem; max-width: 20ch; font-size: var(--fs-4xl); letter-spacing: -0.035em; line-height: 1.08; }
.hero p { margin: 0 auto; max-width: 680px; color: var(--muted); font-size: var(--fs-lg); }
.hero .container > * { animation: rise 0.7s var(--ease-out) both; }
.hero .container > *:nth-child(2) { animation-delay: 60ms; }
.hero .container > *:nth-child(3) { animation-delay: 120ms; }

.disclaimer {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin: 2rem auto 0; max-width: 760px; padding: 0.9rem 1.2rem;
  background: var(--warning-bg); color: var(--warning-text); border: 1px solid var(--warning-border);
  border-radius: var(--radius); font-size: 0.925rem; text-align: left; line-height: 1.55;
}
.disclaimer::before { content: "!"; flex: none; display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: #f59e0b; color: #fff; font-weight: 800; font-size: 0.8rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 44px; padding: 0.7rem 1.25rem; border: 1px solid transparent; border-radius: var(--radius-sm);
  font: inherit; font-weight: 600; font-size: 0.95rem; line-height: 1.2; letter-spacing: -0.005em;
  cursor: pointer; text-align: center; text-decoration: none; white-space: nowrap;
  transition: var(--transition);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #2f64f0 0%, #2152dd 100%);
  border-color: #1f4fd6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), var(--shadow-primary);
}
a.btn-primary:hover, .btn-primary:hover { color: #fff; background: linear-gradient(180deg, #2a5ce6 0%, #1a44c2 100%); transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 12px 24px -8px rgba(35, 88, 230, 0.55); }
.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border-strong); box-shadow: var(--shadow-xs); }
a.btn-secondary:hover, .btn-secondary:hover { color: var(--text); background: var(--surface-2); border-color: #c3c9d6; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { background: var(--surface-3); color: var(--text); }
.btn-sm { min-height: 38px; padding: 0.5rem 0.9rem; font-size: var(--fs-sm); }
.btn-lg { min-height: 52px; padding: 0.9rem 1.6rem; font-size: 1.025rem; border-radius: var(--radius); }

/* ---------- Finder ---------- */
.finder-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(760px 340px at 88% -20%, rgba(109, 75, 255, 0.14), transparent 60%),
    radial-gradient(680px 300px at -6% 120%, rgba(35, 88, 230, 0.12), transparent 60%),
    var(--surface);
  border-bottom: 1px solid var(--border);
}
.finder-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.55;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 70% 0%, #000 10%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 90% at 70% 0%, #000 10%, transparent 70%);
}
.finder-hero__main > * { animation: rise 0.7s var(--ease-out) both; }
.finder-hero__main > *:nth-child(2) { animation-delay: 50ms; }
.finder-hero__main > *:nth-child(3) { animation-delay: 100ms; }
.finder-hero__main > *:nth-child(4) { animation-delay: 150ms; }
.finder-hero__main > *:nth-child(5) { animation-delay: 200ms; }
.finder-hero__main > *:nth-child(6) { animation-delay: 250ms; }
.finder-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.finder-howto {
  position: relative; padding: 1.6rem 1.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  animation: rise 0.8s var(--ease-out) 0.2s both;
}
.finder-howto::before { content: ""; position: absolute; inset: 0 1.6rem auto; height: 3px; border-radius: 0 0 3px 3px; background: var(--brand-gradient); }
.finder-howto h2 { margin: 0 0 1.1rem; font-size: var(--fs-lg); }
.finder-howto ol { counter-reset: howto; list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.finder-howto ol li { position: relative; padding-left: 2.6rem; font-size: 0.9rem; line-height: 1.55; color: var(--muted); }
.finder-howto ol li strong { display: block; color: var(--text); font-size: 0.95rem; }
.finder-howto ol li::before { counter-increment: howto; content: counter(howto); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 28px; height: 28px; font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; color: #fff; background: var(--brand-gradient); border-radius: 9px; box-shadow: var(--shadow-primary); }
.finder-howto__trust { list-style: none; display: grid; gap: 0.4rem; margin: 1.25rem 0 0; padding: 1rem 0 0; border-top: 1px solid var(--border); }
.finder-howto__trust li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.825rem; font-weight: 500; color: var(--text-2); }
.finder-howto__trust li::before { content: ""; flex: none; width: 16px; height: 16px; border-radius: 50%; background: var(--success-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e9f6e' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 10px no-repeat; }
.finder-hero__eyebrow { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.35rem 0.8rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); background: var(--primary-light); border: 1px solid var(--primary-100); border-radius: 999px; }
.finder-hero__eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.finder-hero h1 { margin: 1rem 0 0.75rem; max-width: 20ch; font-size: var(--fs-4xl); letter-spacing: -0.035em; line-height: 1.08; }
.finder-hero__lead { margin: 0; max-width: 62ch; font-size: var(--fs-lg); color: var(--muted); }

.finder-search { position: relative; max-width: 720px; margin-top: 1.75rem; }
.finder-search input {
  width: 100%; min-height: 60px; padding: 0 3.5rem 0 3.25rem;
  font: inherit; font-size: var(--fs-md); color: var(--text);
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: var(--transition);
}
.finder-search input::placeholder { color: var(--subtle); }
.finder-search input:hover { border-color: #c3c9d6; }
.finder-search input:focus { outline: none; border-color: var(--primary); box-shadow: var(--ring), var(--shadow); }
.finder-search__icon { position: absolute; left: 1.1rem; top: 50%; translate: 0 -50%; color: var(--subtle); pointer-events: none; }
.finder-search__kbd { position: absolute; right: 1rem; top: 50%; translate: 0 -50%; display: grid; place-items: center; min-width: 26px; height: 26px; padding: 0 0.4rem; font: 600 0.8rem var(--font); color: var(--muted); background: var(--surface-3); border: 1px solid var(--border); border-bottom-width: 2px; border-radius: 6px; pointer-events: none; }
.finder-search input:focus ~ .finder-search__kbd { opacity: 0; }

.quick-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 1rem; }
.quick-filters__label { margin-right: 0.25rem; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.quick-chip { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.4rem 0.85rem; font: inherit; font-size: 0.875rem; font-weight: 600; color: var(--text-2); background: var(--surface); border: 1px solid var(--border); border-radius: 999px; box-shadow: var(--shadow-xs); cursor: pointer; transition: var(--transition); }
.quick-chip:hover { color: var(--primary); border-color: var(--primary-100); transform: translateY(-1px); }
.quick-chip[aria-pressed="true"] { color: #fff; background: var(--primary); border-color: var(--primary); box-shadow: var(--shadow-primary); }
.quick-chip[aria-pressed="true"]::before { content: "✓"; font-size: 0.8em; }
.quick-chip:focus-visible { outline: none; box-shadow: var(--ring); }

.finder-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 720px; margin: 2rem 0 0; background: var(--border); gap: 1px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.finder-stats > div { padding: 0.8rem 1rem; background: rgba(255,255,255,0.85); }
.finder-stats dt { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--subtle); }
.finder-stats dd { margin: 0.15rem 0 0; font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }

.finder-layout { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 2rem; padding-block: 2.5rem 4rem; }
.filters__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.filters .filters__head h2 { margin: 0; padding: 0; border: 0; }
.filters__done { display: none; }
@keyframes sheet { from { translate: 0 100%; } to { translate: none; } }
.filters__note { margin-top: 1.25rem; padding: 0.85rem 1rem; font-size: 0.825rem; line-height: 1.5; color: var(--warning-text); background: var(--warning-bg); border: 1px solid var(--warning-border); border-radius: var(--radius-sm); }

.results { min-width: 0; }
.results-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1rem; margin-bottom: 1rem; }
.results-count strong { font-size: var(--fs-xl); }
.results-count__sub { font-family: var(--font); font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.results-bar__controls { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.sort-control { display: inline-flex; align-items: center; gap: 0.5rem; padding-left: 0.9rem; font-size: 0.875rem; font-weight: 500; color: var(--muted); background: var(--surface); border: 1px solid var(--border); border-radius: 999px; transition: var(--transition); }
.sort-control:hover { border-color: var(--border-strong); }
.sort-control select { appearance: none; -webkit-appearance: none; padding: 0.45rem 2rem 0.45rem 0; font: inherit; font-weight: 600; color: var(--text); background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 0.75rem center / 14px no-repeat; border: 0; cursor: pointer; }
.sort-control select:focus { outline: none; }
.sort-control:focus-within { border-color: var(--primary); box-shadow: var(--ring); }
.filters-toggle { display: none; }
.filters-toggle__count[hidden] { display: none; }
.filters-toggle__count { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 0.35rem; font-size: 0.72rem; color: #fff; background: var(--primary); border-radius: 999px; }

.active-filters { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.active-filters[hidden] { display: none; }
.filter-pill { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0.4rem 0.3rem 0.75rem; font: inherit; font-size: 0.825rem; font-weight: 600; color: var(--primary-dark); background: var(--primary-light); border: 1px solid var(--primary-100); border-radius: 999px; cursor: pointer; transition: var(--transition); }
.filter-pill > span:first-child { font-weight: 500; color: var(--muted); }
.filter-pill__x { display: grid; place-items: center; width: 18px; height: 18px; font-size: 0.95rem; line-height: 1; border-radius: 50%; transition: var(--transition); }
.filter-pill:hover .filter-pill__x { color: #fff; background: var(--primary); }
.filter-pill--clear { padding-right: 0.75rem; color: var(--muted); background: transparent; border-color: transparent; }
.filter-pill--clear:hover { color: var(--text); text-decoration: underline; }

.finder-help { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; margin-top: 2rem; padding: 1.5rem 1.75rem; background: linear-gradient(135deg, var(--primary-light), var(--surface) 70%); border: 1px solid var(--primary-100); border-radius: var(--radius-lg); }
.finder-help h2 { margin: 0 0 0.25rem; font-size: var(--fs-lg); }
.finder-help p { margin: 0; max-width: 56ch; font-size: 0.925rem; color: var(--muted); }

.filters {
  align-self: start; position: sticky; top: calc(var(--header-h) + 1.25rem);
  padding: 1.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.filters h2 { display: flex; align-items: center; gap: 0.5rem; margin: 0 0 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); font-size: var(--fs-lg); }
.filters h2::before { content: ""; width: 18px; height: 18px; background: var(--primary); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M4 6h16M7 12h10M10 18h4'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M4 6h16M7 12h10M10 18h4'/%3E%3C/svg%3E") center / contain no-repeat; }
.filter-group { margin-bottom: 1.1rem; }
.filter-group label { display: block; margin-bottom: 0.4rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.01em; color: var(--text-2); }
.filter-group input, .filter-group select {
  width: 100%; min-height: 44px; padding: 0.65rem 0.9rem;
  font: inherit; font-size: 0.95rem; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.filter-group select {
  appearance: none; -webkit-appearance: none; padding-right: 2.5rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 16px;
}
.filter-group input:hover, .filter-group select:hover { border-color: var(--border-strong); }
.filter-group input:focus, .filter-group select:focus { outline: none; border-color: var(--primary); box-shadow: var(--ring); background-color: var(--surface); }
.filter-actions { padding-top: 0.5rem; }
.filter-actions .btn { width: 100%; }

.results-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.results-count { margin: 0; font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 700; font-variant-numeric: tabular-nums; }
.toggle-row { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.45rem 0.9rem; font-size: 0.9rem; font-weight: 500; color: var(--text-2); background: var(--surface); border: 1px solid var(--border); border-radius: 999px; cursor: pointer; transition: var(--transition); }
.toggle-row:hover { border-color: var(--border-strong); }
.toggle-row input { width: 16px; height: 16px; margin: 0; accent-color: var(--primary); }

/* ---------- Cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.card {
  position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 1rem;
  padding: 1.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--brand-gradient); opacity: 0; transition: opacity var(--dur) ease; }
.card:hover { transform: translateY(-3px); border-color: var(--primary-100); box-shadow: var(--shadow-lg); }
.card:hover::before { opacity: 1; }
.cards-grid > .card { animation: rise 0.5s var(--ease-out) both; }
.cards-grid > .card:nth-child(2) { animation-delay: 40ms; }
.cards-grid > .card:nth-child(3) { animation-delay: 80ms; }
.cards-grid > .card:nth-child(4) { animation-delay: 120ms; }
.cards-grid > .card:nth-child(5) { animation-delay: 160ms; }
.cards-grid > .card:nth-child(n+6) { animation-delay: 200ms; }
.card__header { display: flex; flex-direction: column; gap: 0.75rem; }
.card__title { margin: 0; font-size: var(--fs-xl); line-height: 1.3; }
.card__title a { color: var(--text); }
.card__title a:hover { color: var(--primary); text-decoration: none; }
.card--ended { background: var(--surface-2); }
.card--ended .card__title a, .card--ended .card__desc { color: var(--muted); }
.card--ended::before { background: var(--ended-text); }
.card__meta { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem; }
.card__meta .card__trust { margin-left: auto; }
.card__desc { flex: 1; margin: 0; color: var(--muted); font-size: 0.95rem; }
.card__details { display: flex; flex-direction: column; gap: 0.7rem; margin-top: auto; padding: 0.9rem 1rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); }
.card__detail-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--text-2); }
.card__detail-row svg { flex: none; color: var(--primary); }
.card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.card__actions { display: flex; gap: 0.6rem; margin-top: 0.25rem; }
.card__actions .card__btn { flex: 1; }
.card__actions .bookmark-btn { flex: 0 0 auto; width: 38px; padding: 0; border: 1px solid var(--border); }
.bookmark-btn[aria-pressed="true"] { background: #fff7e0; border-color: #f5b93b; color: #92400e; }
.bookmark-btn[aria-pressed="true"] svg { fill: currentColor; }

/* Deal cards (Deals tool) */
.deal-card__company { display: flex; align-items: center; gap: 0.4rem; margin: 0.35rem 0 0; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.deal-card__company svg { color: var(--primary); flex: none; }
.deal-card__pricing { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem; padding: 0.85rem 1rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); }
.deal-card__regular { font-size: 0.9rem; color: var(--subtle); text-decoration: line-through; }
.deal-card__deal-price { font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 800; color: var(--text); }
.deal-card__savings { margin-left: auto; padding: 0.2rem 0.55rem; font-size: 0.72rem; font-weight: 700; color: #05603a; background: var(--success-bg); border-radius: 999px; }
.deal-card__requirements { margin: 0; font-size: 0.85rem; color: var(--muted); }
.deal-card__facts { display: flex; flex-direction: column; gap: 0.45rem; margin: 0; padding: 0; list-style: none; }
.deal-card__facts li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-2); }
.deal-card__facts svg { flex: none; color: var(--primary); }

.badge { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.22rem 0.6rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.5; color: var(--muted); background: var(--surface-3); border-radius: 999px; }
.badge--primary { background: var(--primary-light); color: var(--primary-dark); }
.badge--outline { background: transparent; border: 1px solid var(--border); color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 0.75rem; }
.badge--free { background: var(--success-bg); color: #05603a; }
.badge--discounted { background: #eceafe; color: #4527a0; }
.badge--low { background: #f5ecff; color: #6b21a8; }
.badge--ended { background: var(--ended-bg); color: var(--ended-text); }

.empty-state { grid-column: 1 / -1; padding: 3.5rem 2rem; text-align: center; color: var(--muted); background: var(--surface); border: 1.5px dashed var(--border-strong); border-radius: var(--radius-lg); }
.empty-state strong { display: block; font-family: var(--font-display); font-size: var(--fs-lg); color: var(--text); }
.empty-state p { margin: 0.35rem 0 1.25rem; }

/* ---------- Detail pages ---------- */
.page-main > .container:first-child { padding-block: clamp(2.5rem, 5vw, 4rem); }
.page-main > .container:first-child > h1 { font-size: var(--fs-3xl); margin: 0 0 1rem; }
.page-main > .container:first-child > p { max-width: 70ch; color: var(--text-2); }

.detail-page { padding-bottom: 4rem; }
.detail-header { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.25rem, 4vw, 3rem); margin-bottom: clamp(2rem, 4vw, 3rem); }
.detail-header__content { max-width: 780px; }
.detail-header__content > * { animation: rise 0.7s var(--ease-out) both; }
.detail-header__content > *:nth-child(2) { animation-delay: 60ms; }
.detail-header__content > *:nth-child(3) { animation-delay: 120ms; }
.detail-header .badge { margin-bottom: 1rem; }
.detail-header__badges { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
.detail-header__badges .badge { margin-bottom: 0; }
.detail-header__badges + h1 { margin-top: 1rem; }
.detail-header h1 { margin: 0 0 1rem; font-size: var(--fs-4xl); letter-spacing: -0.035em; line-height: 1.08; }
.detail-header .lead { margin: 0; max-width: 65ch; font-size: var(--fs-lg); color: var(--muted); line-height: 1.65; }

.detail-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.detail-content { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }
.detail-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sticky-panel { position: sticky; top: calc(var(--header-h) + 1.25rem); }

.panel, .premium-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.premium-panel h2 { margin: 0 0 1.1rem; padding-bottom: 0.85rem; font-size: var(--fs-xl); border-bottom: 1px solid var(--border); }
.premium-panel h3 { margin: 1.4rem 0 0.4rem; font-size: var(--fs-md); }
.premium-panel p { margin: 0 0 1rem; color: var(--text-2); }
.premium-panel p:last-child { margin-bottom: 0; }
/* Plain key-value lists (e.g. "At a glance" panels) — explicitly excludes
   .guide-body so long-form guide/article content keeps normal bulleted lists
   instead of being turned into a border-divided key-value list. */
.premium-panel:not(.guide-body) ul:not([class]) { list-style: none; margin: 0; padding: 0; }
.premium-panel:not(.guide-body) ul:not([class]) li { padding: 0.7rem 0; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 0.95rem; }
.premium-panel:not(.guide-body) ul:not([class]) li:first-child { padding-top: 0; }
.premium-panel:not(.guide-body) ul:not([class]) li:last-child { border-bottom: 0; padding-bottom: 0; }
.premium-panel:not(.guide-body) ul:not([class]) a { font-weight: 600; }

.highlight-panel { background: linear-gradient(135deg, var(--primary-light) 0%, var(--surface) 70%); border-color: var(--primary-100); }
.highlight-panel h2 { color: var(--primary-dark); border-bottom-color: var(--primary-100); }
.warning-panel { background: linear-gradient(135deg, var(--warning-bg) 0%, var(--surface) 70%); border-color: var(--warning-border); }
.warning-panel h2 { color: var(--warning-text); border-bottom-color: var(--warning-border); }

.premium-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.premium-list li { position: relative; padding-left: 1.9rem; color: var(--text-2); line-height: 1.55; }
.premium-list li strong { color: var(--text); }
.premium-list:not(.checklist):not(.crosslist):not(.tags-list) li { padding-left: 0; }
.premium-list .badge { text-transform: none; letter-spacing: 0; font-size: 0.8rem; font-weight: 600; line-height: 1.45; border-radius: var(--radius-sm); padding: 0.3rem 0.6rem; }
.checklist li::before, .crosslist li::before { content: ""; position: absolute; left: 0; top: 0.15em; width: 20px; height: 20px; border-radius: 50%; background-position: center; background-repeat: no-repeat; background-size: 12px; }
.checklist li::before { background-color: var(--success-bg); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e9f6e' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); }
.crosslist li::before { background-color: #fff1d6; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a85a07' stroke-width='3.5' stroke-linecap='round'%3E%3Cpath d='M12 6v8M12 18.5v.01'/%3E%3C/svg%3E"); }

.tags-list { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
.tags-list li { padding: 0; }
.tag { display: inline-flex; align-items: center; padding: 0.4rem 0.8rem; font-size: 0.875rem; font-weight: 500; color: var(--text-2); background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; transition: var(--transition); }
a.tag.tag-link:hover { color: #fff; background: var(--primary); border-color: var(--primary); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-primary); }

.action-row { margin-top: 1.5rem; }
.meta-footer { margin-top: 0.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); color: var(--muted); }
.meta-footer p { margin: 0.25rem 0; }

.glance-item { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
.glance-item:first-child { padding-top: 0; }
.glance-item:last-child { padding-bottom: 0; border-bottom: none; }
.glance-label { font-weight: 600; color: var(--text); }
.glance-value { display: flex; justify-content: flex-end; color: var(--muted); text-align: right; font-size: 0.95rem; }

.back-link { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.5rem 0; color: var(--muted); font-weight: 500; transition: var(--transition); }
.back-link:hover { color: var(--primary); transform: translateX(-3px); text-decoration: none; }

.status-banner { margin-top: 1.5rem; padding: 0.9rem 1.2rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 500; }
.status-banner--ended { background: var(--ended-bg); color: var(--ended-text); border: 1px solid #fcd0cc; }

/* Long-form guide copy */
.guide-body h2 { margin: 2rem 0 0.75rem; padding: 0; border: 0; font-size: var(--fs-2xl); }
.guide-body > h2:first-child { margin-top: 0; }
.guide-body p { margin: 0 0 1.2rem; font-size: var(--fs-md); line-height: 1.75; color: var(--text-2); }
.guide-body ul { margin: 0 0 1.5rem; padding-left: 1.25rem; }
.guide-body li { margin-bottom: 0.5rem; line-height: 1.7; color: var(--text-2); }
.guide-body li::marker { color: var(--primary); }
.guide-body a { font-weight: 500; text-decoration: underline; text-decoration-color: var(--primary-100); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.guide-body a:hover { text-decoration-color: var(--primary); }
.guide-body h3 { margin: 1.5rem 0 0.5rem; font-size: 1.1rem; color: var(--text); }
.guide-body ol { margin: 0 0 1.5rem; padding-left: 1.25rem; }
.guide-body ol li { margin-bottom: 0.5rem; line-height: 1.7; color: var(--text-2); }
.guide-body strong { color: var(--text); }
.legal-toc { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 2rem; padding: 1rem 1.25rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); list-style: none; }
.legal-toc a { font-size: 0.85rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); text-decoration: none !important; }
.legal-toc a:hover { color: var(--primary); border-color: var(--primary-100); }

/* Legacy guide list (scripts/build.mjs) */
.guides-list { display: grid; gap: 1rem; }
.guide-link { display: block; padding: 1.5rem; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--transition); }
.guide-link:hover { border-color: var(--primary-100); transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.guide-link strong { display: block; margin-bottom: 0.5rem; font-size: var(--fs-lg); }
.guide-link small { display: block; color: var(--muted); font-size: 0.95rem; }

/* ---------- FAQ accordion ---------- */
.faq-container { display: flex; flex-direction: column; gap: 0.75rem; }
.premium-accordion { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-xs); overflow: hidden; transition: var(--transition); }
.premium-accordion:hover { border-color: var(--border-strong); }
.premium-accordion[open] { border-color: var(--primary-100); box-shadow: var(--shadow); }
.accordion-title { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 1.4rem; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-md); color: var(--text); cursor: pointer; list-style: none; user-select: none; }
.accordion-title::-webkit-details-marker { display: none; }
.accordion-title::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface-3) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232358e6' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform var(--dur) var(--ease-out), background-color var(--dur) ease;
}
.premium-accordion[open] .accordion-title::after { transform: rotate(45deg); background-color: var(--primary-light); }
.accordion-content { padding: 0 1.4rem 1.25rem; color: var(--muted); line-height: 1.7; animation: sweep var(--dur) var(--ease-out); }
.accordion-content p { margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; margin-top: 4rem; padding: clamp(3rem, 6vw, 4.5rem) 0 0; overflow: hidden;
  color: #aeb7d0; background: #0b1220;
}
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: var(--brand-gradient); }
.site-footer::after {
  content: ""; position: absolute; width: 620px; height: 620px; right: -220px; top: -320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 75, 255, 0.16), transparent 65%); pointer-events: none;
}
.site-footer a { color: #aeb7d0; }
.site-footer a:hover { color: #fff; }
.site-footer .container { position: relative; }

.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { padding-right: 1rem; }
.footer-logo { display: inline-flex; }
.footer-brand p { margin: 1.1rem 0 1.5rem; max-width: 34ch; font-size: 0.9rem; line-height: 1.65; color: #8a93b8; }

.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  color: #c3caea; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.footer-social a:hover { color: #fff; background: var(--brand-gradient); border-color: transparent; transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h3 { margin: 0 0 1.1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #fff; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.9rem; }

.footer-trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.75rem; padding: 1.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-trust li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.825rem; font-weight: 500; color: #c3caea; }
.footer-trust svg { flex: none; width: 16px; height: 16px; color: #7dd8ac; }

.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1.5rem; padding: 1.75rem 0 2.25rem; font-size: 0.825rem; color: #7b84a3; }
.footer-bottom p { margin: 0; }
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; list-style: none; margin: 0; padding: 0; }
.footer-bottom__links a { font-size: 0.825rem; color: #9aa2c2; }
.footer-legal-note { max-width: 72ch; margin: 0 0 0.5rem; font-size: 0.8rem; line-height: 1.6; color: #6b7395; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 2.25rem; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.error-page h1 { font-size: var(--fs-4xl); margin: 0 0 1rem; }
.error-page p { color: var(--muted); }

/* ---------- Guides library ---------- */
.guides-page { padding-bottom: 4rem; }
.guides-hero { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.25rem, 4vw, 3rem); }
.guides-hero .container > * { animation: rise 0.7s var(--ease-out) both; }
.guides-hero .container > *:nth-child(2) { animation-delay: 60ms; }
.guides-hero .container > *:nth-child(3) { animation-delay: 120ms; }
.guides-hero .container > *:nth-child(4) { animation-delay: 180ms; }
.guides-hero__eyebrow { display: inline-block; padding: 0.35rem 0.8rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); background: var(--primary-light); border: 1px solid var(--primary-100); border-radius: 999px; }
.guides-hero h1 { margin: 1rem 0 0.75rem; max-width: 18ch; font-size: var(--fs-4xl); letter-spacing: -0.035em; line-height: 1.08; }
.guides-hero .lead { margin: 0; max-width: 60ch; font-size: var(--fs-lg); color: var(--muted); }
.guide-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.guide-chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem; white-space: nowrap; font-weight: 600; font-size: 0.9rem; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: 999px; box-shadow: var(--shadow-xs); transition: var(--transition); }
.guide-chip span { padding: 0.05rem 0.5rem; font-size: var(--fs-xs); color: var(--muted); background: var(--surface-3); border-radius: 999px; }
.guide-chip:hover { color: var(--primary); border-color: var(--primary-100); transform: translateY(-1px); box-shadow: var(--shadow-sm); text-decoration: none; }

.guides-body { padding-top: 3rem; }
.guide-section { margin-top: 3.5rem; }
.guide-section__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.25rem 2rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.guide-section__head h2 { margin: 0; font-size: var(--fs-2xl); }
.guide-section__head p { margin: 0; color: var(--muted); }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }

.guide-card, .guide-featured { display: flex; flex-direction: column; overflow: hidden; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--transition); }
.guide-card:hover, .guide-featured:hover { color: var(--text); transform: translateY(-4px); border-color: var(--primary-100); box-shadow: var(--shadow-lg); text-decoration: none; }
.guide-card__media, .guide-featured__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-3); }
.guide-card__media img, .guide-featured__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.guide-card:hover img, .guide-featured:hover img { transform: scale(1.04); }
.guide-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.4rem 1.4rem; }
.guide-card h3 { margin: 0.75rem 0 0.5rem; font-size: var(--fs-lg); line-height: 1.35; }
.guide-card p, .guide-featured p { margin: 0 0 1.25rem; color: var(--muted); font-size: 0.95rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.guide-featured { display: grid; grid-template-columns: 1.25fr 1fr; }
.guide-featured__media { aspect-ratio: auto; min-height: 100%; }
.guide-featured__body { display: flex; flex-direction: column; justify-content: center; padding: 2.25rem 2.5rem; }
.guide-featured__body::before { content: "Featured guide"; margin-bottom: 0.75rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--subtle); }
.guide-featured h2 { margin: 0.9rem 0 0.75rem; font-size: var(--fs-3xl); line-height: 1.15; }
.guide-featured p { font-size: var(--fs-md); }

.guide-tag { align-self: flex-start; padding: 0.25rem 0.65rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 999px; }
.guide-tag--government { background: #dde7ff; color: #1a44c2; }
.guide-tag--lifeline { background: #e3e4ff; color: #3f35c4; }
.guide-tag--benefits { background: #d5f5ee; color: #0b6b5f; }
.guide-tag--audience { background: #f1e6ff; color: #7324c2; }
.guide-tag--ended { background: var(--ended-bg); color: var(--ended-text); }
.guide-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--muted); }
.guide-meta__cta { font-weight: 600; color: var(--primary); }
.guide-meta__cta span { display: inline-block; transition: transform var(--dur) var(--ease-out); }
.guide-card:hover .guide-meta__cta span, .guide-featured:hover .guide-meta__cta span { transform: translateX(4px); }

.guides-cta { position: relative; overflow: hidden; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 4rem; padding: clamp(1.75rem, 4vw, 2.5rem); color: #fff; background: var(--ink-gradient); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.guides-cta::after { content: ""; position: absolute; width: 360px; height: 360px; right: -80px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(109, 75, 255, 0.55), transparent 65%); pointer-events: none; }
.guides-cta > * { position: relative; z-index: 1; }
.guides-cta h2 { margin: 0 0 0.35rem; font-size: var(--fs-2xl); color: #fff; }
.guides-cta p { margin: 0; max-width: 52ch; color: #c9d4ff; }
.guides-cta .btn-primary { color: var(--primary-dark); background: #fff; border-color: #fff; box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.4); }
.guides-cta .btn-primary:hover { color: var(--primary-dark); background: #f1f5ff; }

.guide-thumbnail img { display: block; width: 100%; height: auto; margin-bottom: 0.75rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.related-guides { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 0.5rem; }
.related-guides a { display: flex; align-items: center; gap: 0.75rem; margin: 0 -0.5rem; padding: 0.5rem; border-radius: var(--radius); color: var(--text); font-weight: 600; font-size: 0.9rem; line-height: 1.35; }
.related-guides a:hover { color: var(--primary); background: var(--surface-2); text-decoration: none; }
.related-guides img { flex: none; width: 96px; height: 54px; border-radius: var(--radius-sm); object-fit: cover; }
.related-guides__all { font-weight: 600; font-size: 0.9rem; }

/* ---------- Motion ---------- */
@keyframes rise { from { opacity: 0; translate: 0 14px; } to { opacity: 1; translate: none; } }
@keyframes sweep { from { opacity: 0; translate: 0 -6px; } to { opacity: 1; translate: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .finder-layout, .detail-grid { grid-template-columns: 1fr; }
  .filters, .sticky-panel { position: static; }
  .finder-layout { padding-top: 1.5rem; }
  .filters { display: none; }
  .filters.is-open {
    display: block; position: fixed; inset: auto 0 0 0; z-index: 60; max-height: 85vh; overflow-y: auto;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0; border-bottom: 0;
    box-shadow: 0 -20px 40px -12px rgba(16, 24, 40, 0.25), 0 0 0 100vmax rgba(11, 18, 32, 0.45);
    animation: sheet 0.35s var(--ease-out) both;
  }
  .filters__done { display: inline-flex; }
  .filters-toggle { display: inline-flex; }
  .finder-hero__grid { grid-template-columns: 1fr; }
  .finder-howto { display: none; }
  .finder-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-featured { grid-template-columns: 1fr; }
  .guide-featured__media { aspect-ratio: 16 / 9; }
  .guide-featured__body { padding: 1.5rem; }
}
@media (max-width: 860px) {
  /* .site-header has backdrop-filter, which makes it the containing block for its
     position:fixed descendants — so offsets below are sized with height/top (not
     bottom), since "bottom" would resolve against the header's own ~68px box,
     not the viewport. */
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; top: var(--header-h); right: 0; left: auto; z-index: 45;
    width: min(320px, 86vw); height: calc(100vh - var(--header-h));
    flex-direction: column; align-items: stretch; gap: 0.15rem; padding: 1rem 1rem 2rem;
    background: var(--surface); border-left: 1px solid var(--border); box-shadow: var(--shadow-xl);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); transition: transform var(--dur) var(--ease-out);
  }
  .is-menu-open .site-nav { transform: none; }
  .site-nav > a, .nav-dropdown-btn { display: flex; align-items: center; width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-sm); font-size: 1rem; }
  .site-nav > a[aria-current="page"] { background: var(--primary-light); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-btn { justify-content: space-between; }
  .nav-dropdown-btn__chevron { transition: transform var(--dur) var(--ease-out); }
  .nav-dropdown-btn[aria-expanded="true"] .nav-dropdown-btn__chevron { transform: rotate(180deg); }
  .nav-dropdown-content {
    position: static; min-width: 0; max-width: none; margin-left: 0.75rem; padding: 0 0 0 0.75rem;
    border: 0; border-left: 2px solid var(--primary-100); border-radius: 0; box-shadow: none;
    opacity: 1; visibility: visible; transform: none;
    max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease-out);
  }
  .nav-dropdown-btn[aria-expanded="true"] + .nav-dropdown-content { max-height: 220px; }
  .nav-dropdown-content a { padding: 0.6rem 0.75rem; font-size: 0.95rem; }
}
@media (min-width: 861px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex !important; position: static; transform: none; box-shadow: none; border: 0; padding: 0; background: none; }
}
@media (max-width: 640px) {
  .container { width: min(1180px, 100% - 2rem); }
  .cards-grid, .guide-grid { grid-template-columns: 1fr; }
  .guide-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.25rem; scrollbar-width: none; }
  .guide-chip { flex: none; }
}
/* ---------- Content pages (About / Contact) ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: var(--border); gap: 1px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 0; }
.stat-strip > div { padding: 1.4rem 1rem; text-align: center; background: var(--surface); }
.stat-strip dt { margin: 0; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--subtle); }
.stat-strip dd { margin: 0.3rem 0 0; font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 800; letter-spacing: -0.02em; color: var(--text); font-variant-numeric: tabular-nums; }

.info-section { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.info-section + .info-section { border-top: 1px solid var(--border); }
.info-section__head { max-width: 62ch; margin: 0 0 2rem; }
.info-section__head.center { max-width: 640px; margin-inline: auto; text-align: center; }
.info-eyebrow { display: inline-block; margin-bottom: 0.75rem; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); }
.info-section__head h2 { margin: 0 0 0.75rem; font-size: var(--fs-3xl); letter-spacing: -0.03em; }
.info-section__head p { margin: 0; font-size: var(--fs-lg); color: var(--muted); }

.info-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.info-prose p { margin: 0 0 1.15rem; font-size: var(--fs-md); line-height: 1.75; color: var(--text-2); }
.info-prose p:last-child { margin-bottom: 0; }
.info-prose a { font-weight: 500; }

.icon-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.icon-card { padding: 1.6rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--transition); }
.icon-card:hover { transform: translateY(-3px); border-color: var(--primary-100); box-shadow: var(--shadow); }
.icon-card__icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 1rem; color: #fff; background: var(--brand-gradient); border-radius: 12px; box-shadow: var(--shadow-primary); }
.icon-card__icon svg { width: 22px; height: 22px; }
.icon-card h3 { margin: 0 0 0.4rem; font-size: var(--fs-md); }
.icon-card p { margin: 0; font-size: 0.9rem; line-height: 1.6; color: var(--muted); }
.icon-card--muted .icon-card__icon { background: var(--surface-3); color: var(--primary); box-shadow: none; }

.device-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.device-card { display: flex; flex-direction: column; gap: 0.6rem; padding: 1.35rem; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--transition); }
.device-card:hover { color: var(--text); text-decoration: none; transform: translateY(-3px); border-color: var(--primary-100); box-shadow: var(--shadow); }
.device-card__icon { display: grid; place-items: center; width: 40px; height: 40px; color: var(--primary); background: var(--primary-light); border-radius: 10px; }
.device-card__icon svg { width: 20px; height: 20px; }
.device-card h3 { margin: 0; font-size: 0.975rem; }
.device-card p { margin: 0; font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

.trust-band { position: relative; overflow: hidden; padding: clamp(2.75rem, 6vw, 4rem) 0; color: #fff; background: var(--ink-gradient); }
.trust-band::before { content: ""; position: absolute; width: 480px; height: 480px; right: -140px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(109,75,255,.45), transparent 65%); pointer-events: none; }
.trust-band .container { position: relative; }
.trust-band__head { max-width: 640px; margin: 0 0 2rem; }
.trust-band .info-eyebrow { color: #a9b8ff; }
.trust-band h2 { margin: 0 0 0.6rem; font-size: var(--fs-3xl); color: #fff; letter-spacing: -0.03em; }
.trust-band__head p { margin: 0; font-size: var(--fs-lg); color: #c9d4ff; }
.trust-band__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.trust-band__item { display: flex; gap: 0.85rem; padding: 1.15rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); }
.trust-band__item svg { flex: none; width: 22px; height: 22px; color: #8fe3c0; }
.trust-band__item h3 { margin: 0 0 0.3rem; font-size: 0.95rem; color: #fff; }
.trust-band__item p { margin: 0; font-size: 0.85rem; line-height: 1.5; color: #c9d4ff; }

/* Forms (contact, etc.) */
.form-grid { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field label { display: block; margin-bottom: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--text-2); }
.form-field .req { color: var(--ended-text); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.75rem 1rem; font: inherit; font-size: 0.95rem; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: var(--border-strong); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); box-shadow: var(--ring); background: var(--surface); }
.form-field select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 16px; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 0.25rem; }
.form-note { margin: 0; font-size: 0.825rem; color: var(--muted); }
.form-status { display: none; margin-top: 0.5rem; padding: 0.75rem 1rem; font-size: 0.875rem; border-radius: var(--radius-sm); }
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--success-bg); color: #05603a; }
.form-status--error { background: var(--ended-bg); color: var(--ended-text); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card__row { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
.contact-card__row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-card__row:first-child { padding-top: 0; }
.contact-card__row svg { flex: none; margin-top: 0.15rem; color: var(--primary); }
.contact-card__row strong { display: block; font-size: 0.9rem; color: var(--text); }
.contact-card__row span, .contact-card__row a.value { display: block; font-size: 0.9rem; color: var(--muted); }
.contact-card__row a.value:hover { color: var(--primary); }
.copy-btn { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.3rem; padding: 0.3rem 0.65rem; font-size: 0.78rem; font-weight: 600; color: var(--primary-dark); background: var(--primary-light); border: 1px solid var(--primary-100); border-radius: 999px; cursor: pointer; transition: var(--transition); }
.copy-btn:hover { background: var(--primary-100); }
.copy-btn[data-copied="true"] { color: #05603a; background: var(--success-bg); border-color: #b7e6cf; }
.official-contact { padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
.official-contact:last-child { border-bottom: 0; padding-bottom: 0; }
.official-contact:first-child { padding-top: 0; }
.official-contact h3 { margin: 0 0 0.3rem; font-size: 0.95rem; }
.official-contact p { margin: 0.15rem 0; font-size: 0.875rem; color: var(--muted); }
.official-contact a { font-weight: 600; }

@media (max-width: 900px) {
  .info-split, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; margin-bottom: 1.25rem; font-size: 0.85rem; color: var(--subtle); }
.breadcrumb a { color: var(--muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--primary); text-decoration: none; }
.breadcrumb span[aria-hidden] { color: var(--border-strong); }
.breadcrumb span[aria-current] { color: var(--text-2); font-weight: 600; }

/* ---------- Star rating ---------- */
.star { position: relative; display: inline-block; width: 18px; height: 18px; }
.star svg { display: block; width: 18px; height: 18px; }
.star__base { color: var(--border-strong); }
.star__fill { position: absolute; inset: 0; overflow: hidden; color: #f5a524; }
.trust-rating { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.trust-rating__stars { display: inline-flex; gap: 0.1rem; }
.trust-rating__score { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--text); }
.trust-rating__label { font-size: 0.85rem; font-weight: 600; color: var(--muted); padding: 0.2rem 0.65rem; background: var(--surface-2); border-radius: 999px; }

/* ---------- Trust & Legitimacy panel ---------- */
.trust-panel { border-color: var(--primary-100); background: linear-gradient(180deg, var(--primary-light) 0%, var(--surface) 22%); }
.trust-panel__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1.5rem; margin-bottom: 1.1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--primary-100); }
.trust-panel__head h2 { margin: 0; padding: 0; border: 0; font-size: var(--fs-xl); }
.trust-panel__head h2::before { content: ""; display: inline-block; width: 20px; height: 20px; margin-right: 0.5rem; vertical-align: -4px; background: var(--brand-gradient); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 7.5-7 9-4-1.5-7-4.5-7-9V6l7-3z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.5-3 7.5-7 9-4-1.5-7-4.5-7-9V6l7-3z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat; }
.trust-rating--status .badge { font-size: 0.8rem; padding: 0.4rem 0.85rem; }
.trust-panel__facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.75rem; margin-bottom: 1.1rem; }
.trust-fact { padding: 0.75rem 0.9rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.trust-fact strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--text); }
.trust-fact span { font-size: 0.78rem; color: var(--muted); }
.trust-fact a { font-weight: 700; font-size: 0.95rem; }
.trust-panel__basis { margin-bottom: 1rem !important; }
.trust-panel__disclaimer { margin: 0; padding-top: 0.9rem; border-top: 1px dashed var(--primary-100); font-size: 0.8rem; line-height: 1.55; color: var(--muted); }

/* ---------- Finder card trust indicator ---------- */
.card__trust { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.card__trust .star { width: 14px; height: 14px; }
.card__trust .star svg { width: 14px; height: 14px; }
.card__trust-score { color: var(--text); font-weight: 700; }

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