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

:root {
  --bg: #f4f1ea;
  --bg-alt: #ece7de;
  --surface: rgba(255,255,255,0.86);
  --surface-strong: #ffffff;
  --surface-muted: #f7f3ec;
  --border: rgba(32, 47, 63, 0.1);
  --border-strong: rgba(32, 47, 63, 0.18);
  --text: #15202b;
  --text-soft: #52606d;
  --text-faint: #8b98a5;
  --text-dim: #677483;
  --accent: #1f5f8b;
  --accent-strong: #15496b;
  --accent-soft: rgba(31, 95, 139, 0.1);
  --green: #2c7a62;
  --green-soft: rgba(44, 122, 98, 0.12);
  --amber: #ac7022;
  --amber-soft: rgba(172, 112, 34, 0.14);
  --red: #b24b44;
  --red-soft: rgba(178, 75, 68, 0.12);
  --shadow-sm: 0 8px 20px rgba(18, 31, 44, 0.06);
  --shadow-lg: 0 20px 48px rgba(18, 31, 44, 0.1);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at top left, rgba(31, 95, 139, 0.05), transparent 32%),
    linear-gradient(180deg, #faf8f4 0%, var(--bg) 40%, #efebe4 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(31, 95, 139, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 95, 139, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.3), transparent 72%);
}

.bg-glow {
  position: fixed;
  inset: auto auto 0 50%;
  transform: translateX(-50%);
  width: min(1100px, 90vw);
  height: 360px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0) 70%);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(250, 248, 244, 0.86);
  border-bottom: 1px solid rgba(32, 47, 63, 0.06);
  backdrop-filter: blur(18px);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.logo-accent { color: var(--accent); }
.logo-dot { color: var(--text-faint); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link,
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-link {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.8);
  color: var(--text);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(31, 95, 139, 0.16);
}

.nav-cta:hover { background: var(--accent-strong); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-soft);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 144px 24px 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  width: 100%;
  max-width: 920px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.hero-title-dim,
.hero-title-accent {
  display: block;
}

.hero-title-dim { color: var(--text); }
.hero-title-accent { color: var(--accent); }

.hero-sub {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.7;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-highlight {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.84rem;
  font-weight: 700;
}

.search-wrap {
  width: 100%;
  position: relative;
  z-index: 5;
  overflow: visible;
}

.search-box {
  display: flex;
  align-items: center;
  padding: 8px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(32, 47, 63, 0.1);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(18, 31, 44, 0.1);
}

.search-box:focus-within {
  border-color: rgba(31, 95, 139, 0.28);
  box-shadow: 0 0 0 4px rgba(31, 95, 139, 0.08), 0 16px 38px rgba(18, 31, 44, 0.1);
}

.search-icon {
  padding: 0 16px 0 20px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 18px 0;
  font-size: 1rem;
  caret-color: var(--accent);
}

#search-input::placeholder { color: var(--text-faint); }

.search-btn {
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.search-btn:hover { background: var(--accent-strong); }
.search-btn:active { transform: scale(0.98); }

.search-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 8px 0;
  color: var(--text-faint);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.search-shortcut {
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
}

.autocomplete {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  display: none;
  z-index: 120;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-lg);
}

.autocomplete.show { display: block; }

.ac-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(87, 72, 49, 0.08);
  cursor: pointer;
  transition: background 0.15s ease;
}

.ac-item:last-child { border-bottom: none; }
.ac-item:hover, .ac-item.kbd-active { background: rgba(33, 95, 139, 0.06); }

.ac-logo,
.card-logo,
.browse-logo,
.exchange-logo-lg,
.table-logo,
.sel-opt-logo,
.sel-logo,
.compare-logo,
.verdict-winner-logo,
.nokyc-logo,
.alt-logo {
  background: linear-gradient(135deg, #f7ecda, #efe2cc);
  border: 1px solid rgba(32, 47, 63, 0.08);
  color: var(--accent-strong);
}

.ac-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ac-name { font-weight: 700; }
.ac-url { color: var(--text-soft); font-family: var(--mono); font-size: 0.73rem; }

.quick-filters {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip:hover {
  background: rgba(255,255,255,0.85);
  color: var(--text);
}

.filter-chip.active {
  background: var(--accent-soft);
  border-color: rgba(31, 95, 139, 0.22);
  color: var(--accent);
}

.chip-count {
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  color: var(--text-soft);
  font-size: 0.66rem;
}

.chip-green { color: var(--green) !important; }
.chip-red { color: var(--red) !important; }

.stats-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.76);
  box-shadow: var(--shadow-sm);
}

.stat { min-width: 120px; text-align: center; }

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.stat-green { color: var(--green); }
.stat-red { color: var(--red); }

.stat-label {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(87, 72, 49, 0.12);
}

.results-section {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 52px;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(32, 47, 63, 0.1);
}

.results-title,
.results-count {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exchange-card,
.why-card,
.detail-card,
.sidebar-card,
.filter-bar,
.explainer-card,
.compare-verdict,
.directory-cta,
.aggregate-cta,
.verdict-card,
.compare-table-wrap,
.table-wrap {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.exchange-card {
  padding: 24px;
  margin-bottom: 14px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: fadeUp 0.3s ease both;
}

.exchange-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.card-logo {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 800;
  flex-shrink: 0;
}

.card-name-wrap { flex: 1; }
.card-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.03em; }
.card-url { color: var(--text-soft); font-family: var(--mono); font-size: 0.75rem; margin-top: 4px; }

.card-pill,
.table-badge,
.compare-badge,
.kyc-badge-lg,
.verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill-dot,
.badge-dot,
.verdict-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.card-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.meta-item {
  padding: 14px;
  border: 1px solid rgba(32, 47, 63, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.7);
}

.meta-label,
.detail-card-title,
.sidebar-title,
.selector-label,
.compare-feature,
.table-link,
.page-hero-badge,
.footer-col-title {
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-faint);
  font-size: 0.66rem;
}

.meta-value { font-size: 0.95rem; font-weight: 700; }

.card-notes {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-left: 3px solid rgba(31, 95, 139, 0.18);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(247, 249, 251, 0.9);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.kyc-0, .kyc-text-0 { color: var(--green) !important; }
.kyc-1, .kyc-text-1 { color: var(--amber) !important; }
.kyc-2, .kyc-text-2 { color: #b06b2a !important; }
.kyc-3, .kyc-text-3 { color: var(--red) !important; }

.card-pill.kyc-0,
.table-badge.kyc-0,
.compare-badge.kyc-0,
.kyc-badge-lg.kyc-0,
.verdict-badge.kyc-0 { background: var(--green-soft); }

.card-pill.kyc-1,
.table-badge.kyc-1,
.compare-badge.kyc-1,
.verdict-badge.kyc-1 { background: var(--amber-soft); }

.card-pill.kyc-2,
.table-badge.kyc-2,
.compare-badge.kyc-2,
.verdict-badge.kyc-2 { background: rgba(176, 107, 42, 0.12); }

.card-pill.kyc-3,
.table-badge.kyc-3,
.compare-badge.kyc-3,
.verdict-badge.kyc-3 { background: var(--red-soft); }

.btn-primary,
.btn-outline,
.btn-cg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 16px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 700;
}

.btn-primary:hover { background: var(--accent-strong); }

.btn-outline,
.btn-cg {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
}

.btn-outline:hover,
.btn-cg:hover {
  background: rgba(255,255,255,0.88);
  border-color: var(--border-strong);
}

.btn-primary.btn-lg,
.btn-outline.btn-lg { padding: 14px 24px; font-size: 1rem; }
.btn-outline.btn-sm { padding: 9px 14px; font-size: 0.85rem; }
.btn-outline.btn-block { width: 100%; }

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cg-cta-card,
.directory-cta,
.aggregate-cta,
.kyc-warning-cta,
.nokyc-cta {
  border-radius: var(--radius-lg);
}

.cg-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(31, 95, 139, 0.06), rgba(255,255,255,0.82));
  border: 1px solid rgba(31, 95, 139, 0.12);
}

.cg-cta-card .cg-text {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.7;
}

.cg-cta-card .cg-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.98rem;
}

.browse-section,
.why-section,
.faq-section-home { position: relative; z-index: 1; }
.browse-section { padding: 52px 0 74px; }
.faq-section-home { padding: 0 0 72px; }
.why-section { padding: 0 0 100px; }
.faq-list-home { max-width: 800px; }

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-sub {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.browse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}

.browse-grid-sm { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.browse-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.browse-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.browse-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.browse-info { flex: 1; min-width: 0; }
.browse-name { font-size: 0.98rem; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browse-badge { margin-top: 4px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; }
.browse-arrow { color: var(--text-faint); font-size: 1rem; transition: transform 0.2s ease; }
.browse-card:hover .browse-arrow { transform: translateX(3px); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(31, 95, 139, 0.08);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
}

.why-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 800;
}

.why-card p { color: var(--text-soft); font-size: 0.92rem; line-height: 1.75; }

.page-header-spacer { height: 72px; }

.page-hero {
  padding: 64px 0 42px;
}

.page-hero-green .page-title { color: var(--accent); }

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.64);
  border: 1px solid var(--border);
  color: var(--green);
  font-size: 0.72rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

.page-title {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.page-desc {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 24px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
}

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

.exchange-page { padding-bottom: 100px; }

.verdict-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
}

.verdict-card.kyc-0 { border-color: rgba(45, 125, 88, 0.22); }
.verdict-card.kyc-3 { border-color: rgba(181, 76, 75, 0.22); }

.verdict-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.exchange-logo-lg {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  font-weight: 800;
  flex-shrink: 0;
}

.exchange-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.exchange-url {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.exchange-url:hover { color: var(--accent); }

.exchange-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.meta-tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(87, 72, 49, 0.1);
  background: rgba(255,255,255,0.55);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.meta-tag-xmr {
  background: rgba(45, 125, 88, 0.12);
  color: var(--green);
}

.verdict-right { text-align: right; }
.verdict-level { color: var(--text-soft); font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.detail-card,
.sidebar-card {
  padding: 26px;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
}

.detail-card-title,
.sidebar-title {
  margin-bottom: 14px;
  color: var(--text-faint);
  font-size: 0.72rem;
}

.detail-description,
.detail-coins {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.detail-notes,
.sidebar-sub,
.fact-label,
.compare-empty p,
.compare-notes,
.table-exchange-url,
.td-type,
.td-coins,
.td-country,
.explainer-card p,
.nokyc-notes,
.nokyc-url,
.directory-cta-text p,
.aggregate-cta p,
.footer-tagline,
.footer-col a,
.footer-bottom p {
  color: var(--text-soft);
  font-family: var(--mono);
}

.detail-notes,
.compare-notes,
.explainer-card p,
.nokyc-notes,
.directory-cta-text p,
.aggregate-cta p {
  font-size: 0.82rem;
  line-height: 1.8;
}

.kyc-meter { margin-top: 18px; }

.kyc-meter-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--text-faint);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.kyc-meter-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(87, 72, 49, 0.08);
  overflow: hidden;
  margin-bottom: 12px;
}

.kyc-meter-fill { height: 100%; border-radius: 999px; transition: width 0.4s ease; }
.kyc-fill-0 { width: 12%; background: var(--green); }
.kyc-fill-1 { width: 38%; background: var(--amber); }
.kyc-fill-2 { width: 68%; background: #b06b2a; }
.kyc-fill-3 { width: 100%; background: var(--red); }

.kyc-meter-steps {
  display: flex;
  justify-content: space-between;
}

.kyc-step {
  color: var(--text-faint);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.kyc-step.active { color: var(--text); font-weight: 700; }

.kyc-warning-cta,
.nokyc-cta {
  padding: 28px;
  margin-bottom: 16px;
}

.kyc-warning-cta {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(181, 76, 75, 0.08), rgba(255,255,255,0.7));
  border: 1px solid rgba(181, 76, 75, 0.16);
}

.warning-icon { font-size: 1.5rem; line-height: 1; }
.warning-content h3,
.nokyc-cta h3,
.directory-cta-text h3,
.aggregate-cta h2,
.explainer-card h2,
.verdict-winner h3,
.compare-empty-sub,
.not-found-title {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.warning-content h3,
.nokyc-cta h3,
.directory-cta-text h3 { margin-bottom: 8px; font-size: 1.15rem; }

.warning-content p,
.nokyc-cta p {
  margin-bottom: 16px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.8;
}

.nokyc-cta {
  background: linear-gradient(135deg, rgba(45, 125, 88, 0.08), rgba(255,255,255,0.66));
  border: 1px solid rgba(45, 125, 88, 0.14);
}

.fact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.fact-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.fact-label { font-size: 0.72rem; }
.fact-value { font-size: 0.95rem; font-weight: 700; text-align: right; }

.alt-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(87, 72, 49, 0.08);
}

.alt-item:last-child { border-bottom: none; }
.alt-item:hover .alt-name { color: var(--accent); }

.alt-logo {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.alt-info { flex: 1; }
.alt-name { font-size: 0.95rem; font-weight: 700; }
.alt-badge { margin-top: 3px; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; }
.alt-arrow { color: var(--text-faint); }

.related-section { margin-top: 48px; }

/* FAQ Section */
.faq-section { margin-top: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  gap: 12px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-faint);
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

.filter-bar {
  position: relative;
  overflow: visible;
  padding: 22px 24px;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
}

.filter-form {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-search-wrap {
  position: relative;
  z-index: 3;
}

.filter-search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--text-faint);
}

.filter-search,
.selector-box {
  border: 1px solid rgba(32, 47, 63, 0.1);
  background: rgba(255,255,255,0.72);
}

.filter-search {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border-radius: 16px;
  outline: none;
  color: var(--text);
}

.filter-search:focus { border-color: rgba(33, 95, 139, 0.28); }
.filter-search::placeholder { color: var(--text-faint); }

.filter-chips-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-chip-label {
  margin-right: 2px;
  color: var(--text-faint);
  font-size: 0.68rem;
}

.kyc-chip-0.active { background: var(--green-soft); border-color: rgba(45, 125, 88, 0.2); color: var(--green); }
.kyc-chip-1.active { background: var(--amber-soft); border-color: rgba(183, 121, 40, 0.2); color: var(--amber); }
.kyc-chip-2.active { background: rgba(176, 107, 42, 0.12); border-color: rgba(176, 107, 42, 0.2); color: #b06b2a; }
.kyc-chip-3.active { background: var(--red-soft); border-color: rgba(181, 76, 75, 0.2); color: var(--red); }

.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.results-meta-count { color: var(--text-soft); font-family: var(--mono); font-size: 0.76rem; }
.clear-filters { color: var(--red); font-family: var(--mono); font-size: 0.76rem; }

.table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
}

.exchange-table,
.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.exchange-table th,
.compare-table th {
  padding: 16px 20px;
  text-align: left;
  background: rgba(245, 247, 249, 0.96);
  border-bottom: 1px solid rgba(32, 47, 63, 0.08);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table-row {
  cursor: pointer;
  border-bottom: 1px solid rgba(32, 47, 63, 0.08);
  transition: background 0.15s ease;
}

.table-row:last-child { border-bottom: none; }
.table-row:hover { background: rgba(245, 247, 249, 0.75); }

.exchange-table td,
.compare-table td {
  padding: 16px 20px;
  vertical-align: middle;
}

.td-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.table-logo,
.compare-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.table-exchange-name { font-size: 0.96rem; font-weight: 800; }
.table-exchange-url { font-size: 0.68rem; margin-top: 2px; }
.td-type, .td-coins, .td-country { font-size: 0.72rem; }
.td-coins { max-width: 170px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xmr-yes { color: var(--green); font-weight: 800; }
.xmr-no { color: var(--text-faint); font-weight: 800; }
.table-link:hover { color: var(--accent); }

.empty-state {
  padding: 48px 20px;
  text-align: center;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.empty-state a { color: var(--accent); }

.directory-cta,
.aggregate-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, rgba(31, 95, 139, 0.06), rgba(255,255,255,0.84));
  border: 1px solid rgba(31, 95, 139, 0.1);
}

.directory-cta-text h3 { font-size: 1.25rem; margin-bottom: 8px; }

.explainer-card {
  padding: 32px;
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
}

.explainer-card h2 { margin-bottom: 14px; font-size: 1.35rem; }

.explainer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.explainer-item {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(87, 72, 49, 0.1);
}

.explainer-yes { border-color: rgba(45, 125, 88, 0.18); }
.explainer-no { border-color: rgba(181, 76, 75, 0.18); }
.explainer-item h4 { margin-bottom: 12px; font-size: 1rem; font-weight: 800; }
.explainer-yes h4 { color: var(--green); }
.explainer-no h4 { color: var(--red); }

.explainer-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.explainer-item li {
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.7;
}

.nokyc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 60px;
}

.nokyc-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nokyc-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 125, 88, 0.18);
}

.nokyc-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nokyc-info { flex: 1; }
.nokyc-name { font-size: 1.06rem; font-weight: 800; margin-bottom: 4px; }
.nokyc-url { font-size: 0.72rem; margin-bottom: 8px; }
.nokyc-notes { margin-bottom: 12px; }

.nokyc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nokyc-tag {
  padding: 5px 8px;
  border: 1px solid rgba(87, 72, 49, 0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.52);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.nokyc-tag-xmr {
  background: rgba(45, 125, 88, 0.12);
  color: var(--green);
}

.nokyc-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.nokyc-arrow { color: var(--text-faint); font-size: 1.1rem; }

.aggregate-cta {
  flex-direction: column;
  text-align: center;
}

.aggregate-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.aggregate-cta p {
  max-width: 640px;
  margin: 0 auto 24px;
}

.aggregate-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.compare-selectors {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.compare-selector-wrap {
  position: relative;
  flex: 1;
}

.selector-label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-faint);
  font-size: 0.68rem;
}

.selector-box {
  position: relative;
  z-index: 2;
  border-radius: 18px;
}

.selector-input {
  width: 100%;
  padding: 18px 20px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
}

.selector-input::placeholder { color: var(--text-faint); }

.selector-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid rgba(32, 47, 63, 0.14);
  border-radius: 20px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-lg);
}

.selector-dropdown.show { display: block; }

.sel-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(87, 72, 49, 0.08);
  cursor: pointer;
}

.sel-option:last-child { border-bottom: none; }
.sel-option:hover { background: rgba(33, 95, 139, 0.06); }

.sel-opt-logo,
.sel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.sel-opt-logo {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 0.7rem;
}

.sel-opt-name { flex: 1; font-size: 0.94rem; font-weight: 700; }
.sel-opt-badge { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; }

.selected-exchange {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

.sel-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 0.82rem;
}

.sel-info { flex: 1; }
.sel-name { font-weight: 800; }
.sel-kyc { margin-top: 4px; font-family: var(--mono); font-size: 0.72rem; }

.sel-clear {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.64);
  color: var(--text-soft);
  cursor: pointer;
}

.sel-clear:hover { color: var(--red); border-color: rgba(181, 76, 75, 0.2); }

.compare-vs {
  color: var(--text-faint);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
}

.compare-th-exchange {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-table td {
  border-bottom: 1px solid rgba(87, 72, 49, 0.08);
  vertical-align: top;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.4); }

.compare-feature {
  width: 150px;
  color: var(--text-faint);
  font-size: 0.68rem;
}

.compare-notes { max-width: 320px; }

.compare-verdict {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  margin-bottom: 60px;
  border-radius: var(--radius-lg);
}

.verdict-winner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.verdict-winner-logo {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 800;
  flex-shrink: 0;
}

.verdict-winner h3 { margin-bottom: 6px; font-size: 1.1rem; }
.verdict-winner p,
.verdict-equal h3 { color: var(--text-soft); font-family: var(--mono); font-size: 0.82rem; }

.compare-empty {
  padding: 80px 20px;
  text-align: center;
}

.compare-empty p { margin-bottom: 8px; font-size: 0.86rem; }
.compare-empty-sub { margin-top: 28px; margin-bottom: 16px; font-size: 1rem; }

.compare-suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.compare-suggestion {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.74rem;
}

.compare-suggestion:hover {
  color: var(--accent);
  border-color: rgba(33, 95, 139, 0.18);
}

.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 24px;
}

.not-found-inner {
  max-width: 520px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.not-found-code {
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: var(--text-faint);
}

.not-found-title { margin: 12px 0 10px; font-size: 1.8rem; }

.not-found-sub {
  margin-bottom: 26px;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.84rem;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer {
  position: relative;
  z-index: 1;
  padding-top: 54px;
  border-top: 1px solid rgba(32, 47, 63, 0.06);
  background: rgba(248, 246, 241, 0.7);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 38px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand { max-width: 340px; }

.footer-tagline {
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  color: var(--text-faint);
  font-size: 0.66rem;
}

.footer-col a {
  font-size: 0.78rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(32, 47, 63, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.72rem; }
.footer-disclaimer { text-align: right; }

/* Editorial refresh */
:root {
  --bg: #ede6da;
  --bg-alt: #e4d9c6;
  --surface: rgba(252, 250, 246, 0.9);
  --surface-strong: #fbf8f2;
  --surface-muted: #f3ede2;
  --border: rgba(43, 42, 40, 0.12);
  --border-strong: rgba(43, 42, 40, 0.22);
  --text: #161616;
  --text-soft: #4f4a43;
  --text-faint: #7f776d;
  --text-dim: #5f584f;
  --accent: #1f5f8b;
  --accent-strong: #15496b;
  --accent-soft: rgba(31, 95, 139, 0.1);
  --green: #1f6d46;
  --green-soft: rgba(31, 109, 70, 0.1);
  --amber: #8a5a1b;
  --amber-soft: rgba(138, 90, 27, 0.12);
  --red: #9b3b32;
  --red-soft: rgba(155, 59, 50, 0.1);
  --shadow-sm: 0 10px 30px rgba(28, 24, 18, 0.06);
  --shadow-lg: 0 22px 60px rgba(28, 24, 18, 0.1);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --font: 'Space Grotesk', sans-serif;
  --display: 'Sora', sans-serif;
}

body {
  background:
    radial-gradient(circle at top right, rgba(31, 95, 139, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f2ea 0%, var(--bg) 34%, #efe7da 100%);
}

.bg-grid {
  background-image:
    linear-gradient(rgba(22, 22, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 22, 22, 0.035) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.18), transparent 76%);
}

.bg-glow {
  width: min(1200px, 100vw);
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 72%);
}

.nav {
  background: rgba(247, 242, 234, 0.86);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-accent { color: var(--accent-strong); }

.nav-link,
.nav-cta,
.hero-highlight,
.filter-chip,
.meta-tag,
.compare-suggestion,
.search-shortcut {
  border-radius: 999px;
}

.nav-link {
  color: var(--text-dim);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(22, 22, 22, 0.05);
}

.nav-cta {
  background: var(--text);
  box-shadow: none;
}

.nav-cta:hover {
  background: var(--accent-strong);
}

.hero {
  min-height: auto;
  padding: 144px 24px 72px;
}

.hero-inner {
  max-width: 1080px;
  align-items: flex-start;
  text-align: left;
}

.hero-eyebrow,
.page-hero-badge {
  background: rgba(250, 247, 241, 0.8);
  color: var(--accent-strong);
  border-color: rgba(31, 95, 139, 0.16);
}

.hero-title,
.section-title,
.page-title,
.exchange-title,
.aggregate-cta h2,
.not-found-title {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
}

.hero-title {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  letter-spacing: -0.05em;
}

.hero-title-accent {
  color: var(--accent-strong);
}

.hero-sub {
  max-width: 720px;
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-highlights {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.hero-highlight {
  background: rgba(250, 247, 241, 0.76);
  color: var(--text-dim);
  border-color: rgba(22, 22, 22, 0.08);
}

.search-box,
.filter-search,
.selector-box,
.filter-bar,
.exchange-card,
.why-card,
.detail-card,
.sidebar-card,
.verdict-card,
.compare-table-wrap,
.table-wrap,
.faq-item,
.not-found-inner,
.browse-card,
.nokyc-item,
.explainer-card,
.directory-cta,
.aggregate-cta,
.cg-cta-card,
.kyc-warning-cta,
.nokyc-cta {
  backdrop-filter: none;
}

.search-box {
  padding: 10px;
  background: rgba(251, 248, 242, 0.96);
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(22, 22, 22, 0.08);
}

.search-box:focus-within {
  border-color: rgba(31, 95, 139, 0.3);
  box-shadow: 0 0 0 4px rgba(31, 95, 139, 0.08), 0 20px 50px rgba(22, 22, 22, 0.08);
}

#search-input {
  font-size: 1.02rem;
}

.search-btn,
.btn-primary {
  border-radius: 14px;
  background: var(--text);
}

.search-btn:hover,
.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-outline,
.btn-cg {
  border-radius: 14px;
  background: transparent;
  border-color: rgba(22, 22, 22, 0.12);
}

.btn-outline:hover,
.btn-cg:hover {
  background: rgba(22, 22, 22, 0.04);
}

.quick-filters {
  justify-content: flex-start;
}

.filter-chip {
  background: rgba(250, 247, 241, 0.7);
  border-color: rgba(22, 22, 22, 0.08);
  color: var(--text-dim);
}

.filter-chip.active {
  background: rgba(31, 95, 139, 0.08);
  border-color: rgba(31, 95, 139, 0.22);
  color: var(--accent-strong);
}

.stats-bar {
  width: 100%;
  max-width: 760px;
  gap: 22px;
  padding: 18px 20px;
  margin-top: 32px;
  border-radius: 18px;
  background: rgba(248, 243, 236, 0.86);
  border-color: rgba(22, 22, 22, 0.08);
  box-shadow: none;
}

.results-header,
.section-header {
  border-color: rgba(22, 22, 22, 0.1);
}

.exchange-card,
.why-card,
.detail-card,
.sidebar-card,
.filter-bar,
.explainer-card,
.compare-verdict,
.directory-cta,
.aggregate-cta,
.verdict-card,
.compare-table-wrap,
.table-wrap {
  background: rgba(251, 248, 242, 0.82);
  border-color: rgba(22, 22, 22, 0.1);
}

.exchange-card,
.why-card,
.detail-card,
.sidebar-card,
.verdict-card,
.browse-card,
.nokyc-item,
.faq-item,
.not-found-inner {
  box-shadow: var(--shadow-sm);
}

.exchange-card:hover,
.browse-card:hover,
.nokyc-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(22, 22, 22, 0.18);
}

.ac-logo,
.card-logo,
.browse-logo,
.exchange-logo-lg,
.table-logo,
.sel-opt-logo,
.sel-logo,
.compare-logo,
.verdict-winner-logo,
.nokyc-logo,
.alt-logo {
  background: linear-gradient(135deg, #1a1a1a, #3c3428);
  border-color: rgba(22, 22, 22, 0.08);
  color: #f5efe4;
}

.meta-item,
.explainer-item {
  background: rgba(255,255,255,0.42);
  border-color: rgba(22, 22, 22, 0.08);
}

.card-notes {
  background: rgba(22, 22, 22, 0.03);
  border-left-color: rgba(31, 95, 139, 0.24);
  border-radius: 0 12px 12px 0;
}

.card-pill,
.table-badge,
.compare-badge,
.kyc-badge-lg,
.verdict-badge {
  border: 1px solid transparent;
}

.card-pill.kyc-0,
.table-badge.kyc-0,
.compare-badge.kyc-0,
.kyc-badge-lg.kyc-0,
.verdict-badge.kyc-0 {
  border-color: rgba(31, 109, 70, 0.14);
}

.card-pill.kyc-1,
.table-badge.kyc-1,
.compare-badge.kyc-1,
.verdict-badge.kyc-1,
.card-pill.kyc-2,
.table-badge.kyc-2,
.compare-badge.kyc-2,
.verdict-badge.kyc-2,
.card-pill.kyc-3,
.table-badge.kyc-3,
.compare-badge.kyc-3,
.verdict-badge.kyc-3 {
  border-color: rgba(22, 22, 22, 0.08);
}

.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(31, 95, 139, 0.08);
  border: 1px solid rgba(31, 95, 139, 0.12);
  border-radius: 50%;
}

.browse-card {
  min-height: 96px;
  background: rgba(251, 248, 242, 0.72);
  border-radius: 20px;
}

.browse-badge,
.fact-label,
.detail-card-title,
.sidebar-title,
.results-title,
.results-count,
.stat-label,
.meta-label,
.footer-col-title {
  letter-spacing: 0.1em;
}

.verdict-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0)),
    rgba(247, 242, 234, 0.86);
}

.verdict-right {
  padding-left: 24px;
  border-left: 1px solid rgba(22, 22, 22, 0.08);
}

.kyc-meter-bar {
  background: rgba(22, 22, 22, 0.08);
}

.kyc-warning-cta,
.directory-cta,
.aggregate-cta,
.cg-cta-card {
  background: rgba(31, 95, 139, 0.06);
  border: 1px solid rgba(31, 95, 139, 0.12);
}

.nokyc-cta {
  background: rgba(31, 109, 70, 0.06);
  border: 1px solid rgba(31, 109, 70, 0.12);
}

.faq-item {
  background: rgba(251, 248, 242, 0.76);
}

.faq-q {
  font-weight: 700;
}

.exchange-table th,
.compare-table th {
  background: rgba(22, 22, 22, 0.03);
}

.table-row:hover,
.compare-table tr:hover td {
  background: rgba(22, 22, 22, 0.03);
}

.footer {
  margin-top: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.18)),
    rgba(235, 226, 213, 0.7);
  border-top-color: rgba(22, 22, 22, 0.08);
}

@media (max-width: 980px) {
  .hero-inner {
    align-items: stretch;
  }

  .verdict-right {
    padding-left: 0;
    border-left: 0;
  }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.9); }
}

@media (max-width: 980px) {
  .detail-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .compare-selectors,
  .compare-verdict,
  .directory-cta { flex-direction: column; align-items: stretch; }
  .compare-vs { align-self: center; }
  .verdict-card { flex-direction: column; align-items: flex-start; }
  .verdict-right { text-align: left; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 18px 24px 22px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(250, 248, 244, 0.97);
    border-bottom: 1px solid rgba(32, 47, 63, 0.06);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding-top: 124px; }
  .hero-highlights { flex-direction: column; align-items: stretch; }
  .hero-highlight { text-align: center; }

  .search-box { flex-wrap: wrap; border-radius: 22px; }
  .search-icon { padding-left: 16px; }
  #search-input { width: calc(100% - 52px); min-width: 0; }
  .search-btn { width: 100%; }
  .search-meta { flex-direction: column; align-items: center; }

  .stats-bar {
    width: 100%;
    gap: 18px;
    padding: 18px;
    justify-content: space-between;
  }

  .stat { min-width: 0; flex: 1; }
  .stat-num { font-size: 1.5rem; }

  .section-header { flex-direction: column; align-items: flex-start; }
  .browse-grid { grid-template-columns: 1fr; }
  .card-meta { grid-template-columns: 1fr; }
  .explainer-grid { grid-template-columns: 1fr; }
  .nokyc-item { flex-direction: column; }
  .nokyc-action { align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
}

@media (max-width: 640px) {
  .exchange-table th:nth-child(4), .exchange-table td:nth-child(4),
  .exchange-table th:nth-child(6), .exchange-table td:nth-child(6) { display: none; }
}
