/* ============================================================
   CryptoBestExchanges — Web3 Trader Energy
   Theme: deep space dark + electric purple/cyan/pink gradients,
   glassmorphism cards, bold rank badges, animated accents.
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #050810;
  --bg-2: #0A0F1E;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-strong: rgba(255, 255, 255, 0.07);

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #FFFFFF;
  --text-muted: #B4B7C9;
  --text-dim: #6B7088;

  /* Electric accents */
  --purple: #A855F7;
  --purple-glow: rgba(168, 85, 247, 0.5);
  --cyan: #22D3EE;
  --cyan-glow: rgba(34, 211, 238, 0.45);
  --pink: #EC4899;
  --pink-glow: rgba(236, 72, 153, 0.45);

  /* Trading colors */
  --green: #4ADE80;
  --red: #F87171;
  --gold: #FBBF24;
  --silver: #CBD5E1;
  --bronze: #D97755;

  /* Effects */
  --grad-primary: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #22D3EE 100%);
  --grad-purple: linear-gradient(135deg, #A855F7, #EC4899);
  --grad-cyan: linear-gradient(135deg, #22D3EE, #A855F7);
  --grad-warm: linear-gradient(135deg, #FBBF24, #EC4899);

  --shadow-glow-purple: 0 0 40px rgba(168, 85, 247, 0.35);
  --shadow-glow-cyan: 0 0 40px rgba(34, 211, 238, 0.3);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.6);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1240px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;       /* offset for sticky header on anchor jumps */
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 1400px 700px at 50% -20%, rgba(168, 85, 247, 0.18), transparent 60%),
    radial-gradient(ellipse 900px 600px at 90% 30%, rgba(34, 211, 238, 0.10), transparent 65%),
    radial-gradient(ellipse 700px 400px at 10% 60%, rgba(236, 72, 153, 0.08), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: #67E8F9; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Modern geometric heading face */
h1, h2, h3, h4 {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.625rem, 3vw, 2.375rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-muted); }
strong { color: var(--text); font-weight: 600; }

/* Gradient text utility */
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: gradShift 6s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ----- Layout ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.center { text-align: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 16, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--text); }
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad-purple);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color .15s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  align-items: center; justify-content: center;
  color: var(--text);
}

/* ============================================================
   Buttons — gradient borders, glow on hover
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .2s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--grad-purple);
  color: #FFFFFF;
  box-shadow: 0 0 0 1px transparent, 0 12px 24px -8px rgba(168, 85, 247, 0.5);
}
.btn-primary:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--purple), 0 18px 32px -8px rgba(168, 85, 247, 0.7), 0 0 24px rgba(168, 85, 247, 0.3);
}
.btn-ghost {
  background: var(--bg-glass);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--bg-glass-strong);
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn-claim {
  background: linear-gradient(135deg, #FCD34D 0%, #EC4899 50%, #A855F7 100%);
  background-size: 200% 100%;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 0 0 1px transparent, 0 14px 28px -8px rgba(236, 72, 153, 0.5);
  animation: btnShift 5s ease infinite;
}
.btn-claim:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--pink), 0 20px 36px -8px rgba(236, 72, 153, 0.7), 0 0 30px rgba(168, 85, 247, 0.4);
}
@keyframes btnShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 64px 0 32px;
  text-align: center;
  position: relative;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-glass);
  border: 1px solid var(--border-strong);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}
.hero .eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  max-width: 900px;
  margin: 0 auto 14px;
}
.hero-sub {
  max-width: 680px;
  margin: 0 auto 26px;
  font-size: 1.08rem;
  color: var(--text-muted);
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-proof {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 6px; }
.hero-proof .check { color: var(--green); font-weight: 700; }

/* ============================================================
   Stats strip — big numbers, gradient values
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
}
.stat {
  background: var(--bg-2);
  padding: 28px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-primary);
  opacity: 0.6;
}
.stat-value {
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   Podium — top 3 ranked picks
   ============================================================ */
.podium {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: end;
}
.rank-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.rank-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, transparent 70%, var(--purple) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.rank-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-purple);
}
.rank-card.gold {
  background: linear-gradient(160deg, rgba(251, 191, 36, 0.08), rgba(168, 85, 247, 0.05));
  transform: translateY(-12px);
}
.rank-card.gold::before {
  background: linear-gradient(135deg, var(--gold), var(--purple), var(--pink));
}
.rank-card.silver::before {
  background: linear-gradient(135deg, var(--silver), var(--cyan));
}
.rank-card.bronze::before {
  background: linear-gradient(135deg, var(--bronze), var(--purple));
}
.rank-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #050810;
}
.gold .rank-badge {
  background: linear-gradient(135deg, #FCD34D, #F59E0B);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}
.silver .rank-badge {
  background: linear-gradient(135deg, #E2E8F0, #94A3B8);
  box-shadow: 0 0 25px rgba(203, 213, 225, 0.3);
}
.bronze .rank-badge {
  background: linear-gradient(135deg, #FB923C, #C2410C);
  box-shadow: 0 0 25px rgba(217, 119, 85, 0.4);
}
.rank-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #FFFFFF;
}
.rank-name {
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}
.rank-tag {
  font-size: 0.85rem;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 18px;
}
.rank-bonus-mega {
  margin: 4px 0 18px;
  padding: 18px 14px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(252, 211, 77, 0.1), rgba(236, 72, 153, 0.1));
  border: 1px solid rgba(252, 211, 77, 0.3);
  text-align: center;
}
.rank-bonus-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.rank-bonus-value {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  background: linear-gradient(135deg, #FCD34D, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.rank-bonus-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.rank-mini-stats {
  display: flex;
  gap: 12px;
  justify-content: space-around;
  padding: 12px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.rank-mini-stat { text-align: center; }
.rank-mini-stat-label {
  display: block;
  font-size: 0.66rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 3px;
}
.rank-mini-stat-value {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.rank-mini-stat-value.green { color: var(--green); }
.rank-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.rank-proof {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.rank-proof .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}
.hot-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #EC4899, #A855F7);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 0 16px rgba(236, 72, 153, 0.5);
}
.rank-stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.rank-stat-value {
  margin-top: 2px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.rank-stat-value.green { color: var(--green); }
.rank-card .btn { width: 100%; }

/* ============================================================
   Urgency strip — between hero and stats
   ============================================================ */
.urgency-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 24px;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 880px;
  margin: 0 auto;
}
.urgency-strip strong { color: var(--text); font-weight: 600; }
.urgency-strip .live-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 6px;
  animation: pulse 2s infinite;
  vertical-align: middle;
}
.urgency-strip .pink { color: var(--pink); font-weight: 700; }
.urgency-strip .gold { color: var(--gold); font-weight: 700; }

/* ============================================================
   Stack-the-top-3 conversion section
   ============================================================ */
.stack-cta {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1), rgba(34, 211, 238, 0.1));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.stack-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 300px at center top, rgba(252, 191, 36, 0.12), transparent 70%);
  pointer-events: none;
}
.stack-cta-content { position: relative; }
.stack-cta-content h2 {
  margin: 0 0 8px;
  font-size: 1.75rem;
}
.stack-cta-content p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}
.stack-cta-content .total {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #FCD34D, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stack-cta-buttons {
  display: flex;
  gap: 12px;
  position: relative;
}
.stack-mini-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--bg-glass);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all .18s var(--ease);
}
.stack-mini-btn:hover {
  border-color: var(--purple);
  color: var(--text);
  background: var(--bg-glass-strong);
  transform: translateY(-2px);
}
.stack-mini-btn .stack-mini-logo {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #FFFFFF;
}
.stack-mini-btn .stack-mini-bonus {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ============================================================
   Section heading
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Tier list — full ranking
   ============================================================ */
.tier-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tier-row {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 60px 1fr auto auto auto auto;
  gap: 24px;
  align-items: center;
  backdrop-filter: blur(14px);
  transition: all .2s var(--ease);
}
.tier-row:hover {
  border-color: var(--border-strong);
  background: var(--bg-glass-strong);
  transform: translateX(4px);
}
.tier-rank {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-dim);
  text-align: center;
}
.tier-rank.top {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tier-info { display: flex; align-items: center; gap: 14px; min-width: 0; }
.tier-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #FFFFFF;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.tier-name {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px;
}
.tier-name a { color: inherit; }
.tier-name a:hover { color: var(--cyan); }
.tier-tag {
  font-size: 0.82rem;
  color: var(--purple);
  font-weight: 500;
}
.tier-stat {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.tier-stat-label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.tier-pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.tier-bonus-pill {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(252, 191, 36, 0.15), rgba(236, 72, 153, 0.12));
  border: 1px solid rgba(252, 191, 36, 0.4);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.tier-row .btn-claim {
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* ============================================================
   Best-for category cards
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.cat-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(14px);
  transition: all .2s var(--ease);
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  border-color: var(--purple);
  background: var(--bg-glass-strong);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
}
.cat-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 10px;
}
.cat-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 16px;
}
.cat-winner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.cat-winner-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #FFFFFF;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.cat-winner-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.cat-winner-stat {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}
.cat-bonus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: rgba(252, 191, 36, 0.08);
  border: 1px solid rgba(252, 191, 36, 0.25);
  border-radius: var(--radius);
}
.cat-bonus-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cat-bonus-value {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}
.cat-card .btn { width: 100%; }

/* ============================================================
   Detail page card
   ============================================================ */
.detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
.summary-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: 92px;
  backdrop-filter: blur(20px);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row span:first-child { color: var(--text-muted); }
.summary-row span:last-child { color: var(--text); font-weight: 600; }
.summary-row .green { color: var(--green); }
.summary-row .pink { color: var(--pink); }
.summary-row .cyan { color: var(--cyan); }

.detail-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 14px 0 24px;
}
.detail-meta strong { color: var(--text); font-weight: 600; }

.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.proscons h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  margin: 0 0 12px;
}
.proscons ul { list-style: none; padding: 0; margin: 0; }
.proscons li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.pros li::before {
  content: "▲";
  position: absolute; left: 0;
  color: var(--green);
  font-size: 0.75em;
  top: 12px;
}
.cons li::before {
  content: "▼";
  position: absolute; left: 0;
  color: var(--red);
  font-size: 0.75em;
  top: 12px;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 24px;
}
.feature-tag {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-glass);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.kbd {
  font-family: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--cyan);
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--cyan); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all .2s var(--ease);
}
.faq-item[open] {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), 0 0 30px rgba(168, 85, 247, 0.15);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--cyan);
  font-weight: 300;
  transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ============================================================
   CTA banner — bold gradient
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(34, 211, 238, 0.08), rgba(236, 72, 153, 0.06));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(168, 85, 247, 0.2), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 12px; position: relative; }
.cta-banner p { max-width: 540px; margin: 0 auto 28px; position: relative; }
.cta-banner .btn { position: relative; }

/* ============================================================
   Long-form prose
   ============================================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 { margin-top: 1.5em; }
.prose h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  margin: 1.6em 0 0.4em;
}
.prose p, .prose ul, .prose ol {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.78;
}
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 0.4em; }
.prose a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.3);
  text-underline-offset: 3px;
}
.prose a:hover { text-decoration-color: var(--cyan); }
.prose strong { color: var(--text); }
.prose em { color: var(--purple); font-style: normal; font-weight: 600; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  margin-top: 80px;
  background: var(--bg-2);
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--cyan); }

.disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .nav-links.open li { padding: 14px 24px; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .podium { grid-template-columns: 1fr; }
  .rank-card.gold { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .proscons { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 22px; }
  .tier-row {
    grid-template-columns: 50px 1fr auto;
    gap: 14px;
  }
  .tier-row .hide-sm { display: none; }
  .stack-cta {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }
  .stack-cta-buttons { justify-content: center; flex-wrap: wrap; }
  .urgency-strip { gap: 12px; padding: 12px 18px; font-size: 0.82rem; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  h1 { font-size: 2rem; }
}
