/* CPRAID marketing site — dark clinical palette */
:root {
  --bg: #070b14;
  --bg-elevated: #0d1524;
  --bg-card: #121c2e;
  --bg-card-hover: #172338;
  --navy: #0b1220;
  --border: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.28);
  --text: #e8eef7;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --white: #f8fafc;
  --red: #ef4444;
  --red-deep: #b91c1c;
  --red-soft: rgba(239, 68, 68, 0.12);
  --green: #22c55e;
  --accent-glow: rgba(239, 68, 68, 0.35);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1120px;
  --header-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.6em; color: var(--white); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--accent-glow);
}

.lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.cite {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
}

.cite a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--red);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(7, 11, 20, 0.95);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-img,
.logo-header {
  height: 52px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text { display: none; }

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--navy);
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
}

.logo-mark span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2.5px solid var(--red);
  box-shadow: inset 0 0 0 3px transparent, 0 0 0 0 var(--red);
  background: radial-gradient(circle at center, var(--red) 35%, transparent 36%);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.nav a:hover, .nav a:focus-visible { color: var(--white); }

.nav .nav-cta { display: none; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--white);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(180deg, #f87171, var(--red-deep));
  color: white;
  box-shadow: 0 10px 30px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 14px 36px var(--accent-glow); }
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--text-muted); }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 20% auto -10%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(239,68,68,0.18), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; }
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0 1.25rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--text-dim);
  font-size: 0.88rem;
}
.hero-meta strong { color: var(--text-muted); font-weight: 600; }

.hero-visual {
  position: relative;
  background: linear-gradient(160deg, #121c2e, #0b1220);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.25rem;
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red-soft);
  border: 1px solid rgba(239,68,68,0.35);
  color: #fecaca;
  font-size: 0.75rem;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

/* Sections */
section { padding: 4.5rem 0; }
.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.problem {
  background: linear-gradient(180deg, rgba(239,68,68,0.05), transparent 40%), var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.stat-value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.urgency-callout {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  background: var(--red-soft);
  border: 1px solid rgba(239,68,68,0.28);
}
.urgency-callout strong { color: #fecaca; }

/* Product */
.feature-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .feature-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.feature-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.feature-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.dual-use {
  display: grid;
  gap: 1rem;
}
.mode-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.mode-card h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mode-tag {
  font-size: 0.7rem;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(34,197,94,0.12);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.25);
}
.mode-tag.urgent {
  background: var(--red-soft);
  color: #fecaca;
  border-color: rgba(239,68,68,0.3);
}
.mode-card ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}
.mode-card li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.mode-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.placement-band {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
@media (min-width: 800px) {
  .placement-band { grid-template-columns: 1.2fr 1fr; padding: 2rem; }
}
.placement-band h3 { font-size: 1.35rem; }
.placement-band p { color: var(--text-muted); margin-bottom: 0; }

/* AED */
.aed {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.compare {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .compare { grid-template-columns: 1fr 1fr; }
}
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.compare-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.compare-card p { color: var(--text-muted); }
.compare-card .role {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.note-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--red);
  background: rgba(255,255,255,0.02);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
}

/* Facilities */
.facility-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .facility-grid { grid-template-columns: repeat(3, 1fr); }
}
.facility-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.facility-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.facility-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.facility-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}
.buyer-frame {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .buyer-frame { grid-template-columns: repeat(3, 1fr); }
}
.buyer-item {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border-strong);
}
.buyer-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.buyer-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Credibility */
.cred-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .cred-grid { grid-template-columns: 1fr 1fr; }
}
.cred-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.cred-card h3 { font-size: 1.15rem; }
.cred-card p { color: var(--text-muted); margin-bottom: 0.75rem; }
.cred-card p:last-child { margin-bottom: 0; }
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.badge {
  font-size: 0.75rem;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
}
.cases {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.cases strong { color: var(--text); }

/* Contact */
.contact {
  background: linear-gradient(180deg, transparent, rgba(239,68,68,0.06));
}
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 850px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 600px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
input, textarea, select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  color: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
textarea { min-height: 120px; resize: vertical; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0.75rem 0 0;
}
.contact-aside p { color: var(--text-muted); }
.contact-list {
  margin: 1.5rem 0;
  display: grid;
  gap: 0.85rem;
}
.contact-list a {
  color: var(--white);
  font-weight: 600;
}
.contact-list span {
  display: block;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  background: #05080f;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}
.footer-brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.site-footer p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}
.disclaimer {
  font-size: 0.8rem !important;
  line-height: 1.5;
  max-width: 36rem;
}
.footer-meta {
  color: var(--text-dim);
  font-size: 0.85rem;
}
.footer-meta a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Mobile nav */
@media (max-width: 799px) {
  .logo-img,
  .logo-header { height: 44px; max-width: 180px; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(7, 11, 20, 0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav .nav-cta {
    display: inline-flex;
    margin-top: 0.85rem;
    justify-content: center;
  }
  .header-cta { display: none; }
}

@media (min-width: 800px) {
  .header-cta {
    display: inline-flex;
    box-shadow: 0 10px 30px var(--accent-glow);
  }
  .header-cta:hover { box-shadow: 0 14px 36px var(--accent-glow); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .nav, .facility-card { transition: none; }
}


.product-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

@media (min-width: 720px) {
  .product-photos {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-photos figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  min-height: 220px;
}

.product-photos img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-visual picture,
.placement-band picture {
  display: block;
}

.hero-visual picture img,
.placement-band picture img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.hero-visual img {
  margin: 0 auto;
  max-height: 480px;
  width: auto;
  object-fit: contain;
}

/* Legal pages (privacy / terms) */
.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page .legal-meta {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0 0 1.5rem;
}

.legal-prose {
  max-width: 42rem;
}

.legal-prose h2 {
  font-size: 1.25rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-prose h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.legal-prose p,
.legal-prose li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.legal-prose ul,
.legal-prose ol {
  margin: 0 0 1em;
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-prose ol {
  list-style: decimal;
}

.legal-prose li {
  margin-bottom: 0.4rem;
}

.legal-prose a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-prose a:hover,
.legal-prose a:focus-visible {
  color: var(--white);
}

.legal-prose .note-box {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.legal-prose .note-box p:last-child {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin: 0.75rem 0;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-links .sep {
  color: var(--text-dim);
  text-decoration: none;
}

/* Article / FAQ / comparison pages */
.article-page {
  padding: 3rem 0 4rem;
}

.article-page .legal-meta {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0 0 1.5rem;
}

.article-prose {
  max-width: 44rem;
}

.article-prose h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.article-prose h3 {
  font-size: 1.08rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.article-prose p,
.article-prose li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 1em;
  padding-left: 1.25rem;
  list-style: disc;
}

.article-prose ol {
  list-style: decimal;
}

.article-prose li {
  margin-bottom: 0.45rem;
}

.article-prose a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-prose a:hover,
.article-prose a:focus-visible {
  color: var(--white);
}

.article-prose .note-box {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.article-prose .note-box p:last-child {
  margin-bottom: 0;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-list > li {
  border-top: 1px solid var(--border);
  padding: 1.35rem 0;
  margin: 0;
}

.faq-list > li:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-list h2 {
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
  color: var(--white);
}

.faq-list p {
  margin: 0 0 0.65rem;
}

.faq-list p:last-child {
  margin-bottom: 0;
}

.article-toc {
  margin: 0 0 2rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.article-toc p {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 0.65rem;
}

.article-toc ul {
  margin: 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.article-toc li {
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.article-cta {
  margin-top: 2.5rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--accent-border, var(--border));
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(7, 11, 20, 0.4));
}

.article-cta h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.article-cta p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.article-cta .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.resources-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
}

.resources-list a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.resources-list a:hover,
.resources-list a:focus-visible {
  color: var(--white);
}

.compare-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.5rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--border);
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: top;
  color: var(--text-muted);
}

.compare-table th {
  background: var(--bg-elevated);
  color: var(--white);
  font-weight: 600;
}

.compare-table td:first-child,
.compare-table th:first-child {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}
