@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #26171a;
  color: #f5eaec;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  --primary: #eb879c;
  --secondary: #ffb6c1;
  --ink: #26171a;
  --ink-80: rgba(38,23,26,0.8);
  --surface: rgba(255,255,255,0.06);
  --surface-hover: rgba(255,255,255,0.10);
  --glass-border: rgba(235,135,156,0.18);
  --text: #f5eaec;
  --text-muted: #c9a3ae;
  --text-faint: #9a7882;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 28px;
  --nav-width: 220px;
  --nav-collapsed: 64px;
  --transition: 220ms cubic-bezier(0.4,0,0.2,1);
}

/* ── Nav Rail ───────────────────────────────────────────── */
.nav-rail {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--nav-width);
  height: 100vh;
  background: rgba(38,23,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.25rem 0.75rem 1.5rem;
  z-index: 100;
  gap: 0.5rem;
  overflow-y: auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand img { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; }

.nav-brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.nav-details {
  width: 100%;
  flex: 1;
}

.nav-toggle {
  display: block;
  list-style: none;
  cursor: pointer;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--glass-border);
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-toggle::-webkit-details-marker { display: none; }

.nav-toggle:hover,
.nav-details[open] .nav-toggle {
  background: var(--surface-hover);
  color: var(--primary);
}

.nav-details:focus-within .nav-toggle {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-details menu,
.nav-details ul {
  list-style: none;
  padding: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-details menu li a,
.nav-details ul li a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
  line-height: 1.3;
}

.nav-details menu li a:hover,
.nav-details ul li a:hover {
  background: var(--surface-hover);
  color: var(--primary);
  transform: translateX(3px);
}

.nav-details menu li a:focus-visible,
.nav-details ul li a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-ctas {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--glass-border);
  margin-top: auto;
}

/* ── CTA Buttons ────────────────────────────────────────── */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
}

.cta-signup {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(235,135,156,0.35);
}

.cta-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(235,135,156,0.5);
}

.cta-login {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.cta-login:hover {
  background: rgba(235,135,156,0.1);
  transform: translateY(-1px);
}

.cta:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

/* ── Page Layout ────────────────────────────────────────── */
body {
  padding-left: var(--nav-width);
}

main {
  min-height: 100vh;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Home Hero ──────────────────────────────────────────── */
.main-home { padding-left: 0; }

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-article {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 5rem 2rem 5rem;
}

.dot-matrix-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(235,135,156,0.15) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(235,135,156,0.12);
  border: 1px solid rgba(235,135,156,0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.65;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.7rem 1.75rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(235,135,156,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235,135,156,0.55);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

.btn-small { font-size: 0.82rem; padding: 0.5rem 1.25rem; min-height: 40px; }
.btn-block { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem 1.5rem;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: rgba(235,135,156,0.1);
  transform: translateY(-1px);
}

/* ── Inner Page Header ──────────────────────────────────── */
.main-inner { padding-top: 3rem; }

.page-header-section {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.page-header-article {}

.page-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.page-header-section h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.page-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.65;
  margin-top: 0.5rem;
}

/* ── Byline ─────────────────────────────────────────────── */
.byline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.byline .author-name {
  color: var(--primary);
  font-weight: 600;
}

.byline time { color: var(--text-faint); }

/* ── Review Meta ────────────────────────────────────────── */
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stage-pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,182,193,0.15);
  color: var(--secondary);
  border: 1px solid rgba(255,182,193,0.3);
}

/* ── Content + Sidebar ──────────────────────────────────── */
.content-section { padding: 2.5rem 0 3rem; }

.content-article {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

.content-body {
  min-width: 0;
}

/* ── Glass Cards ────────────────────────────────────────── */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}

.glass-card:hover {
  background: var(--surface-hover);
  box-shadow: var(--shadow-lg);
}

/* ── Sidebar ────────────────────────────────────────────── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 1.5rem;
}

.sidebar-card > small {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.sidebar-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-links li a {
  display: block;
  padding: 0.45rem 0.5rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition), transform var(--transition);
  min-height: 40px;
  display: flex;
  align-items: center;
}

.sidebar-links li a:hover {
  color: var(--primary);
  background: rgba(235,135,156,0.08);
  transform: translateX(2px);
}

.sidebar-links li a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ── RG Sidebar Card ────────────────────────────────────── */
.rg-sidebar { border-color: rgba(255,182,193,0.15); }

.rg-text {
  font-size: 0.78rem;
  color: var(--text-faint);
  line-height: 1.5;
}

/* ── Rank Quick List ────────────────────────────────────── */
.rank-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rank-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.rank-list li:last-child { border-bottom: none; }

.rank-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Child Cards Grid (Home) ────────────────────────────── */
.child-cards {
  padding: 2rem 0 3rem;
}

.child-cards > small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.child-cards > h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.75rem;
}

.cards-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.cards-grid > li > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cards-grid > li > div h3 {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.cards-grid > li > div h3 a {
  color: #fff;
  text-decoration: none;
  transition: color var(--transition);
}

.cards-grid > li > div h3 a:hover { color: var(--primary); }

.cards-grid > li > div p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.card-date {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap var(--transition);
  margin-top: auto;
  min-height: 40px;
}

.read-more:hover { color: var(--secondary); }

/* ── Body Copy Typography ───────────────────────────────── */
.content-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.content-body h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.content-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}

.content-body p { margin-bottom: 1.1rem; }

.content-body ul,
.content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.1rem;
}

.content-body li { margin-bottom: 0.4rem; }

.content-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.content-body a:hover { color: var(--secondary); }

.content-body a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.content-body strong { font-weight: 700; color: #fff; }

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.content-body th {
  background: rgba(235,135,156,0.12);
  color: var(--primary);
  font-weight: 700;
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--glass-border);
}

.content-body td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
  vertical-align: top;
}

.content-body tr:hover td {
  background: rgba(255,255,255,0.03);
}

.content-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(235,135,156,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
}

/* ── Review Hero Image ──────────────────────────────────── */
.review-hero-wrap {
  margin: 1.25rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.review-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── About Author Card ──────────────────────────────────── */
.author-card {
  margin-bottom: 2rem;
}

.author-card > small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.author-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  margin-top: 0 !important;
}

.author-credentials {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.75rem !important;
}

.author-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Verdict Intro ──────────────────────────────────────── */
.verdict-intro {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

/* ── Compare CTAs ───────────────────────────────────────── */
.compare-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: rgba(20,10,12,0.95);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 2rem 0;
  margin-top: 4rem;
}

footer > article {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand,
.footer-links {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--glass-border);
}

footer {
  display: flex;
  flex-direction: column;
}

footer > article.footer-brand,
footer > article.footer-links {
  display: block;
}

/* Two-column footer on larger screens */
@media (min-width: 640px) {
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
}

.footer-brand-name {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.footer-blurb {
  font-size: 0.84rem;
  color: var(--text-faint);
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-trust {
  font-size: 0.82rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-trust a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-trust a:hover { color: var(--primary); }

.footer-links > small {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.footer-links h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
}

.footer-links nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-links nav ul li a {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color var(--transition);
}

.footer-links nav ul li a:hover { color: var(--primary); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.rg-notice {
  font-size: 0.78rem;
  color: var(--text-faint);
  line-height: 1.5;
  max-width: 560px;
}

.copyright {
  font-size: 0.76rem;
  color: var(--text-faint);
}

/* ── Stagger Animation ──────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .cards-grid > li {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 280ms cubic-bezier(0.4,0,0.2,1) forwards;
  }

  .cards-grid > li:nth-child(1) { animation-delay: 60ms; }
  .cards-grid > li:nth-child(2) { animation-delay: 120ms; }
  .cards-grid > li:nth-child(3) { animation-delay: 180ms; }
  .cards-grid > li:nth-child(4) { animation-delay: 240ms; }
  .cards-grid > li:nth-child(5) { animation-delay: 300ms; }
  .cards-grid > li:nth-child(6) { animation-delay: 360ms; }
  .cards-grid > li:nth-child(7) { animation-delay: 420ms; }
  .cards-grid > li:nth-child(8) { animation-delay: 480ms; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .glass-card {
    transition: box-shadow 240ms ease, transform 240ms ease, background 240ms ease;
  }

  .glass-card:hover {
    transform: translateY(-3px);
  }
}

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

/* ── Focus Visible global ───────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ── Responsive: Tablet ─────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --nav-width: 200px; }

  .content-article {
    grid-template-columns: 1fr 260px;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

/* ── Responsive: Mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-width: 0px; }

  body { padding-left: 0; padding-top: 60px; }

  .nav-rail {
    width: 100%;
    height: 60px;
    flex-direction: row;
    align-items: center;
    padding: 0 1rem;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    gap: 0.5rem;
    overflow: visible;
  }

  .nav-brand { margin-bottom: 0; }

  .nav-details {
    flex: 1;
    position: relative;
  }

  .nav-details[open] menu,
  .nav-details[open] ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: min(90vw, 320px);
    background: rgba(38,23,26,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 200;
  }

  .nav-ctas {
    flex-direction: row;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    gap: 0.35rem;
    flex-shrink: 0;
  }

  .cta {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
    min-height: 44px;
  }

  .content-article {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    order: -1;
  }

  .hero-article {
    padding: 3rem 1.25rem 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .wrap { padding: 0 1.25rem; }

  .page-header-section { padding: 1.5rem 0 1.25rem; }

  footer { padding: 2rem 1.25rem 0; }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .hero-copy h1 { font-size: 1.7rem; }
  .nav-ctas { display: none; }
}

a[data-cta],button[aria-controls]{min-height:44px;min-width:44px;box-sizing:border-box}main p a{text-decoration:underline}