/* ============================================
   CryptoYeti - Modern & Warm Crypto Guide
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #0f0f17;
  --bg-secondary: #161624;
  --bg-card: #1c1c2e;
  --bg-card-hover: #242440;
  --bg-elevated: #222238;
  --text-primary: #f0eff4;
  --text-secondary: #a09fba;
  --text-muted: #6b6a82;
  --accent-primary: #f59e0b;
  --accent-secondary: #f97316;
  --accent-gradient: linear-gradient(135deg, #f59e0b, #f97316);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(245, 158, 11, 0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --container-max: 1200px;
  --container-narrow: 820px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--accent-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-secondary); }

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

/* --- Animated BG Orbs --- */
.bg-orbs {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.08;
}
.orb-1 {
  width: 600px; height: 600px; background: #f59e0b;
  top: -200px; right: -100px;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px; background: #8b5cf6;
  bottom: -200px; left: -100px;
  animation: orbFloat 25s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px; height: 400px; background: #f97316;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: orbFloat 30s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

/* --- Layout --- */
.container {
  max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem;
  position: relative; z-index: 1;
}
.container-narrow { max-width: var(--container-narrow); }
.text-center { text-align: center; }
.section { padding: 5rem 0; position: relative; }

/* --- Section Theming System --- */
.section-alt {
  background: var(--bg-secondary);
}

/* Accent bar at top of themed sections */
.section-accent-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
[data-theme="amber"] .section-accent-bar {
  background: linear-gradient(90deg, transparent, #f59e0b, #f97316, transparent);
}
[data-theme="violet"] .section-accent-bar {
  background: linear-gradient(90deg, transparent, #8b5cf6, #a855f7, transparent);
}
[data-theme="emerald"] .section-accent-bar {
  background: linear-gradient(90deg, transparent, #10b981, #059669, transparent);
}
[data-theme="rose"] .section-accent-bar {
  background: linear-gradient(90deg, transparent, #f43f5e, #e11d48, transparent);
}

/* Section Dividers */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: 0.5rem 1.5rem;
  position: relative; z-index: 1;
}
.divider-line {
  flex: 1; max-width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.divider-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.7rem;
  animation: dividerPulse 3s ease-in-out infinite;
}
@keyframes dividerPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Colored badges per theme */
.badge-amber { color: #f59e0b !important; }
.badge-violet { color: #a78bfa !important; }
.badge-emerald { color: #34d399 !important; }
.badge-rose { color: #fb7185 !important; }

/* Colored title accents per theme */
.text-violet {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-emerald {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-rose {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Themed buttons */
.btn-violet {
  background: linear-gradient(135deg, #8b5cf6, #a855f7); color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}
.btn-violet:hover {
  transform: translateY(-2px); color: white;
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.35);
}
.btn-emerald {
  background: linear-gradient(135deg, #10b981, #059669); color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}
.btn-emerald:hover {
  transform: translateY(-2px); color: white;
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.35);
}

/* Themed guide card accents */
.guide-card-amber { border-left: 3px solid #f59e0b; }
.guide-card-violet { border-left: 3px solid #8b5cf6; }
.guide-card-emerald { border-left: 3px solid #10b981; }
.guide-card-amber:hover { border-color: #f59e0b; box-shadow: 0 0 25px rgba(245, 158, 11, 0.12); }
.guide-card-violet:hover { border-color: #8b5cf6; box-shadow: 0 0 25px rgba(139, 92, 246, 0.12); }
.guide-card-emerald:hover { border-color: #10b981; box-shadow: 0 0 25px rgba(16, 185, 129, 0.12); }

/* Themed tags */
.tag-amber { color: #f59e0b; }
.tag-violet { color: #a78bfa; }
.tag-emerald { color: #34d399; }

/* Category count pill */
.category-count {
  margin-left: auto; font-size: 0.78rem; font-weight: 600;
  background: var(--bg-card); border: 1px solid var(--border-color);
  padding: 0.3rem 0.8rem; border-radius: 50px; color: var(--text-muted);
  white-space: nowrap;
}

/* Section subtle glow per theme */
[data-theme="amber"]::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 200px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
}
[data-theme="violet"]::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 200px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
}
[data-theme="emerald"]::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 200px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
}
[data-theme="rose"]::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 200px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(244, 63, 94, 0.04) 0%, transparent 70%);
}

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: rgba(15, 15, 23, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(15, 15, 23, 0.95);
  padding: 0.7rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon { font-size: 1.8rem; }
.logo-text {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--text-primary);
}
.logo-accent { color: var(--accent-primary); }
.nav-links {
  display: flex; list-style: none; gap: 0.25rem; align-items: center;
}
.nav-links a {
  color: var(--text-secondary); padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 0.95rem; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary); background: rgba(245, 158, 11, 0.1);
}
.nav-links a.active { color: var(--accent-primary); }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 0.5rem; z-index: 1001;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text-primary);
  transition: all 0.3s; border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: all 0.3s; border: none; text-decoration: none;
  font-family: var(--font-primary);
}
.btn-primary {
  background: var(--accent-gradient); color: #1a1a2e;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px); color: #1a1a2e;
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.35);
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--accent-primary); color: var(--accent-primary);
  background: rgba(245, 158, 11, 0.05);
}
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* --- Hero Section --- */
.hero {
  padding: 10rem 0 4rem; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 0.5rem 1.25rem; border-radius: 50px;
  font-size: 0.85rem; color: var(--accent-primary); margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem; color: var(--text-secondary); max-width: 650px;
  margin: 0 auto 2rem; line-height: 1.8;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border-color);
}
.hero-stat { text-align: center; }
.hero-stat-value {
  display: block; font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: var(--text-primary);
}
.hero-stat-label {
  font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.05em; margin-top: 0.25rem; display: block;
}

/* --- Ticker --- */
.ticker-section {
  background: var(--bg-secondary); border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color); overflow: hidden;
  position: relative; z-index: 1;
}
.ticker-track {
  display: flex; animation: tickerScroll 40s linear infinite;
  padding: 0.8rem 0;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0 2rem; white-space: nowrap; flex-shrink: 0;
}
.ticker-name { font-weight: 600; color: var(--text-primary); }
.ticker-price { color: var(--text-secondary); }
.ticker-change { font-weight: 600; font-size: 0.85rem; }
.ticker-change.up { color: var(--success); }
.ticker-change.down { color: var(--danger); }
.ticker-loading { padding: 0.5rem 2rem; color: var(--text-muted); }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Section Headers --- */
.section-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--accent-primary);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto;
}

/* --- Feature Cards --- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--accent, #f59e0b) 15%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent, #f59e0b); margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* --- Exchange Preview Cards --- */
.exchange-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem;
}
.exchange-preview-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.75rem; transition: all 0.3s;
}
.exchange-preview-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.exchange-preview-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.exchange-preview-logo {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--exchange-color, #f59e0b) 15%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--exchange-color, #f59e0b);
}
.exchange-preview-header h3 { font-size: 1.15rem; flex: 1; }
.exchange-rating {
  color: var(--accent-primary); font-weight: 700; font-size: 0.9rem;
}
.exchange-preview-desc {
  color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.25rem;
}
.exchange-preview-stats {
  display: flex; gap: 1.5rem; margin-bottom: 1.25rem;
  padding: 1rem; background: var(--bg-secondary); border-radius: var(--radius-sm);
}
.exchange-preview-stat { text-align: center; flex: 1; }
.stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-value { display: block; font-weight: 700; font-size: 1.1rem; margin-top: 0.25rem; }

/* --- Guide Cards (Home) --- */
.guides-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem;
}
.guide-card {
  display: flex; gap: 1.25rem; background: var(--bg-card);
  border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 1.5rem; transition: all 0.3s; color: var(--text-primary); text-decoration: none;
}
.guide-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: var(--shadow-glow); color: var(--text-primary);
}
.guide-card-icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white;
}
.guide-card-content { flex: 1; }
.guide-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent-primary); margin-bottom: 0.5rem;
}
.guide-card-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.guide-card-content p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.75rem; }
.guide-read-more {
  font-size: 0.85rem; font-weight: 600; color: var(--accent-primary);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.guide-read-more i { transition: transform 0.2s; }
.guide-card:hover .guide-read-more i { transform: translateX(4px); }

/* --- Trending Grid --- */
.trending-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
}
.trending-coin {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 1.25rem; text-align: center;
  transition: all 0.3s;
}
.trending-coin:hover {
  border-color: var(--border-hover); transform: translateY(-2px);
}
.trending-coin-img {
  width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 0.75rem;
}
.trending-coin-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; }
.trending-coin-symbol { color: var(--text-muted); font-size: 0.8rem; }
.trending-coin-rank {
  display: inline-block; font-size: 0.72rem; background: rgba(245, 158, 11, 0.15);
  color: var(--accent-primary); padding: 0.2rem 0.6rem;
  border-radius: 50px; margin-top: 0.5rem; font-weight: 600;
}
.trending-loading { grid-column: 1 / -1; text-align: center; color: var(--text-muted); padding: 2rem; }

/* --- CTA Section --- */
.cta-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); padding: 3.5rem;
  display: flex; align-items: center; gap: 3rem;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-gradient);
}
.cta-content { flex: 1; }
.cta-content h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1rem; }
.cta-content p { color: var(--text-secondary); margin-bottom: 1.5rem; max-width: 500px; }
.cta-form { display: flex; gap: 0.75rem; max-width: 440px; }
.cta-form input {
  flex: 1; padding: 0.75rem 1rem; border-radius: var(--radius-md);
  border: 1px solid var(--border-color); background: var(--bg-secondary);
  color: var(--text-primary); font-size: 0.95rem; font-family: var(--font-primary);
  transition: border-color 0.2s;
}
.cta-form input:focus { outline: none; border-color: var(--accent-primary); }
.cta-success {
  display: flex; align-items: center; gap: 0.5rem; color: var(--success);
  font-weight: 600; font-size: 1rem;
}
.cta-decoration {
  font-size: 6rem; opacity: 0.15; line-height: 1;
}
.cta-card-secondary { text-align: center; justify-content: center; }
.cta-card-secondary .cta-content { text-align: center; }
.cta-card-secondary .cta-content p { margin-left: auto; margin-right: auto; }

/* --- Page Hero --- */
.page-hero {
  padding: 9rem 0 3rem; text-align: center;
}
.page-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800; margin: 0.75rem 0 1rem; letter-spacing: -0.02em;
}
.page-subtitle {
  font-size: 1.05rem; color: var(--text-secondary); max-width: 650px;
  margin: 0 auto; line-height: 1.8;
}

/* --- Info Banner --- */
.info-banner {
  display: flex; gap: 1.25rem; background: var(--bg-card);
  border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 1.75rem; align-items: flex-start;
}
.info-banner-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: var(--accent-primary);
}
.info-banner-content h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.info-banner-content p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* --- Comparison Table --- */
.table-wrapper {
  overflow-x: auto; border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}
.comparison-table {
  width: 100%; border-collapse: collapse; min-width: 700px;
}
.comparison-table thead { background: var(--bg-elevated); }
.comparison-table th {
  padding: 1rem 1.25rem; text-align: left; font-weight: 600;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-muted); border-bottom: 1px solid var(--border-color);
}
.comparison-table td {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
}
.comparison-table tbody tr { transition: background 0.2s; }
.comparison-table tbody tr:hover { background: rgba(245, 158, 11, 0.03); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.exchange-name-cell { display: flex; align-items: center; gap: 0.75rem; }
.exchange-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(245, 158, 11, 0.1); color: var(--accent-primary);
  padding: 0.25rem 0.75rem; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
}
.security-score { cursor: help; border-bottom: 1px dotted var(--text-muted); }
.security-tooltip {
  display: none; font-size: 0.78rem; color: var(--text-muted);
  margin-top: 0.25rem; line-height: 1.4;
}
.comparison-table td:hover .security-tooltip { display: block; }
.ideal-tag {
  display: inline-block; background: rgba(139, 92, 246, 0.1);
  color: #a78bfa; padding: 0.2rem 0.75rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 500;
}

/* --- Exchange Reviews --- */
.exchange-review {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); margin-bottom: 2rem;
  overflow: hidden; transition: all 0.3s;
}
.exchange-review:hover { border-color: var(--border-hover); }
.exchange-review-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.75rem; border-bottom: 1px solid var(--border-color);
}
.exchange-review-logo {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--exchange-color) 15%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--exchange-color);
}
.exchange-review-header h3 { font-size: 1.3rem; font-weight: 700; }
.exchange-review-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.tag {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.03em; padding: 0.2rem 0.6rem; border-radius: 50px;
  background: rgba(245, 158, 11, 0.1); color: var(--accent-primary);
}
.exchange-review-body {
  padding: 1.75rem; color: var(--text-secondary); line-height: 1.8;
}
.exchange-review-body h4 {
  color: var(--text-primary); font-size: 1rem; margin: 1.5rem 0 0.75rem;
}
.exchange-review-body h4:first-child { margin-top: 0; }
.exchange-review-body ul {
  padding-left: 1.25rem; margin-bottom: 0.5rem;
}
.exchange-review-body li { margin-bottom: 0.4rem; font-size: 0.92rem; }
.exchange-review-cta {
  padding: 1.25rem 1.75rem; background: var(--bg-secondary);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.affiliate-note {
  font-size: 0.78rem; color: var(--text-muted); display: flex;
  align-items: center; gap: 0.35rem;
}

/* --- Tips Card --- */
.tips-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.tips-card h3 {
  font-size: 1.3rem; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.tips-card h3 i { color: var(--accent-primary); }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.tip { display: flex; gap: 1rem; align-items: flex-start; }
.tip-number {
  width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
  background: var(--accent-gradient); color: #1a1a2e;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
}
.tip strong { color: var(--text-primary); display: block; margin-bottom: 0.25rem; }
.tip p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* --- Disclaimer --- */
.disclaimer-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(239, 68, 68, 0.05); border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.disclaimer-card > i { color: var(--danger); font-size: 1.2rem; margin-top: 0.15rem; }
.disclaimer-card strong { color: var(--danger); display: block; margin-bottom: 0.25rem; }
.disclaimer-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* --- Guides Page --- */
.guides-category { margin-bottom: 0; }
.category-header {
  display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-color);
}
.category-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: white; flex-shrink: 0;
}
.category-header h2 { font-size: 1.5rem; font-weight: 800; font-family: var(--font-display); }
.category-header p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.15rem; }

.guides-list { display: flex; flex-direction: column; gap: 0.75rem; }
.guide-list-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  color: var(--text-primary); text-decoration: none; transition: all 0.3s;
}
.guide-list-card:hover {
  border-color: var(--border-hover); transform: translateX(4px);
  box-shadow: var(--shadow-glow); color: var(--text-primary);
}
.guide-list-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.guide-level {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; padding: 0.2rem 0.6rem; border-radius: 50px;
  background: color-mix(in srgb, var(--level-color) 15%, transparent);
  color: var(--level-color);
}
.guide-time { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.35rem; }
.guide-list-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.guide-list-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.5; }
.guide-list-arrow {
  color: var(--text-muted); font-size: 1rem; transition: all 0.3s; flex-shrink: 0;
}
.guide-list-card:hover .guide-list-arrow { color: var(--accent-primary); transform: translateX(4px); }

/* --- Guide Article --- */
.guide-article { padding: 8rem 0 4rem; }
.guide-article-header { margin-bottom: 3rem; }
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent-primary); }
.guide-article-meta { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.guide-article-header h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800; line-height: 1.2;
}

.guide-article-body {
  color: var(--text-secondary); line-height: 1.9; font-size: 1.02rem;
}
.guide-article-body h2 {
  color: var(--text-primary); font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem;
  padding-top: 1rem; border-top: 1px solid var(--border-color);
}
.guide-article-body h2:first-child { border-top: none; padding-top: 0; }
.guide-article-body h3 {
  color: var(--text-primary); font-size: 1.15rem; font-weight: 600;
  margin: 1.75rem 0 0.75rem;
}
.guide-article-body p { margin-bottom: 1rem; }
.guide-article-body ul, .guide-article-body ol {
  padding-left: 1.5rem; margin-bottom: 1rem;
}
.guide-article-body li { margin-bottom: 0.5rem; }
.guide-article-body a { font-weight: 500; }

.guide-intro p {
  font-size: 1.12rem; color: var(--text-primary); line-height: 1.8;
  border-left: 3px solid var(--accent-primary); padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.guide-callout {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem; border-radius: var(--radius-md);
  margin: 1.5rem 0;
}
.guide-callout > i { font-size: 1.1rem; margin-top: 0.15rem; }
.guide-callout strong { display: block; margin-bottom: 0.25rem; color: var(--text-primary); }
.guide-callout p { margin: 0; font-size: 0.92rem; }
.guide-callout-info {
  background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(59, 130, 246, 0.15);
}
.guide-callout-info > i { color: var(--info); }
.guide-callout-warning {
  background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.15);
}
.guide-callout-warning > i { color: var(--warning); }
.guide-callout-success {
  background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.15);
}
.guide-callout-success > i { color: var(--success); }

.guide-article-footer {
  margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-color);
}
.guide-share {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.guide-share span { color: var(--text-muted); font-size: 0.9rem; }
.share-btn {
  width: 38px; height: 38px; border-radius: 50%; background: var(--bg-card);
  border: 1px solid var(--border-color); display: flex; align-items: center;
  justify-content: center; color: var(--text-secondary); transition: all 0.2s;
}
.share-btn:hover {
  border-color: var(--accent-primary); color: var(--accent-primary);
  background: rgba(245, 158, 11, 0.05);
}
.guide-nav-links { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Glossaire --- */
.glossary-letters {
  display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center;
  margin-bottom: 1.5rem;
}
.letter-link {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border-color);
  color: var(--text-secondary); font-weight: 700; font-size: 0.9rem;
  transition: all 0.2s;
}
.letter-link:hover {
  border-color: var(--accent-primary); color: var(--accent-primary);
  background: rgba(245, 158, 11, 0.05);
}

.glossary-search {
  position: relative; margin-bottom: 2rem;
}
.glossary-search i {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--text-muted);
}
.glossary-search input {
  width: 100%; padding: 0.85rem 1rem 0.85rem 2.75rem;
  border-radius: var(--radius-md); border: 1px solid var(--border-color);
  background: var(--bg-card); color: var(--text-primary);
  font-size: 1rem; font-family: var(--font-primary); transition: border-color 0.2s;
}
.glossary-search input:focus { outline: none; border-color: var(--accent-primary); }

.glossary-letter { 
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--accent-primary); margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(245, 158, 11, 0.2);
}
.glossary-item {
  padding: 1rem 1.25rem; margin-bottom: 0.5rem;
  border-radius: var(--radius-sm); transition: background 0.2s;
}
.glossary-item:hover { background: rgba(245, 158, 11, 0.03); }
.glossary-term { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--text-primary); }
.glossary-def { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; }
.glossary-letter-group { margin-bottom: 2rem; }

/* --- Footer --- */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem; margin-top: 2rem; position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--accent-primary); color: var(--accent-primary);
}
.footer-links-group h4 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-primary); margin-bottom: 1rem; font-weight: 700;
}
.footer-links-group ul { list-style: none; }
.footer-links-group li { margin-bottom: 0.5rem; }
.footer-links-group a {
  color: var(--text-secondary); font-size: 0.9rem; transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--accent-primary); }
.footer-bottom {
  border-top: 1px solid var(--border-color); padding-top: 2rem; text-align: center;
}
.footer-bottom > p:first-child {
  color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.75rem;
}
.disclaimer {
  color: var(--text-muted); font-size: 0.78rem; max-width: 700px;
  margin: 0 auto; line-height: 1.6;
}
.disclaimer i { color: var(--accent-primary); margin-right: 0.25rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    flex-direction: column; background: var(--bg-secondary);
    padding: 5rem 2rem 2rem; gap: 0.25rem;
    border-left: 1px solid var(--border-color);
    transition: right 0.3s;
  }
  .nav-links.open { right: 0; }
  .nav-links a { display: block; width: 100%; }
  
  .hero { padding: 8rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }
  .section { padding: 3.5rem 0; }
  .exchange-cards-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; padding: 2rem; }
  .cta-decoration { display: none; }
  .cta-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tips-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.85rem; }
  .exchange-review-header { flex-direction: column; text-align: center; }
  .exchange-review-tags { justify-content: center; }
  .exchange-review-cta { flex-direction: column; text-align: center; }
  .guide-card { flex-direction: column; }
  .guide-list-card { flex-direction: column; align-items: flex-start; }
  .guide-list-arrow { display: none; }
  .page-hero { padding: 7rem 0 2rem; }
  .category-header { flex-wrap: wrap; }
  .category-count { margin-left: 0; }
  .guide-card-amber,
  .guide-card-violet,
  .guide-card-emerald { border-left-width: 3px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .trending-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RWA Page — Cyan Theme & Components
   ============================================ */

/* --- Cyan Theme --- */
[data-theme="cyan"] .section-accent-bar {
  background: linear-gradient(90deg, transparent, #06b6d4, #0891b2, transparent);
}
[data-theme="cyan"]::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 200px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
}
.badge-cyan { color: #22d3ee !important; }
.text-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.btn-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2); color: white;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}
.btn-cyan:hover {
  transform: translateY(-2px); color: white;
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.35);
}
.guide-card-cyan { border-left: 3px solid #06b6d4; }
.guide-card-cyan:hover { border-color: #06b6d4; box-shadow: 0 0 25px rgba(6, 182, 212, 0.12); }
.tag-cyan { color: #22d3ee; }

/* --- RWA Page Hero --- */
.page-hero-rwa {
  background: radial-gradient(ellipse at 50% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
}

/* --- RWA Timeline --- */
.rwa-timeline {
  display: flex; align-items: stretch; gap: 0;
  max-width: 900px; margin: 0 auto;
}
.timeline-item {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.3s;
}
.timeline-item:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.timeline-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.timeline-icon-old {
  background: rgba(239, 68, 68, 0.12); color: #ef4444;
}
.timeline-icon-new {
  background: rgba(6, 182, 212, 0.12); color: #06b6d4;
}
.timeline-item h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.75rem;
}
.timeline-item p {
  color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7;
  margin-bottom: 1rem;
}
.timeline-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-old {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.03em; padding: 0.25rem 0.7rem; border-radius: 50px;
  background: rgba(239, 68, 68, 0.1); color: #f87171;
}
.tag-new {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.03em; padding: 0.25rem 0.7rem; border-radius: 50px;
  background: rgba(6, 182, 212, 0.1); color: #22d3ee;
}

/* Timeline Arrow */
.timeline-arrow {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 0 1rem; gap: 0.5rem; flex-shrink: 0;
}
.timeline-arrow-line {
  width: 2px; flex: 1; min-height: 20px;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.3), rgba(6, 182, 212, 0.3));
}
.timeline-arrow-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: #06b6d4; font-size: 1rem;
  animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(6, 182, 212, 0); }
}

/* --- RWA Explainer Grid --- */
.rwa-explainer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.rwa-explainer-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.3s;
}
.rwa-explainer-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.rwa-explainer-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--rwa-color, #f59e0b) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--rwa-color, #f59e0b); margin-bottom: 1.25rem;
}
.rwa-explainer-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem;
}
.rwa-explainer-card p {
  color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 1rem;
}
.rwa-stat {
  padding-top: 0.75rem; border-top: 1px solid var(--border-color);
}
.rwa-stat-value {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  color: var(--accent-primary); display: block;
}
.rwa-stat-label {
  font-size: 0.78rem; color: var(--text-muted); display: block; margin-top: 0.15rem;
}

/* --- RWA Reasons Grid --- */
.rwa-reasons-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
}
.rwa-reason {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem; transition: all 0.3s;
}
.rwa-reason:hover {
  border-color: rgba(16, 185, 129, 0.3); transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.08);
}
.rwa-reason-number {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.75rem; line-height: 1;
}
.rwa-reason h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem;
}
.rwa-reason p {
  color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7;
}

/* --- RWA Exchange Spotlight --- */
.rwa-exchange-spotlight {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 2rem; position: relative;
  transition: all 0.3s;
}
.rwa-exchange-spotlight:hover {
  border-color: rgba(43, 106, 245, 0.3);
  box-shadow: 0 8px 40px rgba(43, 106, 245, 0.08);
}
.spotlight-alt:hover {
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: 0 8px 40px rgba(0, 212, 170, 0.08);
}
.spotlight-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: linear-gradient(135deg, #2b6af5, #1d4ed8);
  color: white; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 0.35rem 1rem; border-radius: 50px;
  box-shadow: 0 4px 12px rgba(43, 106, 245, 0.3);
}
.spotlight-badge-alt {
  background: linear-gradient(135deg, #00d4aa, #059669);
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}
.spotlight-header {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 2rem 2rem 0;
}
.spotlight-logo {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--spot-color, #2b6af5) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--spot-color, #2b6af5);
}
.spotlight-title h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
}
.spotlight-rating {
  display: flex; align-items: center; gap: 0.25rem;
  color: #f59e0b; font-size: 0.85rem; margin-top: 0.25rem;
}
.spotlight-rating span { color: var(--text-secondary); margin-left: 0.25rem; font-weight: 600; }
.spotlight-body { padding: 1.5rem 2rem; }
.spotlight-body > p {
  color: var(--text-secondary); line-height: 1.8; font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.spotlight-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem;
  margin-bottom: 1.5rem;
}
.spotlight-feature {
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.spotlight-feature > i {
  color: #10b981; font-size: 1rem; margin-top: 0.2rem; flex-shrink: 0;
}
.spotlight-feature strong {
  display: block; font-size: 0.92rem; margin-bottom: 0.2rem; color: var(--text-primary);
}
.spotlight-feature p {
  color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; margin: 0;
}
.spotlight-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 1.25rem; background: var(--bg-secondary); border-radius: var(--radius-md);
}
.spotlight-stat { text-align: center; }
.spotlight-stat-val {
  display: block; font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 800; color: var(--text-primary);
}
.spotlight-stat-lbl {
  display: block; font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.04em; margin-top: 0.2rem;
}
.spotlight-cta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.5rem 2rem; background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}
.spotlight-cta .btn-lg {
  padding: 0.85rem 2rem; font-size: 1rem;
}

/* --- RWA Projects Grid --- */
.rwa-projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem;
}
.rwa-project-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: all 0.3s;
}
.rwa-project-card:hover {
  border-color: rgba(244, 63, 94, 0.3); transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(244, 63, 94, 0.08);
}
.rwa-project-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.75rem;
}
.rwa-project-header h4 {
  font-size: 1.05rem; font-weight: 700;
}
.rwa-project-ticker {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  background: rgba(244, 63, 94, 0.1); color: #fb7185;
  padding: 0.2rem 0.7rem; border-radius: 50px;
}
.rwa-project-card p {
  color: var(--text-secondary); font-size: 0.88rem; line-height: 1.65;
  margin-bottom: 0.75rem;
}
.rwa-project-cat {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  background: rgba(245, 158, 11, 0.1); color: var(--accent-primary);
  padding: 0.2rem 0.7rem; border-radius: 50px;
}

/* --- RWA Homepage Preview --- */
.rwa-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  max-width: 800px; margin: 0 auto;
}
.rwa-preview-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.75rem;
  text-align: center; transition: all 0.3s;
}
.rwa-preview-card:hover {
  border-color: rgba(6, 182, 212, 0.3); transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.1);
}
.rwa-preview-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.12); color: #06b6d4;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 1rem;
}
.rwa-preview-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem;
}
.rwa-preview-card p {
  color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6;
}

/* --- RWA Responsive --- */
@media (max-width: 768px) {
  .rwa-timeline { flex-direction: column; gap: 0; }
  .timeline-arrow {
    flex-direction: row; padding: 1rem 0;
  }
  .timeline-arrow-line {
    width: auto; height: 2px; min-height: auto; min-width: 20px;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.3), rgba(6, 182, 212, 0.3));
  }
  .spotlight-header { flex-wrap: wrap; }
  .spotlight-features { grid-template-columns: 1fr; }
  .spotlight-stats-row { grid-template-columns: repeat(2, 1fr); }
  .spotlight-cta { flex-direction: column; text-align: center; }
  .rwa-preview-grid { grid-template-columns: 1fr; }
  .spotlight-badge { position: static; display: inline-block; margin: 1.25rem 0 0 2rem; }
}

@media (max-width: 480px) {
  .rwa-explainer-grid { grid-template-columns: 1fr; }
  .rwa-reasons-grid { grid-template-columns: 1fr; }
  .rwa-projects-grid { grid-template-columns: 1fr; }
}

/* --- Logo RWA Badge --- */
.logo-rwa {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.4rem;
  vertical-align: middle;
  position: relative;
  top: -2px;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
  animation: rwaBadgePulse 3s ease-in-out infinite;
}
@keyframes rwaBadgePulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3); }
  50% { box-shadow: 0 2px 16px rgba(6, 182, 212, 0.5); }
}

/* ============================================
   RWA Use Cases — Showcase Cards
   ============================================ */
.rwa-usecases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.rwa-usecase-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all 0.3s; position: relative;
}
.rwa-usecase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.rwa-usecase-visual {
  padding: 2rem 2rem 1rem; text-align: center;
}
.rwa-usecase-visual > i {
  font-size: 2.5rem; width: 72px; height: 72px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
}
.rwa-usecase-gold .rwa-usecase-visual > i {
  background: rgba(245, 158, 11, 0.12); color: #f59e0b;
}
.rwa-usecase-gold:hover { border-color: rgba(245, 158, 11, 0.35); }
.rwa-usecase-stocks .rwa-usecase-visual > i {
  background: rgba(139, 92, 246, 0.12); color: #8b5cf6;
}
.rwa-usecase-stocks:hover { border-color: rgba(139, 92, 246, 0.35); }
.rwa-usecase-tbills .rwa-usecase-visual > i {
  background: rgba(59, 130, 246, 0.12); color: #3b82f6;
}
.rwa-usecase-tbills:hover { border-color: rgba(59, 130, 246, 0.35); }
.rwa-usecase-oil .rwa-usecase-visual > i {
  background: rgba(234, 88, 12, 0.12); color: #ea580c;
}
.rwa-usecase-oil:hover { border-color: rgba(234, 88, 12, 0.35); }
.rwa-usecase-forex .rwa-usecase-visual > i {
  background: rgba(6, 182, 212, 0.12); color: #06b6d4;
}
.rwa-usecase-forex:hover { border-color: rgba(6, 182, 212, 0.35); }
.rwa-usecase-body { padding: 0 2rem 2rem; }
.rwa-usecase-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.2rem 0.7rem; border-radius: 50px;
  background: rgba(6, 182, 212, 0.1); color: #22d3ee;
  margin-bottom: 0.75rem;
}
.rwa-usecase-body h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
  line-height: 1.35; margin-bottom: 0.75rem;
}
.rwa-usecase-body > p {
  color: var(--text-secondary); font-size: 0.9rem; line-height: 1.75;
  margin-bottom: 1rem;
}
.rwa-usecase-compare {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1.25rem; padding: 1rem;
  background: var(--bg-secondary); border-radius: var(--radius-md);
}
.compare-old, .compare-new {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.85rem; line-height: 1.5;
}
.compare-old { color: var(--text-muted); }
.compare-old > i { color: #ef4444; flex-shrink: 0; margin-top: 0.15rem; }
.compare-new { color: var(--text-primary); }
.compare-new > i { color: #10b981; flex-shrink: 0; margin-top: 0.15rem; }

@media (max-width: 1024px) {
  .rwa-usecases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rwa-usecases-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .rwa-usecase-body h3 { font-size: 1.05rem; }
}
