@import url('https://fonts.googleapis.com/css2?family=Exo:wght@300;400;500;600;700&family=Roboto+Mono:wght@300;400;500;700&display=swap');

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

:root {
  --green:  #87ff71;
  --cyan:   #01cdfe;
  --forest: #192617;
  --forest2: #0f1a0e;
  --forest3: #1e3019;
  --purple: #b967ff;
  --pink:   #ff71ce;
  --white:  #e8ffe4;
  --muted:  #5a7a55;
  --ink:    #192617;

  --font-head: 'Exo', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Roboto Mono', 'Courier New', monospace;

  --radius: 10px;
  --max-content: 780px;
  --sidebar-w: 220px;
  --gap: 1.5rem;
}

html {
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  background-color: var(--forest);
  color: var(--white);
  font-family: var(--font-mono);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ── Vaporwave background effects ───────────────────────────── */
.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  z-index: 1000;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,205,254,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,205,254,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); margin-top: 2.5rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-top: 1.5rem; }
h4 { font-size: 1.1rem; color: var(--cyan); margin-top: 1.25rem; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

a { color: var(--cyan); text-decoration: underline; }
a:hover { color: var(--green); text-decoration: none; }
a:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 2px; }

strong { color: var(--green); font-weight: 600; }
em { color: var(--pink); font-style: italic; }

hr {
  border: none;
  border-top: 1px solid var(--green);
  margin: 0.6rem 0 1.2rem;
  opacity: 0.5;
}

code, kbd, samp {
  font-family: var(--font-mono);
  background: var(--forest3);
  color: var(--cyan);
  padding: 0.1em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
}

blockquote {
  border-left: 3px solid var(--cyan);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: rgba(1,205,254,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
th {
  background: var(--forest3);
  color: var(--cyan);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 0.6rem 0.9rem;
  text-align: left;
  border-bottom: 2px solid var(--green);
}
td {
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid rgba(135,255,113,0.12);
}
tr:hover td { background: rgba(135,255,113,0.04); }

img { max-width: 100%; height: auto; display: block; }

/* ── Glitch effect ──────────────────────────────────────────── */
@keyframes glitch-1 {
  0%   { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 0); }
  20%  { clip-path: inset(70% 0 10% 0); transform: translate(3px, 0); }
  40%  { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 0); }
  60%  { clip-path: inset(80% 0 5% 0);  transform: translate(2px, 0); }
  80%  { clip-path: inset(10% 0 80% 0); transform: translate(-1px, 0); }
  100% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 0); }
}
@keyframes glitch-2 {
  0%   { clip-path: inset(50% 0 30% 0); transform: translate(3px, 0); }
  25%  { clip-path: inset(10% 0 70% 0); transform: translate(-3px, 0); }
  50%  { clip-path: inset(60% 0 20% 0); transform: translate(2px, 0); }
  75%  { clip-path: inset(30% 0 55% 0); transform: translate(-2px, 0); }
  100% { clip-path: inset(50% 0 30% 0); transform: translate(3px, 0); }
}

.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font: inherit;
  color: inherit;
}
.glitch::before {
  color: var(--cyan);
  animation: glitch-1 4s infinite linear;
  opacity: 0.7;
}
.glitch::after {
  color: var(--pink);
  animation: glitch-2 4s infinite linear;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .glitch::before, .glitch::after { animation: none; opacity: 0; }
}

/* ── Neon glow text ─────────────────────────────────────────── */
.hero-h1 {
  text-shadow:
    0 0 10px rgba(135,255,113,0.9),
    0 0 30px rgba(135,255,113,0.6),
    0 0 60px rgba(135,255,113,0.3);
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(15,26,14,0.95);
  border-bottom: 1px solid rgba(135,255,113,0.2);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}

/* Details/summary nav (structure contract) */
.nav-details {
  position: relative;
}
.nav-toggle {
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green);
  padding: 0.6rem 1rem;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
}
.nav-toggle::-webkit-details-marker { display: none; }
.nav-toggle::after {
  content: '▾';
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.nav-details[open] .nav-toggle::after { transform: rotate(180deg); }

.nav-details menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: var(--forest2);
  border: 1px solid rgba(135,255,113,0.3);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  list-style: none;
  z-index: 910;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav-details menu li { list-style: none; }
.nav-details menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  border-left: 3px solid transparent;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-details menu li a:hover {
  color: var(--green);
  border-left-color: var(--green);
  background: rgba(135,255,113,0.05);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  justify-content: center;
}
.brand-mark { border-radius: 6px; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-shadow: 0 0 12px rgba(135,255,113,0.6);
}
.brand-name:hover { color: var(--cyan); }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* CTA buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  padding: 0.55rem 1rem;
  min-height: 44px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
}
.cta-signup {
  background: var(--green);
  color: var(--forest);
  border: 2px solid var(--green);
  box-shadow: 0 0 12px rgba(135,255,113,0.4);
}
.cta-signup:hover {
  background: transparent;
  color: var(--green);
  box-shadow: 0 0 20px rgba(135,255,113,0.6);
}
.cta-login {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
}
.cta-login:hover {
  background: var(--cyan);
  color: var(--forest);
  box-shadow: 0 0 12px rgba(1,205,254,0.4);
}

/* Anchor strip */
.anchor-strip {
  background: var(--forest2);
  border-top: 1px solid rgba(135,255,113,0.1);
  overflow-x: auto;
  scrollbar-width: none;
}
.anchor-strip::-webkit-scrollbar { display: none; }
.anchor-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0;
}
.anchor-inner a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  min-height: 44px;
  letter-spacing: 0.04em;
}
.anchor-inner a:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* ── Hero: home ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(25,38,23,0.4) 0%,
    rgba(185,103,255,0.2) 35%,
    rgba(1,205,254,0.15) 60%,
    rgba(25,38,23,0.9) 100%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--white);
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 0;
}

.hero-slant {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--forest);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 3;
}

.hero-home .hero-slant {
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* ── Hero: inner pages ──────────────────────────────────────── */
.inner-hero {
  position: relative;
  background: linear-gradient(135deg, var(--forest2) 0%, var(--forest3) 50%, rgba(185,103,255,0.1) 100%);
  border-bottom: 1px solid rgba(135,255,113,0.2);
  padding: 3rem 1.5rem;
  z-index: 1;
}
.inner-hero-copy {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.inner-hero--faq { border-bottom-color: rgba(1,205,254,0.3); }
.inner-hero--ranking {
  background: linear-gradient(135deg, var(--forest2) 0%, rgba(185,103,255,0.12) 50%, var(--forest3) 100%);
}
.inner-hero--compare {
  background: linear-gradient(135deg, var(--forest2) 0%, rgba(1,205,254,0.1) 50%, rgba(185,103,255,0.1) 100%);
}
.inner-hero--data {
  background: linear-gradient(135deg, var(--forest2) 0%, rgba(135,255,113,0.08) 100%);
}

/* Review hero */
.review-hero {
  position: relative;
  min-height: 45vh;
  overflow: hidden;
  z-index: 1;
}
.review-hero-media {
  position: absolute;
  inset: 0;
}
.review-hero-img { width: 100%; height: 100%; object-fit: cover; }
.review-hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest2), rgba(185,103,255,0.2), var(--forest3));
}
.review-hero-copy {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem 4rem;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-hero-copy h1 { text-shadow: 0 0 20px rgba(135,255,113,0.5); }
.review-desc { color: var(--white); opacity: 0.85; max-width: 600px; }
.compare-desc { color: var(--white); opacity: 0.85; max-width: 600px; }

/* ── Eyebrow / labels ───────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--cyan);
  text-transform: uppercase;
  margin: 0;
}
.stage-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Page body layout ───────────────────────────────────────── */
.page-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
  display: flex;
  align-items: flex-start;
  gap: var(--gap);
  position: relative;
  z-index: 1;
}

/* Sidebar to the LEFT (structure contract) */
.left-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  order: -1;
}

.sidebar-block {
  border: 1px solid rgba(135,255,113,0.2);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(15,26,14,0.7);
}
.sidebar-block h3 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 0;
}
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list li { margin-bottom: 0.3rem; }
.sidebar-list a {
  font-size: 0.82rem;
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(135,255,113,0.08);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.sidebar-list a:hover { color: var(--green); }

.sidebar-cta-block { text-align: center; }
.sidebar-cta-text {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.btn-sm { font-size: 0.78rem; padding: 0.4rem 0.8rem; min-height: 36px; }

.jump-list { padding-left: 1rem; }
.jump-list li a {
  font-size: 0.8rem;
  color: var(--cyan);
  min-height: 36px;
  display: flex;
  align-items: center;
}

/* ── Main content ────────────────────────────────────────────── */
.home-main, .inner-main {
  flex: 1;
  min-width: 0;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Structure contract: div > figure/aside as direct child */
.content-figure {
  margin: 0 0 1rem;
}
.neon-rule {
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--purple), transparent);
  border-radius: 1px;
  margin-bottom: 1.5rem;
}

.inline-aside {
  border-left: 3px solid var(--cyan);
  padding: 0.75rem 1.25rem;
  margin: 0 0 1.5rem;
  background: rgba(1,205,254,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0.9;
}

/* ── Prose (body copy) ──────────────────────────────────────── */
.prose {
  max-width: var(--max-content);
  font-size: 1rem;
  line-height: 1.7;
}
.prose a { color: var(--cyan); text-decoration: underline; }
.prose a:hover { color: var(--green); }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 2rem; }
.prose ul li::marker { color: var(--green); }
.prose ol li::marker { color: var(--cyan); font-weight: 600; }

/* ── Byline ──────────────────────────────────────────────────── */
.byline {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.03em;
}
.byline time { color: var(--cyan); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: var(--forest);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  text-transform: uppercase;
  min-height: 44px;
  transition: all 0.2s;
  box-shadow: 0 0 16px rgba(135,255,113,0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 28px rgba(135,255,113,0.6);
  transform: translateY(-1px);
  color: var(--forest);
  text-decoration: none;
}

/* ── Home child cards ────────────────────────────────────────── */
.child-cards-section {
  margin-top: 3rem;
  max-width: var(--max-content);
}
.child-cards-section h2 { margin-top: 0; }

/* Structure contract: ol > li > a + small */
.card-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.card {
  border: 1px solid rgba(135,255,113,0.25);
  border-radius: var(--radius);
  background: var(--forest2);
  transition: border-color 0.2s, box-shadow 0.2s;
  counter-increment: card-counter;
}
.card:hover {
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(135,255,113,0.2);
}
.card a {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  gap: 0.5rem;
  text-decoration: none;
}
.card-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.3;
}
.card a small {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Stagger animation */
@media (prefers-reduced-motion: no-preference) {
  .card {
    opacity: 0;
    transform: translateY(20px);
    animation: stagger-in 0.4s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.08s);
  }
  @keyframes stagger-in {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ── Ranking list ────────────────────────────────────────────── */
.child-pages-section { margin-top: 3rem; }
.ranked-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.ranked-item {
  border: 1px solid rgba(135,255,113,0.2);
  border-radius: var(--radius);
  background: var(--forest2);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ranked-item:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(1,205,254,0.2);
}
.ranked-item > a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem 0.5rem;
  text-decoration: none;
}
.ranked-item > small {
  display: block;
  padding: 0 1.25rem 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.rank-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--green);
  opacity: 0.5;
  min-width: 2.5rem;
  letter-spacing: -0.02em;
}
.rank-title {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}
.ranked-item:hover .rank-title { color: var(--cyan); }

@media (prefers-reduced-motion: no-preference) {
  .ranked-item {
    opacity: 0;
    transform: translateX(-16px);
    animation: slide-right 0.4s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.06s);
  }
  @keyframes slide-right {
    to { opacity: 1; transform: translateX(0); }
  }
}

/* ── Author profile ──────────────────────────────────────────── */
.author-profile {
  margin-top: 3rem;
  max-width: var(--max-content);
}
.author-card {
  border: 1px solid rgba(1,205,254,0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(1,205,254,0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.author-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.author-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}
.author-credentials {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.04em;
}
.author-bio {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(135,255,113,0.15);
  background: var(--forest2);
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

/* Structure contract: footer with ≥3 dl */
.footer-col {
  flex: 1;
  min-width: 160px;
}
.footer-col dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(135,255,113,0.2);
  padding-bottom: 0.4rem;
}
.footer-col dd {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
}
.footer-col dd a {
  color: var(--muted);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-col dd a:hover { color: var(--green); }

.footer-legal .rg-notice {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
  border: 1px solid rgba(135,255,113,0.15);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(135,255,113,0.03);
}

/* ── Sidebar rankings block within home layout ──────────────── */
.sidebar-rankings, .sidebar-reviews {
  display: contents;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .page-body {
    flex-direction: column;
  }
  .left-sidebar {
    width: 100%;
    position: static;
    order: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .sidebar-block {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 600px) {
  .primary-nav { height: 56px; }
  .nav-ctas { gap: 0.35rem; }
  .cta { font-size: 0.7rem; padding: 0.4rem 0.65rem; }
  .brand-name { font-size: 1rem; }
  .anchor-strip { font-size: 0.7rem; }
  .hero { min-height: 60vh; }
  .review-hero { min-height: 35vh; }
  .inner-hero { padding: 2rem 1rem; }
  .card-list { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-col { min-width: 100%; }
  .left-sidebar { flex-direction: column; }
  .sidebar-block { min-width: 100%; }
  .prose { font-size: 1rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
}

@media (max-width: 375px) {
  body { font-size: 15px; }
  .hero-copy { padding: 1.5rem 1rem; }
  .review-hero-copy { padding: 2rem 1rem 3rem; }
}

/* ── FAQ accordion styles ────────────────────────────────────── */
.faq-prose details {
  border: 1px solid rgba(135,255,113,0.2);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--forest2);
}
.faq-prose details summary {
  padding: 0.9rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green);
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq-prose details summary::-webkit-details-marker { display: none; }
.faq-prose details[open] summary { border-bottom: 1px solid rgba(135,255,113,0.15); }
.faq-prose details > *:not(summary) { padding: 0.75rem 1.25rem 1rem; }

/* ── Ranking table extras ────────────────────────────────────── */
.ranking-prose table th { background: rgba(185,103,255,0.15); color: var(--green); }
.ranking-prose table tr:nth-child(even) td { background: rgba(135,255,113,0.03); }

/* ── Compare layout extras ───────────────────────────────────── */
.compare-prose table {
  border: 1px solid rgba(1,205,254,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-prose table th {
  background: rgba(1,205,254,0.1);
  color: var(--cyan);
}

/* ── Data layout extras ──────────────────────────────────────── */
.data-prose table th { color: var(--purple); background: rgba(185,103,255,0.1); }

/* ── Utility: sr-only ────────────────────────────────────────── */
.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;
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .scanlines, .grid-bg, .site-header, .left-sidebar, .site-footer { display: none; }
  body { background: #fff; color: #000; }
  h1, h2, h3 { color: #000; }
  a { color: #000; }
}

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