:root {
  --color-deep:    #1B2A4A;
  --color-deep-2:  #16223c;
  --color-coral:   #E8735A;
  --color-coral-d: #d9634a;
  --color-sand:    #FAF6F1;
  --color-ink:     #2B2B2B;
  --color-mist:    #6B7280;
  --color-accent2: #7A6BB5;
  --color-line:    #ece6dc;
  --color-amber:   #E0A23B;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max-read-width: 720px;
  --max-page-width: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --space-section: 96px;
  --shadow-sm: 0 6px 18px rgba(27,42,74,.08);
  --shadow-md: 0 16px 40px rgba(27,42,74,.16);
  --shadow-coral: 0 18px 46px rgba(232,115,90,.32);
}

/* NOTE: v2 §4.2 requires self-hosted Fraunces/Inter woff2 (<100KB/weight, no Google Fonts).
   Drop the files into /public/fonts/ and uncomment the @font-face blocks below.
   Until then the system serif/sans fallbacks above are used (no external request). */
/*
@font-face { font-family:'Fraunces'; src:url('/fonts/Fraunces-400.woff2') format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'Fraunces'; src:url('/fonts/Fraunces-600.woff2') format('woff2'); font-weight:600; font-display:swap; }
@font-face { font-family:'Inter'; src:url('/fonts/Inter-400.woff2') format('woff2'); font-weight:400; font-display:swap; }
@font-face { font-family:'Inter'; src:url('/fonts/Inter-600.woff2') format('woff2'); font-weight:600; font-display:swap; }
*/

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--color-sand); color: var(--color-ink);
  font-family: var(--font-body); font-size: 18px; line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--max-page-width); margin: 0 auto; padding: 0 20px; }
a { color: var(--color-coral); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; color: var(--color-deep); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: 1.7rem; margin-top: 2em; }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1.1em; }
img { max-width: 100%; height: auto; }
.tiny { font-size: 0.8rem; }
.muted { color: var(--color-mist); }
.center { text-align: center; }

/* ---------- nav ---------- */
.nav { background: rgba(27,42,74,.96); backdrop-filter: blur(8px); color: #fff; position: sticky; top: 0; z-index: 30; border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: var(--max-page-width); margin: 0 auto; }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; color: #fff; letter-spacing: -0.02em; }
.brand span { color: var(--color-coral); }
.nav-links a { position: relative; color: #e8e2d8; margin-left: 18px; font-size: 0.95rem; font-weight: 500; padding-bottom: 6px; }
.nav-links a.active { color: #fff; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--color-coral); border-radius: 2px; opacity: 0; transition: opacity .15s ease; }
.nav-links a.active::after { opacity: 1; }
.nav-links a:hover { text-decoration: none; color: #fff; }
.nav-links a:hover::after { opacity: .5; }

/* ---------- buttons ---------- */
.btn-primary, .btn-ghost, .btn-dark {
  display: inline-block; padding: 14px 26px; border-radius: 999px; font-weight: 700;
  cursor: pointer; border: 0; font-size: 1rem; text-decoration: none; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-d)); color: #fff; box-shadow: var(--shadow-coral); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 54px rgba(232,115,90,.42); text-decoration: none; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--color-coral); color: #fff; text-decoration: none; }
.btn-dark { background: var(--color-deep); color: #fff; }
.btn-dark:hover { background: var(--color-deep-2); transform: translateY(-2px); text-decoration: none; }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1000px 560px at 82% -12%, rgba(232,115,90,.42), transparent 58%),
    radial-gradient(700px 500px at 8% 110%, rgba(122,107,181,.30), transparent 55%),
    linear-gradient(160deg, var(--color-deep), var(--color-deep-2));
  color: #F4EFE9; position: relative; overflow: hidden; padding: var(--space-section) 0 72px;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 64px;
  background: var(--color-sand);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 38%);
}
.hero-inner { max-width: 860px; position: relative; z-index: 2; }
.hero .eyebrow { color: #ffb59e; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; font-weight: 700; }
.hero h1 { color: #fff; margin: 0.32em 0 0.28em; font-size: clamp(2.4rem, 6vw, 4rem); }
.hero .lead { font-size: 1.28rem; color: #d9d2c7; max-width: 660px; line-height: 1.6; }
.hero-actions { margin: 1.8em 0 0.4em; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { color: #b9b1a4; font-size: 0.92rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 34px; position: relative; z-index: 2; }
.hero-stats .hs { }
.hero-stats .hs b { display: block; font-family: var(--font-display); font-size: 1.8rem; color: #fff; line-height: 1; }
.hero-stats .hs span { font-size: 0.82rem; color: #b9b1a4; }
/* compact hero variant for listing pages (no stat row) */
.hero-sm { padding: 72px 0 88px; }
.hero-sm .lead { font-size: 1.18rem; }

/* ---------- trust band ---------- */
.trust { background: #fff; border-bottom: 1px solid var(--color-line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 38px 0; }
.trust-item { text-align: center; padding: 6px 10px; }
.trust-item .ticon { width: 44px; height: 44px; margin: 0 auto 10px; color: var(--color-coral); }
.trust-item h4 { margin: 0 0 4px; font-size: 1.02rem; color: var(--color-deep); }
.trust-item p { margin: 0; font-size: 0.86rem; color: var(--color-mist); }

/* method cards (how-we-test) */
.method { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 8px 0 6px; }
.method-card { display: flex; gap: 16px; align-items: flex-start; background: linear-gradient(180deg,#fff,#fffdfb); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; }
.method-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.method-card .mnum { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; background: linear-gradient(135deg, var(--color-deep), var(--color-coral)); }
.method-card .micon { flex: 0 0 auto; width: 30px; height: 30px; color: var(--color-coral); margin-top: 4px; }
.method-card h3 { margin: 0 0 5px; font-size: 1.08rem; color: var(--color-deep); }
.method-card p { margin: 0; font-size: 0.9rem; color: var(--color-ink); line-height: 1.5; }
@media (max-width: 700px) { .method { grid-template-columns: 1fr; } }

/* ---------- sections ---------- */
.section { padding: var(--space-section) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.section-head h2 { margin: 0; position: relative; padding-bottom: 10px; }
.section-head h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 54px; height: 4px; border-radius: 4px; background: var(--color-coral); }
.section-sub { color: var(--color-mist); max-width: 660px; font-size: 1.05rem; }
.link { color: var(--color-coral); font-weight: 700; font-size: .95rem; white-space: nowrap; }
.link:hover { text-decoration: none; color: var(--color-coral-d); }
.band { background: #fff; padding: var(--space-section) 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ---------- cards (cover style) ---------- */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; margin-top: 28px; }
.pcard, .rcard {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg);
  color: var(--color-ink); display: flex; flex-direction: column; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  box-shadow: var(--shadow-sm);
}
.pcard:hover, .rcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; text-decoration: none; }
.card-cover { position: relative; height: 156px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card-cover::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120px 120px at 80% 20%, rgba(255,255,255,.22), transparent 60%); }
.tone-coral  { background: linear-gradient(135deg, #E8735A, #d9634a); }
.tone-violet { background: linear-gradient(135deg, #7A6BB5, #5b4f93); }
.tone-navy   { background: linear-gradient(135deg, #1B2A4A, #2c4068); }
.cover-mono { font-family: var(--font-display); font-size: 3.6rem; font-weight: 600; color: rgba(255,255,255,.94); letter-spacing: .02em; }
.cover-tag { position: absolute; bottom: 12px; right: 14px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.82); font-weight: 600; }
.badge { position: absolute; top: 12px; left: 12px; background: #fff; color: var(--color-deep); font-size: .68rem; font-weight: 800; padding: 6px 11px; border-radius: 999px; box-shadow: 0 6px 16px rgba(0,0,0,.18); text-transform: uppercase; letter-spacing: .04em; z-index: 2; }
.pcard-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.pcard-sku, .rcard-tag { display: inline-block; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--color-coral); margin-bottom: 8px; font-weight: 700; }
.pcard h3, .rcard h3 { margin: 0 0 8px; font-size: 1.18rem; color: var(--color-deep); line-height: 1.25; }
.pcard p, .rcard p { color: var(--color-mist); font-size: .94rem; margin: 0 0 14px; }
.pcard-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pcard-meta, .rcard-score { font-weight: 700; color: var(--color-ink); font-size: .95rem; }
.pcard-go { color: var(--color-coral); font-weight: 700; font-size: .9rem; }

/* ---------- featured pick (listing focal card) ---------- */
.featured { display: grid; grid-template-columns: 340px 1fr; margin-top: 28px; box-shadow: var(--shadow-md); }
.featured .card-cover { height: 100%; min-height: 230px; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.featured .pcard-body { padding: 30px 32px; justify-content: center; }
.featured .pcard-body h3 { font-size: 1.55rem; }
.featured .pcard-body p { font-size: 1.02rem; }
.featured .pcard-foot { margin-top: 20px; padding-top: 16px; }
.featured-note { margin: 16px 0 0; color: var(--color-mist); font-size: .96rem; }
.featured-note b { color: var(--color-deep); }
@media (max-width: 700px) {
  .featured { grid-template-columns: 1fr; }
  .featured .card-cover { height: 150px; min-height: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

/* ---------- category chips (internal links / nav) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 4px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--color-line); color: var(--color-deep); font-weight: 700; font-size: .9rem; box-shadow: var(--shadow-sm); transition: transform .15s, border-color .15s; }
.chip:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--color-coral); }
.chip .chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-coral); }

/* ---------- stars ---------- */
.stars { display: inline-flex; align-items: center; gap: 1px; line-height: 1; }
.stars .star { font-size: 1.05rem; line-height: 1; }
.stars .star.full { color: var(--color-coral); }
.stars .star.empty { color: #d8d2c7; }
.stars .star-num { margin-left: 7px; font-size: .78rem; color: var(--color-mist); font-weight: 700; }

/* ---------- article ---------- */
.post { max-width: var(--max-read-width); margin: 44px auto; }
.post-head h1 { margin: 0.18em 0; font-size: clamp(2rem, 4.4vw, 2.9rem); }
.post-meta { margin-bottom: 1.2em; color: var(--color-mist); font-size: .92rem; }
.post-stars { margin: 6px 0 2px; }
.post-badge { display: inline-block; background: var(--color-coral); color: #fff; font-size: .7rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.eyebrow { color: var(--color-coral); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; font-weight: 700; }
.post-body { font-size: 1.06rem; }
.post-body h2 { scroll-margin-top: 90px; }
.post-body img { border-radius: var(--radius); margin: 1.4em 0; }
.post-body a { font-weight: 600; }
.table-wrap { overflow-x: auto; margin: 1.4em 0; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.spec-table th, .spec-table td { border: 1px solid #e3ddd2; padding: 10px 12px; text-align: left; }
.spec-table th { background: var(--color-deep); color: #fff; }

/* rating card */
.rating-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 22px; margin: 26px 0; box-shadow: var(--shadow-sm); }
.rating-card h3 { margin-top: 0; display: flex; align-items: center; gap: 10px; }
.rating-card .verified { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #2e7d55; background: #e7f4ec; padding: 4px 9px; border-radius: 999px; }
.score { display: grid; grid-template-columns: 92px 1fr 44px; align-items: center; gap: 10px; margin: 10px 0; }
.score-label { font-size: .85rem; color: var(--color-ink); }
.score-track { height: 8px; background: #ece6dc; border-radius: 99px; overflow: hidden; }
.score-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--color-coral), var(--color-coral-d)); }
.score-num { font-size: .8rem; color: var(--color-mist); text-align: right; }
.score-total { margin-top: 14px; border-top: 1px solid var(--color-line); padding-top: 12px; display: flex; align-items: baseline; gap: 8px; }
.score-total strong { font-size: 2rem; color: var(--color-deep); font-family: var(--font-display); }
.score-total span { color: var(--color-mist); font-size: .85rem; }

/* verdict */
.verdict { background: linear-gradient(180deg, #fff, #fffdfb); border-left: 4px solid var(--color-coral); border-radius: var(--radius); padding: 22px 24px; margin: 26px 0; box-shadow: var(--shadow-sm); }
.verdict h3 { margin-top: 0; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.pros, .cons { list-style: none; padding: 0; margin: 0; }
.pros li::before { content: "+ "; color: #2e7d55; font-weight: 700; }
.cons li::before { content: "− "; color: var(--color-coral); font-weight: 700; }

/* at a glance (AIO-extractable) */
.glance { background: var(--color-deep); color: #fff; border-radius: var(--radius); padding: 22px 24px; margin: 26px 0; }
.glance h3 { color: #fff; margin: 0 0 12px; font-size: 1.1rem; }
.glance ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.glance li { position: relative; padding-left: 26px; font-size: .95rem; color: #e7e2d8; }
.glance li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: var(--color-coral); box-shadow: inset 0 0 0 4px var(--color-deep), 0 0 0 2px rgba(232,115,90,.5); }

/* author */
.author-row { display: flex; gap: 14px; align-items: center; margin: 18px 0; padding: 14px; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); }
.avatar { border-radius: 50%; flex: none; }
.author-name { margin: 0; font-weight: 700; color: var(--color-deep); }

/* faq */
.faq { margin: 34px 0; }
details.qa { border: 1px solid var(--color-line); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 10px; background: #fff; box-shadow: var(--shadow-sm); }
details.qa summary { cursor: pointer; font-weight: 700; color: var(--color-deep); font-size: 1.02rem; }
details.qa p { margin: 10px 0 0; }

/* impulse band (contact / lead CTA) */
.impulse { background: linear-gradient(135deg, var(--color-coral), var(--color-coral-d)); color: #fff; border-radius: var(--radius-lg); padding: 40px 36px; margin: 34px 0; text-align: center; box-shadow: var(--shadow-coral); position: relative; overflow: hidden; }
.impulse::after { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 200px at 85% 10%, rgba(255,255,255,.18), transparent 60%); }
.impulse > * { position: relative; z-index: 2; }
.impulse h3 { color: #fff; margin-top: 0; font-size: 1.5rem; }
.impulse p { color: #ffe9e2; max-width: 560px; margin: 8px auto 18px; }

/* cta + newsletter */
.cta-card { background: var(--color-sand); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 26px; margin: 34px 0; text-align: center; box-shadow: var(--shadow-sm); }
.request-cta { background: var(--color-sand); border: 1px solid var(--color-line); border-radius: var(--radius-lg); padding: 34px 32px; margin-top: 30px; text-align: center; box-shadow: var(--shadow-sm); }
.request-cta h3 { margin-top: 0; font-size: 1.45rem; }
.request-cta p { color: var(--color-mist); max-width: 560px; margin: 8px auto 18px; }
.request-cta .btn-dark { margin-top: 4px; }
.cta-card h3 { margin-top: 0; font-size: 1.3rem; }
.cta-card .btn-primary { margin-top: 8px; }
.newsletter { background: linear-gradient(150deg, var(--color-deep), #2c2a55); color: #fff; border-radius: var(--radius-lg); padding: 40px 36px; margin: 34px 0; text-align: center; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.newsletter::after { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 240px at 12% 0%, rgba(232,115,90,.30), transparent 60%); }
.newsletter > * { position: relative; z-index: 2; }
.newsletter h3 { color: #fff; margin-top: 0; font-size: 1.5rem; }
.newsletter .muted { color: #cdd4e0; }
.nl-form, .contact-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
.nl-form input, .contact-form input, .contact-form textarea, .contact-form select {
  padding: 13px 15px; border-radius: 10px; border: 1px solid #d8d2c7; font-size: 1rem; font-family: inherit; }
.nl-form input { min-width: 280px; }
.contact-form { flex-direction: column; align-items: stretch; max-width: 500px; margin: 14px auto 0; text-align: left; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: .9rem; color: var(--color-mist); font-weight: 600; }

/* footer */
.foot { background: var(--color-deep); color: #cfd5e0; padding: 64px 0 30px; margin-top: 40px; }
.foot-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; }
.foot .brand { color: #fff; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.foot-cols h4 { color: #fff; margin: 0 0 10px; font-size: .95rem; }
.foot-cols a { display: block; color: #cfd5e0; margin-bottom: 6px; font-size: .9rem; }
.foot-fine { max-width: var(--max-page-width); margin: 30px auto 0; font-size: .78rem; color: #9aa3b5; }

/* breadcrumb */
.crumb ol { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0 0 16px; font-size: .85rem; color: var(--color-mist); flex-wrap: wrap; }
.crumb a { color: var(--color-mist); }
.crumb .sep { color: #cbb; }

/* disclosure */
.disclosure { background: #fff; border-radius: 8px; padding: 10px 14px; margin: 16px 0; border: 1px solid var(--color-line); font-size: .88rem; }

/* table of contents */
.toc { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 16px 20px; margin: 26px 0; }
.toc-title { font-family: var(--font-display); font-weight: 600; color: var(--color-deep); margin: 0 0 8px; font-size: .95rem; }
.toc ol { margin: 0; padding-left: 18px; }
.toc li { margin: 4px 0; font-size: .92rem; }

/* lead-in highlight on homepage */
.lead-in { font-size: 1.15rem; color: var(--color-deep); font-weight: 500; }

/* hero pill + inline link (homepage) */
.hero-pill { display: inline-block; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #ffd9cc; font-size: .76rem; font-weight: 700; letter-spacing: .04em; padding: 6px 13px; border-radius: 999px; margin-bottom: 16px; }
.hero-note a { color: #ffd9cc; text-decoration: underline; text-underline-offset: 2px; }

/* featured actions (homepage top pick) */
.featured-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* B-end band (brands / retailers / partners) */
.band-b { background: linear-gradient(160deg, #1b1730, #2a2348); color: #F4EFE9; }
.band-b .section-head h2 { color: #fff; }
.band-b .section-head h2::after { background: var(--color-coral); }
.band-b .bend-sub { color: #c9c3da; }
.bend-grid { gap: 24px; margin-top: 22px; }
.bend-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow-md); }
.bend-card h3 { color: #fff; margin-top: 0; font-size: 1.25rem; }
.bend-card p { color: #d7d2e2; font-size: .98rem; }
.bend-card .btn-dark { margin-top: 6px; }
.bend-card .btn-ghost { margin-top: 6px; color: #fff; border-color: rgba(255,255,255,.4); }
.bend-card .btn-ghost:hover { border-color: var(--color-coral); color: #fff; }

@media (max-width: 860px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
}
@media (max-width: 760px) {
  :root { --space-section: 56px; }
  .two-col, .proscons, .glance ul, .foot-inner, .foot-cols { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured .card-cover { min-height: 180px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .nav-inner { padding: 10px 14px; }
  .brand { flex: 0 0 auto; }
  .nav-links { display: flex; flex-wrap: nowrap; overflow-x: auto; min-width: 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { margin-left: 12px; font-size: .8rem; white-space: nowrap; padding-bottom: 4px; }
  .hero-stats { gap: 18px; }
}
