/* ==========================================================================
   software.firstreviewers.com - shared stylesheet
   Design tokens are identical to the parent site (firstreviewers.com) so the
   network reads as one brand. One file, cached for every page.
   Sections: 1 tokens  2 base  3 header  4 buttons  5 hero  6 sections
             7 cards   8 faq   9 contact 10 footer 11 article layout
             12 sidebar 13 article body 14 category hub 15 legal 16 responsive
   ========================================================================== */

/* ================= 1. TOKENS ================= */
:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-soft: #DBEAFE;
  --amber: #F59E0B;
  --amber-soft: #FEF3C7;
  --green: #10B981;
  --green-soft: #D1FAE5;
  --rose: #E11D48;
  --rose-soft: #FFE4E6;
  --ink: #0B1F4B;
  --ink-2: #122B5C;
  --body: #334155;
  --slate: #334155;
  --slate-light: #64748B;
  --paper: #F8FAFC;
  --white: #FFFFFF;
  --line: #E2E8F0;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.14), 0 30px 60px rgba(15, 23, 42, 0.12);
  --font-display: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ================= 2. BASE ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
}
::selection { background: var(--amber); color: var(--ink); }
img, svg { display: block; max-width: 100%; }
img[width][height] { height: auto; }  /* HTML size attributes are hints for layout, not fixed CSS heights */
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.18; letter-spacing: -0.02em; color: var(--ink); }
section { scroll-margin-top: 86px; }
.container { width: min(1180px, 92%); margin-inline: auto; }
.container-narrow { width: min(880px, 92%); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--amber); color: var(--ink);
  padding: 10px 18px; border-radius: 0 0 10px 0;
  font-weight: 600; z-index: 200;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ================= 3. HEADER ================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.22rem; color: var(--ink); letter-spacing: -0.02em;
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-mark { transition: transform 0.3s ease; flex-shrink: 0; height: auto; }
.brand small {
  display: block; font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--slate-light);
}
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.main-nav a:not(.btn) {
  display: block; padding: 9px 12px;
  color: var(--slate); font-weight: 500; font-size: 0.92rem;
  border-radius: 10px; transition: color 0.2s ease, background 0.2s ease;
}
.main-nav a:not(.btn):hover { color: var(--ink); background: rgba(37, 99, 235, 0.07); }
.main-nav a[aria-current="page"] { color: var(--blue); background: var(--blue-soft); font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: none;
  border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2.5px; width: 100%; background: var(--ink); border-radius: 3px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ================= 4. BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  padding: 13px 26px; border-radius: 14px; border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap; text-align: center;
}
.btn-primary, .btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3); }
.btn-primary:hover, .btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37, 99, 235, 0.42); }
.btn-amber { background: var(--amber); color: var(--ink); box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35); }
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245, 158, 11, 0.45); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.35); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.btn-outline { background: var(--white); color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ================= 5. HERO ================= */
.hero {
  position: relative;
  background:
    radial-gradient(640px 420px at 12% 8%, rgba(37, 99, 235, 0.5), transparent 62%),
    radial-gradient(520px 360px at 88% 12%, rgba(245, 158, 11, 0.17), transparent 60%),
    radial-gradient(760px 520px at 72% 96%, rgba(16, 185, 129, 0.13), transparent 62%),
    var(--ink);
  color: var(--white);
  padding: clamp(76px, 11vw, 132px) 0 clamp(52px, 8vw, 84px);
  text-align: center;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #FCD34D; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.02em; padding: 8px 18px; border-radius: 100px; margin-bottom: 26px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.08); }
}
.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 3.9rem); font-weight: 800;
  max-width: 17ch; margin: 0 auto 22px; letter-spacing: -0.03em; color: var(--white);
}
.hero h1 .accent {
  background: linear-gradient(100deg, #FBBF24, #F59E0B 55%, #10B981);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { max-width: 660px; margin: 0 auto 32px; font-size: clamp(1.03rem, 1.6vw, 1.2rem); color: #CBD5E1; }
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-chips a {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #E2E8F0; font-size: 0.9rem; font-weight: 500;
  padding: 9px 16px; border-radius: 100px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-chips a:hover { background: rgba(255, 255, 255, 0.13); border-color: rgba(255, 255, 255, 0.32); transform: translateY(-2px); color: var(--white); }
.hero-chips .count { color: #94A3B8; font-size: 0.8rem; }
.hero-proof { display: flex; justify-content: center; gap: 8px 26px; flex-wrap: wrap; color: #94A3B8; font-size: 0.9rem; font-weight: 500; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { color: var(--green); flex-shrink: 0; }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  background:
    radial-gradient(640px 420px at 12% 8%, rgba(37, 99, 235, 0.5), transparent 62%),
    radial-gradient(520px 360px at 88% 12%, rgba(245, 158, 11, 0.17), transparent 60%),
    var(--ink);
  color: var(--white);
  padding: clamp(52px, 8vw, 88px) 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.95rem, 4.4vw, 2.9rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: #CBD5E1; max-width: 680px; margin: 0 auto; }
.page-hero .eyebrow { background: rgba(245, 158, 11, 0.14); color: #FCD34D; }
.updated-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.35);
  color: #FCD34D; font-size: 0.84rem; font-weight: 600;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 20px;
}

/* ================= 6. SECTIONS ================= */
.stats-strip { background: var(--ink-2); border-top: 1px solid rgba(255, 255, 255, 0.07); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.stat-number em { font-style: normal; color: var(--amber); }
.stat-label { color: #94A3B8; font-size: 0.88rem; font-weight: 500; margin-top: 4px; }

.section { padding: clamp(64px, 9vw, 104px) 0; }
.section-sm { padding: clamp(44px, 6vw, 68px) 0; }
.section-alt { background: var(--white); border-block: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.45rem); font-weight: 800; margin-bottom: 14px; color: var(--ink); }
.section-head p { color: var(--slate); font-size: 1.04rem; }
.section-foot { text-align: center; margin-top: 40px; }

/* ================= 7. CARDS ================= */
.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column; align-items: center; gap: 13px;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.cat-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; transition: transform 0.25s ease; }
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-4deg); }
.cat-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.cat-card p { font-size: 0.86rem; color: var(--slate); flex-grow: 1; }
.cat-count { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-light); }
.cat-link { font-size: 0.88rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.cat-link .arrow { transition: transform 0.2s ease; }
.cat-card:hover .cat-link .arrow { transform: translateX(4px); }

.tint-blue   { background: var(--blue-soft); color: var(--blue); }
.tint-amber  { background: var(--amber-soft); color: #B45309; }
.tint-green  { background: var(--green-soft); color: #047857; }
.tint-violet { background: #EDE9FE; color: #6D28D9; }
.tint-rose   { background: #FFE4E6; color: #BE123C; }

/* Article cards */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-grid.two-up { grid-template-columns: repeat(2, 1fr); }
.post-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.post-card .thumb { aspect-ratio: 1200 / 630; width: 100%; height: auto; object-fit: cover; background: var(--paper); border-bottom: 1px solid var(--line); }
.post-card .post-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.post-card h3 { font-size: 1.08rem; font-weight: 700; line-height: 1.3; }
.post-card h3 a { color: var(--ink); }
.post-card:hover h3 a { color: var(--blue); }
.post-card p { font-size: 0.92rem; color: var(--slate); flex-grow: 1; }
.post-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 0.8rem; color: var(--slate-light); }
.post-card .read-more { font-size: 0.88rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.post-card:hover .read-more .arrow { transform: translateX(4px); }
.read-more .arrow { transition: transform 0.2s ease; }

/* Featured pillar card on a hub */
.pillar-card {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  overflow: hidden; box-shadow: var(--shadow-md);
}
.pillar-card img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 1200 / 630; background: var(--paper); }
.pillar-card .pillar-body { padding: clamp(26px, 4vw, 44px); display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.pillar-card h2 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); font-weight: 800; line-height: 1.22; }
.pillar-card h2 a { color: var(--ink); }
.pillar-card h2 a:hover { color: var(--blue); }
.pillar-card p { color: var(--slate); font-size: 0.98rem; }
.pillar-card .btn { align-self: flex-start; }

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px; background: var(--blue-soft); color: var(--blue-dark);
}
.pill--crm { background: var(--blue-soft); color: #1D4ED8; }
.pill--email-marketing { background: var(--amber-soft); color: #B45309; }
.pill--project-management { background: var(--green-soft); color: #047857; }
.pill--ai-tools { background: #EDE9FE; color: #6D28D9; }
.pill--accounting-software { background: #FFE4E6; color: #BE123C; }

/* Popular comparisons */
.compare-wrap { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.compare-row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 18px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.compare-row:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: var(--blue); }
.compare-row h3 { font-size: 1.02rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0; color: var(--ink); }
.compare-row .vs-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--slate-light);
  background: var(--paper); border: 1px solid var(--line); padding: 4px 10px; border-radius: 100px; flex-shrink: 0;
}
.compare-row .arrow { color: var(--blue); flex-shrink: 0; transition: transform 0.2s ease; }
.compare-row:hover .arrow { transform: translateX(4px); }
.compare-row.pending { opacity: 0.6; }
.compare-row.pending:hover { transform: none; border-color: var(--line); box-shadow: none; }
.compare-row .soon-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate-light); background: var(--paper); border: 1px dashed var(--line);
  padding: 4px 10px; border-radius: 100px; flex-shrink: 0;
}

/* Trust + process */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.section-alt .trust-card { background: var(--paper); }
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trust-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; }
.trust-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.trust-card p { color: var(--slate); font-size: 0.96rem; }
.trust-num {
  position: absolute; top: 22px; right: 26px; font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800; color: var(--paper);
  -webkit-text-stroke: 1.5px var(--line); line-height: 1;
}
.section-alt .trust-num { color: var(--white); }

.process-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; position: relative; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num {
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  display: grid; place-items: center; margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.28);
}
.step-card:nth-child(even) .step-num { background: linear-gradient(135deg, var(--amber), #D97706); box-shadow: 0 6px 14px rgba(245, 158, 11, 0.3); }
.step-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--slate); font-size: 0.93rem; }

/* Founder */
.founder-card {
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 5vw, 60px);
  align-items: center; background: var(--white); border: 1px solid var(--line);
  border-radius: 24px; padding: clamp(28px, 5vw, 52px); box-shadow: var(--shadow-md);
  max-width: 1020px; margin: 0 auto;
}
.section-alt .founder-card { background: var(--paper); }
.founder-photo { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-md); }
.founder-content .eyebrow { margin-bottom: 14px; }
.founder-content h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 16px; }
.founder-content > p { color: var(--slate); margin-bottom: 18px; }
.founder-points { list-style: none; margin: 0 0 26px; display: grid; gap: 10px; }
.founder-points li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-2); font-weight: 500; font-size: 0.97rem; }
.founder-points svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ================= 8. FAQ ================= */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.section-alt .faq-item { background: var(--paper); }
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; padding: 20px 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--blue);
  transition: transform 0.3s ease; flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 24px 20px; color: var(--slate); font-size: 0.96rem; }

/* ================= 9. CONTACT ================= */
.contact-section {
  background:
    radial-gradient(600px 400px at 85% 15%, rgba(37, 99, 235, 0.55), transparent 62%),
    radial-gradient(480px 340px at 10% 90%, rgba(245, 158, 11, 0.16), transparent 60%),
    var(--ink);
  color: var(--white);
}
.contact-section .section-head h2 { color: var(--white); }
.contact-section .section-head p { color: #CBD5E1; }
.contact-section .eyebrow { background: rgba(245, 158, 11, 0.14); color: #FCD34D; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1080px; margin: 0 auto; }
.contact-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: 32px 28px; backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.contact-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.08); }
.contact-icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(245, 158, 11, 0.15); color: var(--amber); margin-bottom: 18px;
}
.contact-card h3 { font-size: 1.18rem; margin-bottom: 10px; color: var(--white); }
.contact-card p { color: #CBD5E1; font-size: 0.94rem; margin-bottom: 18px; }
.contact-card .contact-link { color: #FCD34D; font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; }
.contact-card .contact-link:hover { text-decoration: underline; }
.contact-note { text-align: center; color: #94A3B8; font-size: 0.9rem; margin-top: 32px; }

/* Contact form (Web3Forms) */
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-sm); max-width: 720px; margin: 0 auto;
}
.form-row { display: grid; gap: 6px; margin-bottom: 18px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label { font-size: 0.88rem; font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.97rem; color: var(--body);
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 12px 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-row textarea { min-height: 150px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.form-hint { font-size: 0.84rem; color: var(--slate-light); margin-top: 14px; }
.form-status { margin-top: 16px; font-size: 0.93rem; font-weight: 500; }
.form-status.ok { color: #047857; }
.form-status.err { color: #BE123C; }

/* ================= 10. FOOTER ================= */
.site-footer { background: #071335; color: #94A3B8; padding: 66px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 46px; }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
/* the logo mark is dark navy, so it needs inverting to read on the dark footer */
.footer-brand .brand-mark { filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.footer-col h4, .footer-col .footer-title { color: var(--white); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a, .footer-col span.soon-link { color: #94A3B8; font-size: 0.93rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-col .tag-soon {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #64748B; background: rgba(100, 116, 139, 0.15); border-radius: 6px; padding: 2px 7px; margin-left: 7px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; font-size: 0.84rem;
}
.footer-bottom p { color: #64748B; }
.footer-bottom a { color: #94A3B8; }
.footer-bottom a:hover { color: var(--white); }

/* ================= 11. ARTICLE LAYOUT ================= */
.notice-bar {
  background: var(--amber-soft); border-bottom: 1px solid #FDE68A;
  color: #92400E; font-size: 0.87rem; text-align: center; padding: 10px 0;
}
.notice-bar a { color: #92400E; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.breadcrumb { font-size: 0.85rem; color: var(--slate-light); padding: 22px 0 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "/"; color: var(--line); }
.breadcrumb a { color: var(--slate-light); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 500; }

.article-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px; align-items: start; padding: 26px 0 clamp(56px, 8vw, 90px);
}
.article-main { min-width: 0; max-width: 760px; }

.article-head { margin-bottom: 26px; }
.article-head h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; margin: 14px 0 16px; }
.article-dek { font-size: 1.08rem; color: var(--slate); }
.article-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 0.86rem; color: var(--slate-light);
}
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { color: var(--slate-light); flex-shrink: 0; }
.article-hero-img {
  width: 100%; height: auto; aspect-ratio: 1200 / 630; object-fit: cover;
  border-radius: 20px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 30px;
  background: var(--paper);
}

/* Quick verdict */
.verdict-box {
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--amber);
  border-radius: 18px; padding: 26px 28px; margin-bottom: 30px; box-shadow: var(--shadow-sm);
}
.verdict-box h2 { font-size: 1.12rem; font-weight: 700; margin-bottom: 4px; }
.verdict-box > p { font-size: 0.9rem; color: var(--slate-light); margin-bottom: 18px; }
.verdict-list { display: grid; gap: 12px; }
.verdict-item {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 15px 18px;
}
.verdict-item .label {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate-light); margin-bottom: 3px;
}
.verdict-item .pick { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.verdict-item .note { display: block; font-size: 0.87rem; color: var(--slate); margin-top: 2px; }

/* Table of contents */
.toc {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 24px; margin-bottom: 32px;
}
.toc summary {
  list-style: none; cursor: pointer; font-family: var(--font-display); font-weight: 700;
  font-size: 0.98rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between;
}
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after { content: "+"; font-size: 1.35rem; font-weight: 400; color: var(--blue); transition: transform 0.3s ease; }
.toc[open] summary::after { transform: rotate(45deg); }
.toc ol { list-style: none; counter-reset: toc; margin-top: 16px; display: grid; gap: 9px; }
.toc li { counter-increment: toc; font-size: 0.93rem; display: flex; gap: 10px; }
.toc li::before { content: counter(toc) "."; color: var(--slate-light); font-variant-numeric: tabular-nums; flex-shrink: 0; }
.toc a { color: var(--slate); }
.toc a:hover { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ================= 12. SIDEBAR ================= */
.sidebar { position: sticky; top: 92px; display: grid; gap: 20px; }
.widget {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 22px 22px 24px; box-shadow: var(--shadow-sm);
}
.widget-title {
  font-family: var(--font-display); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate-light);
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.widget ul { list-style: none; display: grid; gap: 14px; }
.widget-list li { display: grid; gap: 5px; }
.widget-list a { color: var(--ink); font-size: 0.93rem; font-weight: 500; line-height: 1.4; }
.widget-list a:hover { color: var(--blue); }
.widget-list .meta { font-size: 0.78rem; color: var(--slate-light); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.widget-toppick { border-color: #FDE68A; background: linear-gradient(180deg, #FFFBEB 0%, var(--white) 55%); }
.widget-toppick .widget-title { color: #B45309; border-bottom-color: #FDE68A; }
.widget-toppick .pick-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.widget-toppick p { font-size: 0.9rem; color: var(--slate); margin-bottom: 16px; }
.widget-toppick .disclaimer { font-size: 0.75rem; color: var(--slate-light); margin: 12px 0 0; text-align: center; }

.widget-cats ul { gap: 4px; }
.widget-cats li a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-radius: 10px; font-size: 0.92rem; font-weight: 500; color: var(--slate);
  transition: background 0.2s ease, color 0.2s ease;
}
.widget-cats li a:hover { background: var(--paper); color: var(--blue); }
.widget-cats li a[aria-current="page"] { background: var(--blue-soft); color: var(--blue-dark); font-weight: 600; }
.widget-cats .count { font-size: 0.78rem; color: var(--slate-light); font-variant-numeric: tabular-nums; }

.widget-ad {
  border-style: dashed; background: var(--paper); text-align: center;
  color: var(--slate-light); font-size: 0.82rem; padding: 34px 20px;
}

/* ================= 13. ARTICLE BODY ================= */
.article-body { font-size: 1.06rem; line-height: 1.75; color: var(--slate); }
.article-body > * + * { margin-top: 1.15em; }
.article-body h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.72rem); font-weight: 800;
  margin-top: 2.1em; margin-bottom: 0.55em; scroll-margin-top: 92px;
}
.article-body h3 { font-size: clamp(1.12rem, 2vw, 1.28rem); font-weight: 700; margin-top: 1.7em; margin-bottom: 0.45em; scroll-margin-top: 92px; }
.article-body h4 { font-size: 1.05rem; font-weight: 700; margin-top: 1.5em; margin-bottom: 0.4em; }
.article-body p { margin-bottom: 0; }
.article-body a { color: var(--blue); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(37, 99, 235, 0.32); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-color: var(--blue); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body ul, .article-body ol { padding-left: 24px; display: grid; gap: 9px; }
.article-body li { padding-left: 4px; }
.article-body li::marker { color: var(--blue); }
.article-body blockquote {
  border-left: 4px solid var(--blue); background: var(--white);
  border-radius: 0 14px 14px 0; padding: 18px 24px; color: var(--ink-2); font-size: 1.02rem;
}
.article-body figure { margin-block: 1.8em; }
.article-body figure img { width: 100%; height: auto; border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--paper); }
.article-body figcaption { font-size: 0.85rem; color: var(--slate-light); text-align: center; margin-top: 10px; }
.article-body hr { border: none; border-top: 1px solid var(--line); margin-block: 2.4em; }
.article-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9em;
  background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 2px 6px;
}

/* Tables */
.article-body .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 16px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
.article-body table { width: 100%; border-collapse: collapse; font-size: 0.93rem; min-width: 560px; }
.article-body thead th {
  background: var(--ink); color: var(--white); font-family: var(--font-display);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.03em; text-transform: uppercase;
  text-align: left; padding: 13px 16px; white-space: nowrap;
}
.article-body tbody td { padding: 13px 16px; border-top: 1px solid var(--line); vertical-align: top; color: var(--slate); }
.article-body tbody tr:nth-child(even) { background: var(--paper); }
.article-body tbody td:first-child { font-weight: 600; color: var(--ink); }

/* Pros and cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-block: 1.8em; }
.pros-cons > div { border-radius: 16px; padding: 20px 22px; border: 1px solid var(--line); }
.pros-cons .pros { background: var(--green-soft); border-color: #A7F3D0; }
.pros-cons .cons { background: var(--rose-soft); border-color: #FECDD3; }
.pros-cons h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 12px; }
.pros-cons .pros h4 { color: #047857; }
.pros-cons .cons h4 { color: #BE123C; }
.pros-cons ul { list-style: none; padding: 0; display: grid; gap: 9px; font-size: 0.93rem; }
.pros-cons li { position: relative; padding-left: 24px; color: var(--ink-2); }
.pros-cons .pros li::before { content: "\2713"; position: absolute; left: 0; color: #047857; font-weight: 700; }
.pros-cons .cons li::before { content: "\00D7"; position: absolute; left: 0; color: #BE123C; font-weight: 700; font-size: 1.1em; line-height: 1.4; }

/* Callouts and CTA banners */
.callout {
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--blue);
  border-radius: 0 16px 16px 0; padding: 20px 24px; font-size: 0.98rem;
}
.callout strong:first-child { display: block; font-family: var(--font-display); color: var(--ink); margin-bottom: 5px; }
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #17347A 100%);
  color: var(--white); border-radius: 20px; padding: 28px 32px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; margin-block: 2em;
}
.cta-banner h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.cta-banner p { color: #CBD5E1; font-size: 0.93rem; margin: 0; }
.cta-banner .btn { flex-shrink: 0; }

/* Verdict recap */
.verdict-recap {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px 30px; margin-top: 2.4em; box-shadow: var(--shadow-sm);
}
.verdict-recap h2 { margin-top: 0; }

/* Author box */
.author-box {
  display: grid; grid-template-columns: 92px 1fr; gap: 22px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 24px 26px; margin-top: 44px; box-shadow: var(--shadow-sm);
}
.author-box img { width: 92px; height: 92px; border-radius: 18px; object-fit: cover; }
.author-box .role { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate-light); }
.author-box h3 { font-size: 1.14rem; font-weight: 700; margin: 3px 0 7px; }
.author-box p { font-size: 0.92rem; color: var(--slate); margin-bottom: 8px; }

/* Related */
.related { margin-top: 48px; }
.related h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.related-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px;
  display: grid; gap: 7px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--blue); }
.related-card h3 { font-size: 0.99rem; font-weight: 600; line-height: 1.35; }
.related-card h3 a { color: var(--ink); }
.related-card:hover h3 a { color: var(--blue); }

/* Article FAQ block */
.article-faq { margin-top: 48px; }
.article-faq h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 20px; }
.article-faq .faq-list { max-width: none; }

/* ================= 14. CATEGORY HUB ================= */
.cross-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cross-strip a {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; display: grid; gap: 4px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.cross-strip a:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: var(--shadow-sm); }
.cross-strip strong { color: var(--ink); font-family: var(--font-display); font-size: 0.97rem; }
.cross-strip span { font-size: 0.82rem; color: var(--slate-light); }

.empty-note {
  background: var(--white); border: 1px dashed var(--line); border-radius: 18px;
  padding: 34px 30px; text-align: center; color: var(--slate);
}
.empty-note h3 { font-size: 1.1rem; margin-bottom: 8px; }

/* ================= 15. LEGAL / SIMPLE PAGES ================= */
.legal-section { padding: clamp(46px, 7vw, 76px) 0; }
.legal-card {
  max-width: 860px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--line); border-radius: 24px;
  padding: clamp(26px, 5vw, 54px); box-shadow: var(--shadow-sm);
}
.legal-card h2 { font-size: 1.3rem; font-weight: 700; margin: 36px 0 12px; }
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card h3 { font-size: 1.04rem; font-weight: 700; margin: 22px 0 8px; }
.legal-card p { color: var(--slate); margin-bottom: 14px; font-size: 0.97rem; }
.legal-card ul, .legal-card ol { color: var(--slate); margin: 0 0 16px 22px; font-size: 0.97rem; display: grid; gap: 7px; }
.legal-card li strong { color: var(--ink); }
.legal-card a { color: var(--blue); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(37, 99, 235, 0.35); text-underline-offset: 3px; }
.legal-card a:hover { text-decoration-color: var(--blue); }
.legal-card strong { color: var(--ink); }
.legal-card img { border-radius: 16px; margin-bottom: 18px; }
.notice-box {
  background: var(--amber-soft); border: 1px solid #FDE68A; border-radius: 14px;
  padding: 16px 20px; margin-bottom: 26px; font-size: 0.92rem; color: #92400E;
}
.summary-box {
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--blue);
  border-radius: 14px; padding: 18px 22px; margin-bottom: 26px; font-size: 0.95rem;
}
.summary-box strong { display: block; margin-bottom: 6px; color: var(--ink); font-family: var(--font-display); font-size: 0.95rem; }

/* 404 */
.error-wrap { text-align: center; padding: clamp(60px, 10vw, 110px) 0; }
.error-code { font-family: var(--font-display); font-size: clamp(4.5rem, 14vw, 8rem); font-weight: 800; color: var(--blue-soft); line-height: 1; letter-spacing: -0.04em; }
.error-wrap h1 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 6px 0 14px; }
.error-wrap > p { max-width: 560px; margin: 0 auto 30px; color: var(--slate); }

/* ================= REVEAL ================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ================= 16. RESPONSIVE ================= */
@media (max-width: 1120px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 34px; }
  .main-nav a:not(.btn) { padding: 9px 9px; font-size: 0.88rem; }
}
@media (max-width: 1020px) {
  /* Sidebar stacks AFTER the article so mobile readers get content first */
  .article-layout { grid-template-columns: 1fr; gap: 34px; }
  .article-main { max-width: none; }
  .sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .widget-toppick { grid-column: 1 / -1; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .process-wrap { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-card { grid-template-columns: 250px 1fr; }
  .pillar-card { grid-template-columns: 1fr; }
  .cross-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: 73px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    padding: 18px 4vw 24px;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99; max-height: calc(100vh - 73px); overflow-y: auto;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a:not(.btn) { padding: 13px 16px; font-size: 1.02rem; }
  .main-nav .nav-extra { display: block; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-photo { max-width: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .cta-banner { grid-template-columns: 1fr; }
}
@media (min-width: 901px) { .main-nav .nav-extra { display: none; } }
@media (max-width: 700px) {
  .pros-cons { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .post-grid, .post-grid.two-up { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .cat-card { padding: 20px 14px; }
  .process-wrap { grid-template-columns: 1fr; }
  .compare-row { flex-wrap: wrap; padding: 16px 18px; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .faq-item summary { padding: 17px 18px; font-size: 0.97rem; }
  .faq-item .faq-answer { padding: 0 18px 17px; }
  .stat-number { font-size: 1.7rem; }
  .cross-strip { grid-template-columns: 1fr; }
  .author-box { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .verdict-item { grid-template-columns: 1fr; }
  .verdict-item .btn { width: 100%; }
}
