/* ============================================
   cloaking.app — Dark Editorial Theme
   Palette: Deep Charcoal + Emerald + Slate
   ============================================ */

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

:root {
  --bg-base:       #0b0e14;
  --bg-surface:    #111622;
  --bg-card:       #161d2e;
  --border:        #1f2d45;
  --emerald:       #00c97d;
  --emerald-dim:   #009e61;
  --emerald-glow:  rgba(0, 201, 125, 0.12);
  --text-primary:  #e8edf5;
  --text-muted:    #7a8fad;
  --text-dim:      #4a5f7a;
  --accent-purple: #7c5cfc;
  --font-body:     'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-heading:  'Georgia', 'Times New Roman', serif;
  --max-content:   760px;
  --max-wide:      1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ---- HEADER / NAV ---- */
.site-header {
  background: rgba(11, 14, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--emerald);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--emerald); }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 16px 24px 24px;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--emerald); }

/* ---- HERO ---- */
.hero {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-glow);
  border: 1px solid rgba(0, 201, 125, 0.25);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--emerald);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--emerald-dim);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  margin-left: 12px;
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

/* ---- GRID / CARDS ---- */
.section {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 60px 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.15s;
}

.card:hover {
  border-color: var(--emerald);
  transform: translateY(-2px);
}

.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}

.card h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.card-footer {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-footer .read-time {
  color: var(--text-dim);
}

.card-arrow {
  margin-left: auto;
  color: var(--emerald);
  font-size: 1rem;
}

/* ---- ARTICLE PAGE ---- */
.article-header {
  max-width: var(--max-content);
  margin: 60px auto 0;
  padding: 0 24px;
}

.article-header .tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-glow);
  border: 1px solid rgba(0, 201, 125, 0.2);
  border-radius: 4px;
  padding: 3px 10px;
}

.tag.purple {
  color: var(--accent-purple);
  background: rgba(124, 92, 252, 0.1);
  border-color: rgba(124, 92, 252, 0.25);
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.article-meta .author { color: var(--text-muted); font-weight: 500; }

/* ---- ARTICLE BODY ---- */
.article-body {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.article-body p {
  color: #b8c7d9;
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
  color: #b8c7d9;
}

.article-body li { margin-bottom: 8px; }

.article-body a {
  color: var(--emerald);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 201, 125, 0.3);
  transition: border-color 0.2s;
}

.article-body a:hover { border-color: var(--emerald); }

/* TOC */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--emerald);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 32px 0;
}

.toc h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 14px;
}

.toc ol {
  margin: 0;
  padding-left: 18px;
}

.toc li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.toc a {
  color: var(--text-muted) !important;
  border-bottom: none !important;
  text-decoration: none;
}

.toc a:hover { color: var(--text-primary) !important; }

/* Callout boxes */
.callout {
  border-radius: 8px;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.95rem;
}

.callout.info {
  background: rgba(0, 201, 125, 0.06);
  border: 1px solid rgba(0, 201, 125, 0.2);
  color: #9ecfb8;
}

.callout.warning {
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #c9a96e;
}

.callout strong { color: var(--text-primary); }

/* Code */
.article-body code {
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 0.85em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--emerald);
}

/* Diagram boxes */
.diagram {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  margin: 32px 0;
  font-size: 0.88rem;
  overflow-x: auto;
}

.diagram .flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}

.flow-step {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-primary);
  min-width: 220px;
}

.flow-step.green {
  border-color: var(--emerald);
  color: var(--emerald);
  background: var(--emerald-glow);
}

.flow-step.purple {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  background: rgba(124, 92, 252, 0.1);
}

.flow-arrow {
  color: var(--text-dim);
  font-size: 1.2rem;
  margin: 4px 0;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.88rem;
}

.comparison-table th {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.comparison-table td {
  border: 1px solid var(--border);
  padding: 12px 16px;
  color: #b8c7d9;
  vertical-align: top;
}

.comparison-table tr:hover td { background: var(--bg-card); }

.check { color: var(--emerald); font-weight: 700; }
.cross  { color: #f87171;       font-weight: 700; }

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(0, 201, 125, 0.06) 100%);
  border: 1px solid rgba(0, 201, 125, 0.3);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  margin: 48px 0 0;
}

.cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.cta-box p {
  color: #c8d8e8;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.cta-box .btn-primary {
  background: #ffffff;
  color: #0b0e14;
}

.cta-box .btn-primary:hover {
  background: #e8edf5;
}

/* Related articles */
.related {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 60px;
}

.related h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.related-card:hover { border-color: var(--emerald); }

.related-card .tag { display: inline-block; margin-bottom: 8px; }

.related-card span {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

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

/* ---- HOMEPAGE FEATURES ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stats bar */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}

.stats-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald);
  display: block;
}

.stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- READING PROGRESS BAR ---- */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--emerald);
  z-index: 999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(0, 201, 125, 0.5);
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 20px 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--emerald); }

.breadcrumb .sep {
  color: var(--text-dim);
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--text-muted);
}

/* ---- GUIDE COUNTER BADGE ---- */
.guide-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.guide-counter strong { color: var(--text-muted); }

/* ---- PREV / NEXT NAVIGATION ---- */
.guide-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 48px 0 0;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.guide-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}

.guide-nav-item:hover {
  border-color: var(--emerald);
  transform: translateY(-2px);
}

.guide-nav-item.prev { text-align: left; }
.guide-nav-item.next { text-align: right; }

.guide-nav-item.empty {
  background: transparent;
  border-color: transparent;
  pointer-events: none;
}

.guide-nav-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.guide-nav-item.next .guide-nav-label {
  justify-content: flex-end;
}

.guide-nav-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.guide-nav-tag {
  font-size: 0.7rem;
  color: var(--emerald);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---- GUIDE PATH (guides index) ---- */
.guide-path {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-path-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.guide-path-item:hover {
  background: rgba(0, 201, 125, 0.03);
}

.guide-path-item:last-child { border-bottom: none; }

.guide-path-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--emerald);
}

.guide-path-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.guide-path-title:hover { color: var(--emerald); }

.guide-path-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.guide-path-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.guide-path-arrow {
  font-size: 1.2rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.guide-path-arrow:hover {
  color: var(--emerald);
  transform: translateX(4px);
}

/* ---- GLOSSARY ---- */
.glossary-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.glossary-term {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.glossary-term:last-child { border-bottom: none; }

.glossary-term h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 8px;
}

.glossary-term p {
  margin: 0;
  font-size: 0.95rem;
  color: #b8c7d9;
  line-height: 1.65;
}

.glossary-term a {
  color: var(--emerald);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 201, 125, 0.3);
  font-weight: 500;
}

.glossary-term a:hover { border-color: var(--emerald); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 56px 20px 48px; }
  .hero h1 { font-size: 2rem; }

  .section { padding: 40px 20px; }

  .card-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .stats-inner { gap: 32px; }

  .article-header { margin-top: 36px; }
  .article-body { padding: 28px 20px 60px; }

  .btn-ghost { margin-left: 0; margin-top: 12px; }

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

  .comparison-table { font-size: 0.8rem; }
  .comparison-table th, .comparison-table td { padding: 9px 10px; }

  .guide-nav { grid-template-columns: 1fr; }
  .guide-nav-item.next { text-align: left; }
  .guide-nav-item.next .guide-nav-label { justify-content: flex-start; }

  .breadcrumb { padding: 16px 20px 0; }

  .guide-path-item {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 20px 0;
  }
  .guide-path-arrow { display: none; }
  .guide-path-num { width: 32px; height: 32px; font-size: 0.8rem; }
  .guide-path-title { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 28px 20px; }
  .guide-nav-item { padding: 16px 18px; }
}

/* Legal pages */
.legal-content h2 { font-size: 1.15rem; margin-top: 32px; margin-bottom: 12px; color: var(--text-primary); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1rem; margin-top: 20px; margin-bottom: 8px; color: var(--text-primary); }
.legal-content p, .legal-content li { color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { margin: 12px 0 20px 24px; }
.legal-content a { color: var(--emerald); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content code { background: var(--bg-card); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.cookie-banner--hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner__text strong { color: var(--text-primary); }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cookie-banner__link {
  color: var(--emerald);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}
.cookie-banner__link:hover { text-decoration: underline; }
.cookie-banner__btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-banner__btn:hover { opacity: 0.9; }
.cookie-banner__btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.cookie-banner__btn--primary {
  background: var(--emerald);
  color: var(--bg-base);
}
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: flex-end; }
}
