:root {
  --bg: #0f1419;
  --surface: #1a2332;
  --surface-raised: #222d3f;
  --surface-sunken: #0c1017;
  --text: #e8edf4;
  --muted: #9aa8bc;
  --accent: #3dd6c6;
  --accent-dim: #2a9d8f;
  --secondary: #f4a261;
  --border: #2d3a4d;
  --border-strong: #3d4f66;
  --badge: #f4a261;
  --success: #4ade80;
  --warning: #fbbf24;
  --error: #f87171;
  --data-stripe: #151b24;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --container-max: 1280px;
  --content-max: 720px;
  --header-h: 64px;
  --section-y: 48px;
  --section-y-lg: 64px;
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,0.25);
  --shadow-sticky: 0 4px 16px rgba(0,0,0,0.35);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 150ms var(--ease);
}
a:hover { text-decoration: underline; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.content-narrow { max-width: var(--content-max); }

/* Typography */
.display-lg {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.headline-md {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}
.headline-sm {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}
.label-sm, .data-md {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.data-md { font-size: 0.8125rem; letter-spacing: 0; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.logo-mark {
  flex-shrink: 0;
  display: block;
}
.logo-text {
  font-size: 1.125rem;
  letter-spacing: -0.03em;
}
.logo-accent {
  color: var(--accent);
}
.main-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.main-nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9375rem;
}
.main-nav a:hover { color: var(--accent); text-decoration: none; }

.breadcrumbs-bar {
  background: var(--surface-sunken);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--muted);
}
.breadcrumbs-item a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumbs-item a:hover { color: var(--accent); }
.breadcrumbs-item[aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

.footer-disclosure-block {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  max-width: 52rem;
}
.footer-disclosure-title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.footer-disclosure {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}
.footer-disclosure-note {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

/* Hero */
.hero {
  padding: var(--section-y-lg) 0 var(--section-y);
  background:
    linear-gradient(var(--data-stripe) 1px, transparent 1px),
    linear-gradient(90deg, var(--data-stripe) 1px, transparent 1px);
  background-size: 24px 24px;
  background-color: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 2fr 1fr; }
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero h1 { margin: 0 0 0.75rem; }
.hero-subtitle {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.hero-panel dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}
.hero-panel dt:first-child { margin-top: 0; }
.hero-panel dd {
  margin: 0.15rem 0 0;
  font-size: 0.9375rem;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.geo-answer {
  font-size: 0.875rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  margin: 1.5rem 0 0;
  background: var(--surface-sunken);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Sections */
.section { padding: var(--section-y) 0; }
.section-lg { padding: var(--section-y-lg) 0; }
.section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.section-intro {
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 1.5rem;
}

/* Badges */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--badge);
  color: #1a1a1a;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
}
.badge-desk {
  background: var(--surface-raised);
  color: var(--muted);
  border: 1px solid var(--border-strong);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 150ms var(--ease), border-color 150ms var(--ease), transform 150ms var(--ease);
}
.btn-primary {
  background: var(--accent);
  color: #0f1419;
}
.btn-primary:hover {
  background: var(--accent-dim);
  text-decoration: none;
  color: #0f1419;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}
.btn-sm {
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
}

/* Brand card */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
}
.brand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.brand-card--tile {
  min-height: 420px;
  padding: 1.25rem;
}
.brand-card-logo-link {
  display: block;
  text-decoration: none;
  margin-bottom: 0.85rem;
}
.brand-card-logo-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--surface-raised) 0%, var(--surface-sunken) 100%);
  border: 1px solid var(--border);
  transition: border-color 200ms var(--ease);
}
.brand-card--tile:hover .brand-card-logo-stage {
  border-color: var(--border-strong);
}
.brand-card-logo-xl {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 120px;
  min-height: 64px;
  object-fit: contain;
}
.brand-card-body h3 { margin: 0.35rem 0 0.5rem; }
.brand-card-actions--stack {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.btn-play {
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (min-width: 769px) {
  .brand-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
  }
}
.brand-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.brand-card-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 8px;
}
.brand-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}
.brand-card h3 a { color: var(--text); }
.brand-card h3 a:hover { color: var(--accent); }
.brand-meta {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  margin: 0.35rem 0 0.5rem;
}
.brand-summary {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 auto;
  flex: 1;
}
.brand-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.geo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}
.geo-tag, .geo-chip {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  height: 24px;
  line-height: 22px;
  padding: 0 0.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: var(--surface-sunken);
}
.geo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.geo-chip-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  min-width: 100px;
  transition: border-color 150ms var(--ease);
}
.geo-chip-link:hover {
  border-color: var(--accent);
  text-decoration: none;
}
.geo-chip-link .geo-chip {
  margin-bottom: 0.25rem;
  color: var(--accent);
  border-color: var(--border-strong);
}
.geo-chip-link span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Compare promo card */
.compare-promo-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) {
  .compare-promo-card { grid-template-columns: 1fr auto; align-items: center; }
}
.compare-promo-card h3 { margin: 0 0 0.5rem; font-size: 1.35rem; }
.compare-promo-card .promo-dek { color: var(--muted); margin: 0 0 0.75rem; }
.compare-promo-overlap {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Methodology steps */
.methodology-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: step;
}
@media (min-width: 768px) {
  .methodology-steps { grid-template-columns: repeat(3, 1fr); }
}
.methodology-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: relative;
}
.methodology-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #0f1419;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
.methodology-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.methodology-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Blog teaser */
.blog-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .blog-teaser-grid { grid-template-columns: 1.2fr 1fr; }
}
.blog-teaser-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 640px) {
  .blog-teaser-featured { grid-template-columns: 180px 1fr; }
}
.blog-teaser-cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-sunken);
}
.blog-teaser-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-teaser-cover--editorial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(145deg, var(--surface-sunken) 0%, var(--surface-raised) 55%, rgba(61, 214, 198, 0.12) 100%);
  border-right: 1px solid var(--border);
  min-height: 100%;
}
.blog-cover-flag {
  font-size: 2rem;
  line-height: 1;
}
.blog-cover-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-geo-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}
.article-geo-flag {
  font-size: 1.125rem;
  line-height: 1;
}
.blog-teaser-body { padding: 1rem 1.25rem 1.25rem; }
.blog-teaser-body h3 { margin: 0.35rem 0 0.5rem; font-size: 1.05rem; }
.blog-teaser-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-teaser-list { display: flex; flex-direction: column; gap: 0.75rem; }
.blog-teaser-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.blog-teaser-card h3 { margin: 0.35rem 0 0.35rem; font-size: 1rem; }
.blog-teaser-card p { margin: 0; font-size: 0.875rem; color: var(--muted); }

/* Compare matrix */
.compare-matrix-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
}
.compare-matrix-scroll:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.compare-matrix {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.compare-matrix caption {
  caption-side: top;
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.compare-matrix th,
.compare-matrix td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  text-align: left;
  vertical-align: top;
}
.compare-matrix th {
  background: var(--surface);
  font-weight: 600;
}
.compare-matrix tbody tr:nth-child(odd) { background: var(--surface); }
.compare-matrix tbody tr:nth-child(even) { background: var(--data-stripe); }
.compare-matrix tbody tr:hover { background: var(--surface-raised); }
.compare-matrix th:first-child,
.compare-matrix td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: inherit;
  min-width: 160px;
}
.compare-matrix thead th:first-child { background: var(--surface); z-index: 2; }

/* PCL grid */
.pcl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (min-width: 768px) {
  .pcl-grid { grid-template-columns: repeat(3, 1fr); }
}
.pcl-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.pcl-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}
.pcl-panel ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.875rem;
}
.pcl-panel li { margin-bottom: 0.4rem; }
.pcl-pros { border-left: 3px solid var(--success); }
.pcl-cons { border-left: 3px solid var(--warning); }
.pcl-limits { border-left: 3px solid var(--error); }

/* Catalog toolbar */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}
.catalog-toolbar label {
  font-size: 0.8125rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.catalog-toolbar select {
  background: var(--surface-sunken);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
}
.catalog-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.catalog-filter-chips button {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-sunken);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 150ms, color 150ms;
}
.catalog-filter-chips button:hover,
.catalog-filter-chips button.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

/* Brand profile page */
.brand-hero {
  padding: var(--section-y) 0 1.5rem;
  border-bottom: 1px solid var(--border);
}
.brand-hero--prominent {
  padding: calc(var(--section-y) + 0.5rem) 0 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(244, 162, 97, 0.12), transparent),
    var(--surface);
}
.brand-hero-inner,
.brand-hero-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
}
.brand-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-raised);
  object-fit: contain;
  padding: 6px;
}
.brand-logo--xl,
.brand-hero-visual .brand-logo {
  width: 160px;
  height: 160px;
  padding: 12px;
  border: none;
  background: transparent;
  border-radius: var(--radius-md);
}
.brand-logo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface-raised) 0%, var(--surface-sunken) 100%);
  border: 1px solid var(--border);
}
.brand-logo-banner img {
  width: min(280px, 70vw);
  height: auto;
  max-height: 120px;
  object-fit: contain;
}
.brand-showcase {
  margin: 0 0 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface-sunken);
}
.brand-showcase img {
  display: block;
  width: 100%;
  height: auto;
}
.brand-showcase-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--surface-raised) 0%, var(--surface-sunken) 100%);
}
.brand-showcase-inner--logo img {
  max-width: min(360px, 85vw);
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-showcase figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.brand-hero h1 { margin: 0.35rem 0 0.5rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.brand-tagline { color: var(--muted); margin: 0 0 0.75rem; max-width: 640px; }
.brand-tracking {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
}
.brand-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.brand-content { padding: var(--section-y) 0; }
.facts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1rem 0;
}
.facts-table th,
.facts-table td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.85rem;
  text-align: left;
}
.facts-table th {
  background: var(--surface);
  width: 30%;
  font-weight: 600;
}
.facts-table td { background: var(--data-stripe); }
.status-verify { color: var(--warning); font-weight: 600; }

.brand-notice {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.brand-notice p {
  margin: 0;
  font-size: 0.875rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.brand-notice--warning p {
  background: color-mix(in srgb, var(--warning) 12%, var(--surface-sunken));
  border-color: color-mix(in srgb, var(--warning) 35%, var(--border));
}
.brand-notice--info p {
  background: color-mix(in srgb, var(--success) 10%, var(--surface-sunken));
  border-color: color-mix(in srgb, var(--success) 30%, var(--border));
}

/* Sticky mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-sticky);
}
.sticky-mobile-cta .disclosure-snippet {
  font-size: 0.6875rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
  text-align: center;
}
.sticky-mobile-cta .btn {
  width: 100%;
}
@media (max-width: 768px) {
  .sticky-mobile-cta.is-visible { display: block; }
  body.has-sticky-cta { padding-bottom: 100px; }
  body.has-sticky-cta .cookie-banner { bottom: 88px; }
}

/* Disclosure */
.disclosure-strip {
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 0.85rem 1rem;
  background: var(--surface-sunken);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.affiliate-disclosure-small {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}
.affiliate-cta { margin: 1.25rem 0 0.5rem; }

/* Criteria grid (methodology) */
.criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .criteria-grid { grid-template-columns: repeat(3, 1fr); }
}
.criteria-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
}
.criteria-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.criteria-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent);
}
.criteria-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.criteria-card a {
  font-size: 0.75rem;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Compare list / FAQ */
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.compare-list a { font-weight: 600; font-size: 1.05rem; }
.faq-list { margin: 1rem 0; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  padding: 0;
}
.faq-list summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
}
.faq-list details[open] summary { border-bottom: 1px solid var(--border); }
.faq-list details p {
  padding: 0.85rem 1rem;
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  margin-top: var(--section-y-lg);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
  background: var(--surface-sunken);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-col h3 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0 0 0.75rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a { color: var(--muted); font-size: 0.875rem; }
.footer-col a:hover { color: var(--accent); }
.footer-age {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.footer-disclosure { margin: 1rem 0; font-size: 0.8125rem; }
.footer-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 200;
  box-shadow: var(--shadow-sticky);
  transform: translateY(0);
  animation: slideUp 220ms var(--ease);
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.cookie-banner p { margin: 0; font-size: 0.875rem; color: var(--muted); }

/* Prose / articles */
.prose h2 { margin-top: 2rem; font-size: 1.35rem; }
.prose h3 { margin-top: 1.25rem; font-size: 1.05rem; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.875rem;
}
.prose th, .prose td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.75rem;
  text-align: left;
}
.prose th { background: var(--surface); }
.prose tbody tr:nth-child(even) { background: var(--data-stripe); }
.prose blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.5rem 0;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.homepage-seo {
  margin-top: 0;
  padding-top: var(--section-y-lg);
  border-top: 1px solid var(--border);
}
.homepage-seo.prose {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.homepage-seo.prose h2 {
  color: var(--text);
  font-size: 1.5rem;
  margin-top: 0;
}
.homepage-seo.prose h3 {
  color: var(--text);
  font-size: 1.125rem;
}
.homepage-seo.prose a {
  color: var(--accent);
}
.homepage-seo .seo-lead {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.prose ol li, .prose ul li { margin-bottom: 0.35rem; }
.prose.compare-embed { max-width: var(--content-max); }

.article-page { padding: var(--section-y) 0 var(--section-y-lg); max-width: var(--content-max); }
.article-header { margin-bottom: 1.5rem; }
.article-header h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0.5rem 0;
  line-height: 1.25;
}
.article-meta {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  margin: 0;
}
.hero-blog-cover {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.hero-blog-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hero-blog .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
.article-cover {
  margin: 0 0 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-cover img { display: block; width: 100%; height: auto; }

.compare-vs-hero {
  margin: 0 0 2rem;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface-raised) 0%, var(--surface-sunken) 100%);
  border: 1px solid var(--border);
}
.compare-vs-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  flex-wrap: wrap;
}
.compare-vs-hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  min-width: 140px;
}
.compare-vs-hero-brand:hover .compare-vs-hero-name { color: var(--accent); }
.compare-vs-hero-brand img {
  width: clamp(100px, 18vw, 140px);
  height: clamp(100px, 18vw, 140px);
  object-fit: contain;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.compare-vs-hero-name {
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
}
.compare-vs-hero-divider {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.12em;
  padding: 0.5rem 0.85rem;
  border: 2px solid rgba(244, 162, 97, 0.45);
  border-radius: var(--radius-sm);
  background: rgba(244, 162, 97, 0.1);
}
@media (max-width: 520px) {
  .brand-hero-inner,
  .brand-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-hero-visual { margin: 0 auto; }
  .brand-cta-row { justify-content: center; }
}

.legal-page { padding: var(--section-y-lg) 0; max-width: var(--content-max); }
.legal-page h2 { margin-top: 2rem; font-size: 1.15rem; }

/* Brand accent: 5Gringos */
.brand-page-5gringos .brand-hero { border-bottom-color: var(--secondary); }
.brand-page-5gringos .brand-logo { border-color: var(--secondary); }

/* Hidden filter */
.brand-card.is-hidden { display: none; }

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  border-radius: var(--radius);
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.compare-matrix-wrap:focus-within {
  outline: 1px solid var(--border-strong);
}

/* Casino hub polish */
.hero-casino {
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(61, 214, 198, 0.14), transparent),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(244, 162, 97, 0.1), transparent),
    var(--bg);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border);
}
.hero-disclaimer {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 1rem 0 0;
  max-width: 36rem;
}
.hero-panel-casino {
  border: 1px solid var(--border-strong);
  background: linear-gradient(145deg, var(--surface-raised), var(--surface));
  box-shadow: var(--shadow-card);
}
.section-accent {
  background: var(--surface-sunken);
  border-block: 1px solid var(--border);
}
.badge-new {
  background: rgba(244, 162, 97, 0.15);
  color: var(--secondary);
  border: 1px solid rgba(244, 162, 97, 0.35);
}
.brand-card {
  background: linear-gradient(180deg, var(--surface-raised) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}
.brand-card:hover {
  border-color: rgba(61, 214, 198, 0.45);
  box-shadow: 0 0 0 1px rgba(61, 214, 198, 0.12), var(--shadow-card);
  transform: translateY(-2px);
}
.brand-meta {
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}
.brand-bonus {
  font-size: 0.875rem;
  color: var(--secondary);
  margin: 0.35rem 0 0.75rem;
  font-weight: 500;
}
.compare-hub-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  margin-top: 1.25rem;
}
.compare-vs-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, var(--surface-raised), var(--surface));
  box-shadow: var(--shadow-card);
}
.compare-vs-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.compare-vs-brands-inline {
  justify-content: flex-start;
  margin-bottom: 0.75rem;
}
.compare-vs-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
}
.compare-vs-brand img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: var(--surface-raised);
  border: 1px solid var(--border);
}
.compare-vs-divider {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.08em;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(244, 162, 97, 0.4);
  border-radius: var(--radius-sm);
  background: rgba(244, 162, 97, 0.08);
}
.compare-vs-dek {
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 0 0 0.75rem;
}
.compare-promo-card-glow {
  border-color: rgba(61, 214, 198, 0.35);
  background: linear-gradient(135deg, var(--surface-raised), var(--surface));
}
.btn-block { display: block; text-align: center; width: 100%; }
.checklist {
  padding-left: 1.25rem;
  line-height: 1.8;
}
.checklist li { margin-bottom: 0.25rem; }
.section-note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
}
.blog-teaser-card.is-soon { opacity: 0.85; position: relative; }
.blog-teaser-card.is-soon h3 { color: var(--muted); }
.blog-teaser-card.is-soon a { pointer-events: none; }
.badge-soon {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.2rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: var(--radius-sm);
}
.blog-soon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .blog-soon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-soon-grid { grid-template-columns: repeat(4, 1fr); }
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .brand-card:hover { transform: none; }
  .cookie-banner { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* Mobile nav */
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 20px;
    gap: 0.75rem;
  }
  .main-nav.is-open { display: flex; }
  .site-header { position: relative; }
  .site-header.is-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
  }
}
