/* client/css/main.css - Core Design System for HumanOrNot.co.uk */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;800&family=Outfit:wght@400;600;700;900&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg-primary: #070a12;
  --bg-secondary: #0d1322;
  --bg-card: rgba(16, 24, 43, 0.75);
  --bg-glass: rgba(20, 31, 56, 0.45);
  --bg-glass-hover: rgba(28, 44, 78, 0.65);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 255, 163, 0.35);
  --border-cyan: rgba(0, 229, 255, 0.35);
  
  --neon-emerald: #00ffa3;
  --neon-emerald-glow: rgba(0, 255, 163, 0.25);
  --neon-cyan: #00e5ff;
  --neon-cyan-glow: rgba(0, 229, 255, 0.25);
  --neon-pink: #ff007a;
  --neon-pink-glow: rgba(255, 0, 122, 0.3);
  --neon-amber: #ffb800;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6), 0 0 1px 1px var(--border-subtle);
  --shadow-neon: 0 0 25px var(--neon-emerald-glow);
  --shadow-cyan: 0 0 25px var(--neon-cyan-glow);
  --shadow-pink: 0 0 25px var(--neon-pink-glow);
  
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* Cybernetic subtle grid background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 10%, rgba(0, 229, 255, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 0, 122, 0.06) 0%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  background-position: center top, center bottom, 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
}

/* App container */
.app-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem 2rem;
}

/* Navigation & Header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
}

.logo-badge-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--neon-emerald), var(--neon-cyan));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow-neon);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.domain-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  background: rgba(0, 255, 163, 0.15);
  border: 1px solid var(--neon-emerald);
  color: var(--neon-emerald);
  border-radius: 999px;
  text-transform: lowercase;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stats-ticker-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.status-dot-live {
  width: 8px;
  height: 8px;
  background-color: var(--neon-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-emerald);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 14px var(--neon-emerald); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.header-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.header-btn:hover {
  background: var(--bg-glass-hover);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: translateY(-1px);
}

.player-rank-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 255, 163, 0.1));
  border: 1px solid var(--border-cyan);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon-cyan);
}

/* Main Views Container */
.views-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.view-section {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.view-section.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

/* LOBBY / HOME VIEW */
.hero-banner {
  text-align: center;
  margin: 1.5rem auto 2.5rem;
  max-width: 760px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 163, 0.08);
  border: 1px solid rgba(0, 255, 163, 0.25);
  color: var(--neon-emerald);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 30%, var(--neon-cyan) 80%, var(--neon-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Daily Challenge Card */
.daily-challenge-card {
  background: linear-gradient(135deg, rgba(16, 24, 43, 0.9), rgba(28, 44, 78, 0.4));
  border: 1px solid rgba(255, 184, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.daily-challenge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--neon-amber);
}

.daily-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.daily-icon {
  font-size: 1.8rem;
}

.daily-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neon-amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.daily-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.btn-daily-play {
  background: rgba(255, 184, 0, 0.15);
  border: 1px solid var(--neon-amber);
  color: var(--neon-amber);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-daily-play:hover {
  background: var(--neon-amber);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.4);
}

/* Game Modes Grid */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mode-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.mode-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-neon);
}

.mode-card.primary {
  background: linear-gradient(160deg, rgba(16, 24, 43, 0.9), rgba(13, 31, 38, 0.85));
  border-color: rgba(0, 255, 163, 0.4);
}

.mode-card.gauntlet {
  border-color: rgba(255, 0, 122, 0.25);
}

.mode-card.gauntlet:hover {
  border-color: var(--neon-pink);
  box-shadow: var(--shadow-pink);
}

.mode-card.friend {
  border-color: rgba(0, 229, 255, 0.25);
}

.mode-card.friend:hover {
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-cyan);
}

.mode-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.mode-card.primary .mode-badge {
  background: rgba(0, 255, 163, 0.15);
  color: var(--neon-emerald);
}

.mode-card.gauntlet .mode-badge {
  background: rgba(255, 0, 122, 0.15);
  color: var(--neon-pink);
}

.mode-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
}

.mode-card.primary .mode-icon-circle {
  background: rgba(0, 255, 163, 0.12);
  color: var(--neon-emerald);
}

.mode-card.gauntlet .mode-icon-circle {
  background: rgba(255, 0, 122, 0.12);
  color: var(--neon-pink);
}

.mode-card.friend .mode-icon-circle {
  background: rgba(0, 229, 255, 0.12);
  color: var(--neon-cyan);
}

.mode-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.mode-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-play-mode {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.mode-card.primary .btn-play-mode {
  background: var(--neon-emerald);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--neon-emerald-glow);
}

.mode-card.primary .btn-play-mode:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 255, 163, 0.45);
}

.mode-card.gauntlet .btn-play-mode {
  background: var(--neon-pink);
  color: #fff;
  box-shadow: 0 4px 20px var(--neon-pink-glow);
}

.mode-card.gauntlet .btn-play-mode:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 0, 122, 0.5);
}

.mode-card.friend .btn-play-mode {
  background: var(--neon-cyan);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--neon-cyan-glow);
}

.mode-card.friend .btn-play-mode:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 229, 255, 0.5);
}

.mode-card.lab .btn-play-mode {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.mode-card.lab .btn-play-mode:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}

/* Global Statistics Row */
.stats-banner-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

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

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-subtext {
  font-size: 0.75rem;
  color: var(--neon-emerald);
}

/* MATCHMAKING RADAR VIEW */
.matchmaking-radar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.radar-spinner-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 2rem;
}

.radar-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 163, 0.2);
}

.radar-circle.c2 {
  inset: 25px;
  border-color: rgba(0, 229, 255, 0.3);
}

.radar-circle.c3 {
  inset: 50px;
  border-color: rgba(0, 255, 163, 0.4);
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(0, 255, 163, 0.35) 0deg, transparent 90deg);
  animation: radar-sweep-anim 2s linear infinite;
}

@keyframes radar-sweep-anim {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--neon-emerald);
  animation: radar-pulse 1.5s ease-in-out infinite;
}

@keyframes radar-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.radar-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.radar-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.btn-cancel-queue {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-cancel-queue:hover {
  background: rgba(255, 0, 122, 0.15);
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}

/* Modals (Leaderboard, Friend Room, Info) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.active {
  display: flex;
}

.modal-window {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: #fff;
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

/* Leaderboard list in modal */
.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.leaderboard-table td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.rank-pill {
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.rank-1 { background: rgba(255, 184, 0, 0.2); color: var(--neon-amber); }
.rank-2 { background: rgba(0, 229, 255, 0.2); color: var(--neon-cyan); }
.rank-3 { background: rgba(0, 255, 163, 0.2); color: var(--neon-emerald); }

/* Footer */
.app-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--neon-emerald);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .app-container {
    padding: 0 0.85rem 1.5rem;
  }
  .app-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .stats-ticker-pill {
    display: none;
  }
  .hero-title {
    font-size: 2rem;
  }
  .daily-challenge-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .modes-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage Editorial & SEO Content Sections */
.editorial-wrap {
  margin-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 3.5rem;
}

.editorial-header-block {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.editorial-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.editorial-section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* How It Works 3-Step Grid */
.steps-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.step-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
  box-shadow: var(--shadow-cyan);
}

.step-num-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.step-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Deep Dive Feature Callout */
.deep-dive-card {
  background: linear-gradient(145deg, rgba(16, 24, 43, 0.85), rgba(13, 19, 34, 0.95));
  border: 1px solid rgba(0, 255, 163, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-neon);
}

.deep-dive-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.deep-dive-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Strategy Grid */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.strategy-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition-fast);
}

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

.strategy-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.strategy-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.strategy-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Homepage FAQ */
.home-faq-wrap {
  margin-bottom: 3.5rem;
}

.home-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  padding: 1.5rem;
  transition: border-color var(--transition-fast);
}

.home-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.home-faq-question {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home-faq-answer {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

