/* ===== VARIABLES (BLUE THEME) ===== */
:root {
  --accent: #00d4ff;
  --accent-dim: #00a3cc;
  --accent-glow: rgba(0, 212, 255, 0.4);
  --accent-glow-sm: rgba(0, 212, 255, 0.15);
  --blue: #0056ff;
  --purple: #7c3aed;
  --bg: #020204;
  --bg-card: #08080a;
  --bg-elevated: #0a0a0f;
  --fg: #f0f0f8;
  --fg-muted: #707080;
  --border: rgba(255, 255, 255, 0.05);
  --border-accent: rgba(0, 212, 255, 0.15);
  --radius: 14px;
  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

.light {
  --accent: #0088cc;
  --accent-dim: #006699;
  --accent-glow: rgba(0, 136, 204, 0.2);
  --bg: #f5f7fa;
  --bg-card: #ffffff;
  --bg-elevated: #eef1f6;
  --fg: #0d0d1a;
  --fg-muted: #5a5a7a;
  --border: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(0, 136, 204, 0.3);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input,
textarea {
  font-family: inherit;
}

/* ===== KEYFRAMES ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes floatR {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(16px); }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 0 40px rgba(0, 212, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6), 0 0 80px rgba(0, 212, 255, 0.25);
  }
}

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

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes dashboardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes imageFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.02) translateY(-4px); }
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.22; transform: scale(1); }
  50% { opacity: 0.28; transform: scale(1.05); }
}

/* ===== TRADING CANVAS BACKGROUND ===== */
#trading-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.25;
  transition: opacity 0.4s ease;
}

html.light #trading-canvas {
  opacity: 0.1;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 { transition-delay: 100ms; }
.d2 { transition-delay: 200ms; }
.d3 { transition-delay: 300ms; }
.d4 { transition-delay: 400ms; }
.d5 { transition-delay: 500ms; }
.d6 { transition-delay: 600ms; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.orb-green {
  background: radial-gradient(circle, rgba(0, 212, 255, 0.45) 0%, transparent 70%);
}

.orb-blue {
  background: radial-gradient(circle, rgba(0, 86, 255, 0.3) 0%, transparent 70%);
}

.orb-purple {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
}

.section-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-accent);
  background: rgba(0, 212, 255, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s infinite;
}

/* ===== BUTTONS ===== */
.btn-neon {
  background: var(--accent);
  color: #08080f;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--accent-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.btn-neon:hover {
  background: #33ddff;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.7);
}

.btn-outline {
  border: 1px solid var(--border-accent);
  color: var(--accent);
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--accent-glow-sm);
}

.btn-neon-sm {
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 10px;
  animation: none;
}

.btn-outline-sm {
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 10px;
}

/* ===== CARD ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px var(--accent-glow-sm);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 0 40px;
}

#navbar.scrolled {
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.light #navbar.scrolled {
  background: rgba(245, 247, 250, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  transition: height 0.3s ease;
}

#navbar .nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 85px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: height 0.3s ease;
  text-decoration: none;
}

#navbar .nav-logo .logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

#navbar .nav-logo .logo-wrapper .logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

#navbar .nav-logo .logo-wrapper .logo-text {
  display: flex;
  align-items: center;
  line-height: 1;
}

#navbar .nav-logo .logo-wrapper .logo-text .logo-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1;
}

#navbar .nav-logo .logo-wrapper .logo-text .logo-title span {
  color: var(--accent);
}

#navbar .nav-logo:hover .logo-wrapper .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

#navbar.scrolled .nav-inner { height: 65px; }
#navbar.scrolled .nav-logo { height: 65px; }
#navbar.scrolled .nav-logo .logo-wrapper { gap: 8px; }
#navbar.scrolled .nav-logo .logo-wrapper .logo-img { height: 32px; }
#navbar.scrolled .nav-logo .logo-wrapper .logo-text .logo-title { font-size: 1.25rem; }

/* LOGO DARK/LIGHT TOGGLE */
#navbar .nav-logo .logo-wrapper .logo-img-dark { display: block !important; }
#navbar .nav-logo .logo-wrapper .logo-img-light { display: none !important; }
#navbar .nav-logo .logo-wrapper .logo-text .logo-title { color: #ffffff !important; }
#navbar .nav-logo .logo-wrapper .logo-text .logo-title .highlight { color: #00d4ff !important; }

html.light #navbar .nav-logo .logo-wrapper .logo-img-dark { display: none !important; }
html.light #navbar .nav-logo .logo-wrapper .logo-img-light { display: block !important; }
html.light #navbar .nav-logo .logo-wrapper .logo-text .logo-title { color: #0b132b !important; }
html.light #navbar .nav-logo .logo-wrapper .logo-text .logo-title .highlight { color: #0066ff !important; }

#navbar .nav-logo .logo-wrapper .logo-img-dark,
#navbar .nav-logo .logo-wrapper .logo-img-light {
  height: 30px !important;
  width: auto !important;
  object-fit: contain !important;
  flex-shrink: 0;
}

/* MOBILE NAVBAR */
/* MOBILE NAVBAR */
@media (max-width: 900px) {
  #navbar { padding: 0 16px; }
  .nav-inner { height: 65px; }
  #navbar .nav-logo { display: flex !important; }
  #navbar .nav-logo .logo-wrapper { display: flex !important; align-items: center !important; gap: 8px !important; }
  
  /* 👇 Yahan change kiya hai 👇 */
  #navbar .nav-logo .logo-wrapper .logo-img {
    height: 32px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  #navbar .nav-logo .logo-wrapper .logo-img-dark { display: block !important; }
  #navbar .nav-logo .logo-wrapper .logo-img-light { display: none !important; }
  html.light #navbar .nav-logo .logo-wrapper .logo-img-dark { display: none !important; }
  html.light #navbar .nav-logo .logo-wrapper .logo-img-light { display: block !important; }
  /* 👆 Yahan change kiya hai 👆 */

  #navbar .nav-logo .logo-wrapper .logo-text { display: flex !important; }
  #navbar .nav-logo .logo-wrapper .logo-text .logo-title {
    font-size: 1.15rem !important;
    color: #ffffff !important;
  }
  html.light #navbar .nav-logo .logo-wrapper .logo-text .logo-title { color: #000000 !important; }
  
  .nav-links,
  .nav-actions .login-btn,
  .nav-actions .btn-neon,
  .nav-actions .nav-profile-link { display: none !important; }
  .nav-actions { display: flex !important; align-items: center !important; gap: 8px !important; }
  .mobile-menu-btn, .theme-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    border: 1px solid var(--border) !important;
  }
  #mobile-menu {
    display: none !important;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(8, 8, 15, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 1px solid var(--border) !important;
    z-index: 999;
  }
  #mobile-menu.open { display: block !important; }
  .mobile-links, .mobile-actions {
    padding: 16px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .mobile-actions { border-top: 1px solid var(--border) !important; margin-top: 8px !important; }
  .mobile-actions .btn-neon, .mobile-actions button { width: 100% !important; justify-content: center !important; }
}

@media (max-width: 480px) {
  #navbar { padding: 0 16px; }
  .nav-inner { height: 70px; padding: 0 4px; }
  #navbar .nav-logo .logo-wrapper .logo-img { height: 36px; }
  #navbar .nav-logo .logo-wrapper .logo-text .logo-title { font-size: 1.15rem; }
  #navbar .nav-logo .logo-wrapper { gap: 6px; }
  .theme-btn, .mobile-menu-btn { width: 38px; height: 38px; }
  #navbar.scrolled .nav-inner { height: 58px; }
  #navbar.scrolled .nav-logo .logo-wrapper .logo-img { height: 34px; }
  #navbar.scrolled .theme-btn, #navbar.scrolled .mobile-menu-btn { width: 32px; height: 32px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transition: left 0.3s ease;
}

.nav-link:hover { color: var(--fg); background: rgba(255, 255, 255, 0.06); }
.nav-link:hover::after { left: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: all 0.2s;
}

.theme-btn:hover { color: var(--accent); border-color: var(--border-accent); }
.theme-btn svg { width: 16px; height: 16px; }

.login-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
}

.login-btn:hover { color: var(--fg); }

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  flex-shrink: 0;
}

.mobile-menu-btn svg { width: 18px; height: 18px; }

#mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(8, 8, 15, 0.95);
  backdrop-filter: blur(20px);
  animation: slideDown 0.25s ease;
}

.light #mobile-menu { background: rgba(245, 247, 250, 0.97); }
#mobile-menu.open { display: block; }

.mobile-links {
  padding: 12px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-align: left;
  transition: all 0.2s;
  width: 100%;
}

.mobile-link:hover { color: var(--fg); background: rgba(255, 255, 255, 0.05); }

.mobile-actions {
  padding: 8px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

#navbar.scrolled .theme-btn { width: 36px; height: 36px; }
#navbar.scrolled .theme-btn svg { width: 16px; height: 16px; }
#navbar.scrolled .mobile-menu-btn { width: 36px; height: 36px; }
#navbar.scrolled .mobile-menu-btn svg { width: 18px; height: 18px; }

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
    transparent, transparent 2px,
    rgba(0, 212, 255, 0.008) 2px,
    rgba(0, 212, 255, 0.008) 4px);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--fg-muted);
  margin-bottom: 32px;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.avatars { display: flex; }

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-left: -10px;
}

.avatar:first-child { margin-left: 0; }

.social-proof-text {
  font-size: 15px;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

.social-proof-text strong {
  color: var(--fg);
  font-family: var(--font-body);
}

.hero-dashboard-image {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.dashboard-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 212, 255, 0.3), 0 0 100px rgba(0, 212, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.3);
  animation: dashboardFloat 6s ease-in-out infinite;
}

.dashboard-wrapper img { width: 100%; height: auto; display: block; }
.dashboard-wrapper:hover { animation-play-state: paused; }

@media (max-width: 768px) {
  #hero { padding-top: 130px; padding-bottom: 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-neon, .hero-cta .btn-outline { width: 100%; justify-content: center; }
  .dashboard-wrapper { border-radius: 12px; }
}

/* ===== STATS BAR ===== */
#stats-bar {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

.stat-item { text-align: center; }

.stat-big {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}

.stat-bar-label { font-size: 14px; font-weight: 600; color: var(--fg-muted); margin-top: 8px; }

.stat-line {
  width: 32px;
  height: 2px;
  background: rgba(0, 212, 255, 0.4);
  margin: 8px auto 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.stat-item:hover .stat-line { width: 60px; background: var(--accent); }
.stats-trust { text-align: center; margin-top: 40px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--fg-muted); }

/* ===== FEATURES ===== */
#features { padding: 60px 0; position: relative; overflow: hidden; }

.section-header { text-align: center; margin-bottom: 32px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc { font-size: 17px; color: var(--fg-muted); max-width: 560px; margin: 0 auto; line-height: 1.65; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card { padding: 28px; display: flex; flex-direction: column; gap: 16px; }

.feat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s;
}

.feat-icon svg { color: var(--accent); width: 22px; height: 22px; }

.feature-card:hover .feat-icon {
  background: rgba(0, 212, 255, 0.22);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.feat-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.feat-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

.feat-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 8px; padding-top: 16px;
  border-top: 1px solid var(--border);
}

.feat-bullets li { display: flex; align-items: center; gap: 10px; font-size: 13px; }

.check-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0, 212, 255, 0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.check-dot svg { width: 10px; height: 10px; color: var(--accent); }

/* ===== HOW IT WORKS ===== */
#how-it-works { padding: 60px 0; position: relative; overflow: hidden; background: var(--bg-elevated); }

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 900px; margin: 0 auto; position: relative;
}

@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; gap: 48px; } }

.connector-line {
  position: absolute; top: 52px;
  left: calc(16.67% + 40px); right: calc(16.67% + 40px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--purple));
}

.connector-dot {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.connector-dot.d1 { left: 25%; background: var(--accent); }
.connector-dot.d2 { left: 75%; background: var(--purple); animation-delay: 0.5s; }

@media (max-width: 700px) { .connector-line, .connector-dot { display: none; } }

.step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.step-icon-wrap { position: relative; margin-bottom: 24px; }

.step-circle {
  width: 104px; height: 104px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}

.step-circle svg { width: 40px; height: 40px; }
.step:hover .step-circle { border-color: var(--border-accent); transform: scale(1.05); }

.step-num {
  position: absolute; top: -4px; right: -4px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: var(--accent);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.step-sub { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 8px; }
.step-headline { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; max-width: 240px; }
.how-cta { text-align: center; margin-top: 64px; }
.how-cta p { font-size: 12px; color: var(--fg-muted); margin-top: 12px; }

/* ===== PRICING ===== */
#pricing { padding: 60px 0; position: relative; overflow: hidden; }

.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px; padding: 6px;
  border-radius: 999px; border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04); margin-bottom: 48px;
}

.toggle-btn { padding: 8px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: all 0.3s; color: var(--fg-muted); }
.toggle-btn.active { background: var(--accent); color: #08080f; }

.save-badge {
  font-size: 11px; background: rgba(0, 212, 255, 0.15); color: var(--accent);
  padding: 2px 8px; border-radius: 999px; font-weight: 700; margin-left: 6px;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto; align-items: center;
}

@media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; } }

.pricing-card {
  border-radius: 20px; padding: 28px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative; transition: all 0.3s;
}

.pricing-card:hover { border-color: rgba(0, 212, 255, 0.2); transform: translateY(-3px); }

.pricing-card.featured {
  border-color: rgba(0, 212, 255, 0.4);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.25), 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.1);
  padding: 36px 28px;
}

@media (min-width: 800px) { .pricing-card.featured { transform: scale(1.04); } }
@media (min-width: 800px) { .pricing-card.featured:hover { transform: scale(1.04) translateY(-3px); } }

.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #08080f;
  font-size: 11px; font-weight: 800; padding: 4px 16px;
  border-radius: 999px; white-space: nowrap;
}

.plan-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.plan-desc { font-size: 13px; color: var(--fg-muted); margin-bottom: 20px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-num { font-family: var(--font-mono); font-size: 42px; font-weight: 700; line-height: 1; transition: all 0.4s; }
.price-period { font-size: 14px; color: var(--fg-muted); }
.price-note { font-size: 12px; color: var(--accent); margin-bottom: 24px; min-height: 18px; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.plan-features li svg { color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.plan-features li span { color: rgba(240, 240, 248, 0.8); }
.light .plan-features li span { color: rgba(13, 13, 26, 0.8); }

/* ===== FAQ ===== */
#faq { padding: 60px 0; overflow: hidden; }

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto; }

.faq-item {
  border-radius: 14px; border: 1px solid var(--border);
  background: var(--bg-card); overflow: hidden; transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(0, 212, 255, 0.35); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 24px; text-align: left; font-weight: 600; font-size: 15px; transition: color 0.2s;
}

.faq-chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--fg-muted); transition: transform 0.35s, color 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }

.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s; opacity: 0; }
.faq-item.open .faq-body { max-height: 400px; opacity: 1; }
.faq-a { padding: 0 24px 20px; font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* ===== CONTACT SECTION ===== */
#contact { padding: 60px 0; position: relative; overflow: hidden; background: var(--bg-elevated); }

.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(16px, 3vw, 48px);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px;
  padding: clamp(16px, 4vw, 48px) clamp(12px, 3vw, 48px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  width: 100%; overflow: hidden;
}

.contact-info-side {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--border); padding-right: 48px;
}

.contact-info-card {
  display: flex; align-items: center; gap: 16px; padding: 20px;
  border-radius: 16px; background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border); margin-bottom: 16px; transition: all 0.3s ease;
}

.contact-info-card:hover {
  background: rgba(0, 212, 255, 0.03);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateX(4px);
}

.contact-info-card .icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.contact-form-side { padding-left: 0; }
.form-group { margin-bottom: 20px; }

.form-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--fg-muted); margin-bottom: 8px; font-family: var(--font-body);
}

.form-input {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--border); background: rgba(255, 255, 255, 0.03);
  color: var(--fg); font-size: 15px; font-family: var(--font-body);
  transition: all 0.2s ease; outline: none;
}

.light .form-input { background: rgba(0, 0, 0, 0.03); }

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.form-input.error { border-color: #ef4444; }
.form-input::placeholder { color: var(--fg-muted); }
.form-textarea { resize: none; min-height: 140px; }
.form-error { font-size: 12px; color: #ef4444; margin-top: 4px; }

.submit-btn {
  width: 100%; padding: 16px; font-size: 16px; font-weight: 700;
  background: var(--accent); color: #08080f; border-radius: 12px;
  transition: all 0.3s; box-shadow: 0 0 20px var(--accent-glow);
  font-family: var(--font-display); cursor: pointer; border: none;
}

.submit-btn:hover { background: #33ddff; transform: translateY(-2px); box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }

.success-state { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 40px 20px; text-align: center; }
.success-icon svg { width: 56px; height: 56px; color: var(--accent); }
.success-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.success-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

.reset-btn {
  padding: 12px 28px; border: 1px solid var(--border-accent);
  color: var(--accent); border-radius: 10px; font-size: 14px; font-weight: 600;
  transition: all 0.2s; background: transparent; cursor: pointer;
}

.reset-btn:hover { background: rgba(0, 212, 255, 0.08); }

@media (max-width: 900px) {
  .contact-wrapper { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .contact-info-side { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 32px; }
  .contact-form-side { padding-left: 0; }
}

@media (max-width: 768px) {
  .contact-wrapper { padding: 24px 16px; gap: 24px; }
  .contact-info-side { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  #contact-form > div:first-child { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 375px) {
  .contact-wrapper { padding: 20px 12px; }
  .contact-info-card a, .contact-info-card span, .contact-info-card div { word-break: break-word; overflow-wrap: anywhere; max-width: 100%; }
  .form-input, .form-textarea, .submit-btn { width: 100% !important; max-width: 100% !important; padding: 12px !important; font-size: 14px; }
  .contact-info-side h3 { font-size: 20px; }
  .contact-info-side > p { font-size: 14px; line-height: 1.5; }
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 40px 0 20px;
  margin-top: auto; flex-shrink: 0; position: relative; z-index: 10;
}

.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px; margin-bottom: 48px;
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { grid-column: 1; }
.footer-logo-title span { color: var(--accent); }

.footer-logo-wrapper { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.footer-logo-wrapper img { height: 28px; width: auto; object-fit: contain; flex-shrink: 0; }
.footer-logo-text { display: flex; align-items: center; justify-content: flex-start; margin-left: 0; line-height: 1; }
.footer-logo-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: white; letter-spacing: 0.02em; white-space: nowrap; text-align: left; }
.footer-logo-subtitle { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }

.footer-logo-img-dark { display: block !important; }
.footer-logo-img-light { display: none !important; }
.footer-logo-title { color: #ffffff !important; }
.footer-logo-title span { color: #00d4ff !important; }

html.light .footer-logo-img-dark { display: none !important; }
html.light .footer-logo-img-light { display: block !important; }
html.light .footer-logo-title { color: #0b132b !important; }
html.light .footer-logo-title span { color: #0066ff !important; }

.footer-logo-img-dark, .footer-logo-img-light { height: 28px !important; width: auto !important; object-fit: contain !important; flex-shrink: 0; }

@media (max-width: 768px) {
  .footer-logo-wrapper img { height: 40px; }
  .footer-logo-title { font-size: 1.25rem; }
  .footer-logo-subtitle { font-size: 0.9rem; }
}

.footer-tagline { font-size: 13px; color: var(--fg-muted); line-height: 1.6; max-width: 200px; margin-bottom: 24px; }
.social-links { display: flex; gap: 8px; }

.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: #ffffff !important; font-size: 18px; text-decoration: none; transition: all 0.3s ease;
}

.social-btn:hover { transform: translateY(-3px); opacity: 0.9; }
.social-btn.yt { background: #FF0000; }
.social-btn.tw { background: #000000; }
.social-btn.li { background: #0077B5; }

.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--fg); margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.footer-links li { display: flex; align-items: center; }
.footer-links a { font-size: 13px; color: var(--fg-muted); transition: color 0.2s; display: flex; align-items: center; }
.footer-links a:hover { color: var(--accent); }
.footer-links a i.fa-chevron-right { font-size: 10px; margin-right: 6px; color: var(--accent); flex-shrink: 0; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 12px; color: var(--fg-muted); margin: 0; }
.footer-bottom a { color: var(--accent); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

html.light footer { background: #ffffff !important; border-top: 1px solid rgba(0, 0, 0, 0.1) !important; }
html.light .footer-brand, html.light .footer-col h4, html.light .footer-tagline, html.light .footer-bottom p, html.light .footer-links a { color: #000000 !important; }
html.light .social-btn.tw { background: #e2e8f0; color: #000 !important; }
html.light .social-btn.tw i { color: #000 !important; }

/* ===== SMOOTH SCROLL FIX ===== */
#hero, #features, #pricing, #how-it-works, #faq, #contact { scroll-margin-top: 80px; }

@media (max-width: 768px) {
  #hero, #features, #pricing, #how-it-works, #faq, #contact { scroll-margin-top: 70px; }
}

/* ===== GLOW CURSOR ===== */
#fa-glow-cursor {
  position: fixed; top: 0; left: 0; width: 12px; height: 12px;
  background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--accent-glow), 0 0 30px rgba(0, 212, 255, 0.3);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s;
}

body.fa-cursor-hover #fa-glow-cursor {
  width: 40px; height: 40px;
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px var(--accent);
}

@media (max-width: 900px) { #fa-glow-cursor { display: none !important; } }

/* ===== SECTIONS TRANSPARENT ===== */
#features, #pricing, #contact { background: transparent !important; }
#stats-bar, #how-it-works, #faq { background: transparent !important; }

/* ===== GLASSMORPHISM CARDS ===== */
.card, .pricing-card, .contact-card, .stat-box, .faq-item, .step-circle, .hero-stats .stat-box {
  background: rgba(14, 14, 26, 0.55) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 212, 255, 0.12) !important;
}

html.light .card, html.light .pricing-card, html.light .contact-card,
html.light .stat-box, html.light .faq-item, html.light .step-circle, html.light .hero-stats .stat-box {
  background: rgba(255, 255, 255, 0.65) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* ===== IMAGE + CONTENT SECTIONS ===== */
.section-with-image { padding: 60px 0; position: relative; overflow: hidden; }
.section-with-image .container { position: relative; z-index: 2; padding: 0 24px; }

.image-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.image-content-grid .content-side { display: flex; flex-direction: column; gap: 24px; }
.image-content-grid .content-side .badge { align-self: flex-start; margin-bottom: 8px; }

.image-content-grid .content-side h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin: 0;
}

.image-content-grid .content-side .gradient-text { display: inline; }

.image-content-grid .content-side p {
  font-family: var(--font-body); font-size: 17px;
  color: var(--fg-muted); line-height: 1.65; margin: 0; max-width: 500px;
}

.image-content-grid .content-side ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.image-content-grid .content-side ul li { display: flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 15px; color: var(--fg); }
.image-content-grid .content-side ul li i { color: var(--accent); width: 20px; height: 20px; flex-shrink: 0; }
.image-content-grid .content-side .cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* IMAGE SIDE */
.image-content-grid .image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* IMAGE WRAPPER */
#market-analysis .image-wrapper,
#sniper-setups .image-wrapper,
#pro-updates .image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  background: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
  margin: 0;
  display: block;
  line-height: 0;
}

#market-analysis .image-wrapper:hover,
#sniper-setups .image-wrapper:hover,
#pro-updates .image-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--accent-glow);
}

/* IMAGES */
#market-analysis .image-wrapper img,
#sniper-setups .image-wrapper img,
#pro-updates .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  padding: 0;
  margin: 0;
  animation: imageFloat 8s ease-in-out infinite;
}

#market-analysis .image-wrapper:hover img,
#sniper-setups .image-wrapper:hover img,
#pro-updates .image-wrapper:hover img {
  animation-play-state: paused;
}

.section-with-image.reverse .image-content-grid { direction: rtl; }
.section-with-image.reverse .image-content-grid > * { direction: ltr; }

@media (max-width: 900px) {
  .image-content-grid { display: flex; flex-direction: column; gap: 24px; text-align: center; }
  .image-content-grid .content-side { order: 1; align-items: center; }
  .image-content-grid .image-side { order: 2; width: 100%; }
  .image-content-grid .content-side .badge { align-self: center; }
  .image-content-grid .content-side p { max-width: 100%; }
  .image-content-grid .content-side ul { align-items: center; }
  .image-content-grid .content-side .cta-group { justify-content: center; }
  .section-with-image.reverse .image-content-grid { direction: ltr; }

  #market-analysis .image-wrapper,
  #sniper-setups .image-wrapper,
  #pro-updates .image-wrapper {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
  }

  #market-analysis .image-wrapper img,
  #sniper-setups .image-wrapper img,
  #pro-updates .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: fill;
  }
}

@media (max-width: 480px) {
  .section-with-image { padding: 40px 0; }
  .image-content-grid { gap: 20px; }
  .image-content-grid .content-side h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .image-content-grid .content-side p { font-size: 14px; }

  #market-analysis .image-wrapper,
  #sniper-setups .image-wrapper,
  #pro-updates .image-wrapper {
    border-radius: 10px;
  }

  #market-analysis .image-wrapper img,
  #sniper-setups .image-wrapper img,
  #pro-updates .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: fill;
  }
}

/* ===== ENHANCED ORB ===== */
.orb-enhanced { animation: orbPulse 8s ease-in-out infinite; }

/* ===== DISCOVER SETUPS ===== */
#discover-setups .cards-wrapper {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}

@media (max-width: 768px) {
  #discover-setups .cards-wrapper {
    display: flex; flex-direction: column; gap: 16px;
    padding: 0 20px 20px; margin: 0; overflow-x: visible;
  }
  #discover-setups .cards-wrapper > * { flex: 0 0 100%; width: 100%; margin-bottom: 8px; }
}

/* ===== UNIVERSAL RESPONSIVE ===== */
img, video, svg, .card, .contact-wrapper, .pricing-card {
  max-width: 100%; height: auto; box-sizing: border-box;
}

/* ===== LIGHT MODE ===== */
html.light .gradient-text {
  background: linear-gradient(135deg, #0088cc 0%, #0056ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* ===== LEGAL PAGES LIGHT MODE ===== */
html.light .legal-hero {
  background: linear-gradient(180deg, rgba(245,247,250,0.8) 0%, rgba(245,247,250,0.95) 100%) !important;
  border-bottom: 1px solid rgba(0,0,0,0.1) !important;
}
html.light .legal-hero h1 { color: #0d0d1a !important; }
html.light .legal-card { background: rgba(255,255,255,0.9) !important; border: 1px solid rgba(0,0,0,0.08) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; }
html.light .legal-card h2, html.light .legal-card h3, html.light .legal-card h4 { color: #0d0d1a !important; }
html.light .legal-card p, html.light .legal-card li { color: #5a5a7a !important; }
html.light .legal-content { background: #f5f7fa !important; }
html.light .disclaimer-box { background: rgba(239,68,68,0.05) !important; border: 1px solid rgba(239,68,68,0.2) !important; }
html.light .disclaimer-box h3 { color: #dc2626 !important; }
html.light .disclaimer-box p { color: #5a5a7a !important; }
html.light .about-card { background: rgba(255,255,255,0.9) !important; border: 1px solid rgba(0,0,0,0.08) !important; }
html.light .about-card p { color: #5a5a7a !important; }
html.light .legal-hero .badge { background: rgba(0,136,204,0.1) !important; border-color: rgba(0,136,204,0.3) !important; color: #0088cc !important; }
html.light .legal-hero .badge .dot { background: #0088cc !important; }

/* ===== ABOUT PAGE ===== */
.about-hero.legal-hero {
  padding: 4rem 0 2rem; text-align: center;
  background: linear-gradient(180deg, rgba(10,10,26,0.8) 0%, rgba(10,10,26,0.95) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
html.light .about-hero.legal-hero {
  background: linear-gradient(180deg, rgba(245,247,250,0.9) 0%, rgba(245,247,250,0.98) 100%) !important;
  border-bottom-color: rgba(0,0,0,0.1) !important;
}

.about-card.legal-card {
  background: rgba(14,14,26,0.6); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 20px; padding: 2.5rem; backdrop-filter: blur(10px);
  margin-bottom: 3rem; transition: all 0.3s ease;
}
html.light .about-card.legal-card { background: rgba(255,255,255,0.9) !important; border-color: rgba(0,0,0,0.08) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; }

.text-primary { font-family: var(--font-body); font-size: 1.05rem; color: var(--fg); line-height: 1.9; margin-bottom: 1.5rem; }
.text-muted { font-family: var(--font-body); font-size: 1.05rem; color: var(--fg-muted); line-height: 1.9; margin: 0; }
html.light .text-primary { color: #0d0d1a !important; }
html.light .text-muted { color: #5a5a7a !important; }

.section-heading { text-align: center; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--fg); margin: 3rem 0 2rem; }
html.light .section-heading { color: #0d0d1a !important; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }

.feature-card { background: rgba(14,14,26,0.6); border: 1px solid rgba(0,212,255,0.15); border-radius: 16px; padding: 1.75rem; transition: transform 0.2s, border-color 0.2s; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--accent); }
html.light .feature-card { background: rgba(255,255,255,0.9) !important; border-color: rgba(0,0,0,0.08) !important; }
html.light .feature-card:hover { border-color: var(--accent) !important; }

.card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.icon-cyan { background: rgba(0,212,255,0.1); }
.icon-blue { background: rgba(0,86,255,0.1); }
.icon-purple { background: rgba(124,58,237,0.1); }
.icon-green { background: rgba(16,185,129,0.1); }
.icon-amber { background: rgba(245,158,11,0.1); }
.icon-red { background: rgba(239,68,68,0.1); }
.card-icon i { font-size: 1.25rem; }
.icon-cyan i { color: var(--accent); }
.icon-blue i { color: var(--blue); }
.icon-purple i { color: var(--purple); }
.icon-green i { color: #10b981; }
.icon-amber i { color: #f59e0b; }
.icon-red i { color: #ef4444; }

.feature-card h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--fg); margin-bottom: 0.75rem; font-weight: 600; }
.feature-card p { font-family: var(--font-body); font-size: 0.95rem; color: var(--fg-muted); line-height: 1.6; margin: 0; }
html.light .feature-card h4 { color: #0d0d1a !important; }
html.light .feature-card p { color: #5a5a7a !important; }

.text-center { text-align: center; }

.disclaimer-box { background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.25); border-radius: 16px; padding: 2rem; margin-bottom: 3rem; }
.disclaimer-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: #ef4444; margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
html.light .disclaimer-box { background: rgba(239,68,68,0.05) !important; border-color: rgba(239,68,68,0.2) !important; }

@media (max-width: 768px) {
  .about-hero.legal-hero { padding: 3rem 0 1.5rem !important; }
  .about-card.legal-card, .disclaimer-box, .feature-card { padding: 1.75rem !important; }
}