/* ─────────────────────────────────────────────────────────────────────────────
   PrestigeListens — Landing Page Styles
───────────────────────────────────────────────────────────────────────────── */

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 80px;
  text-align: center;
}

/* ── Cyber-Luminous Moving Glow Animations ─────────────────────────────────── */
@keyframes movingGlowAura {
  0% {
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.35), 0 0 50px rgba(168, 85, 247, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(56, 189, 248, 0.5);
  }
  33% {
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.45), 0 0 65px rgba(236, 72, 153, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(168, 85, 247, 0.65);
  }
  66% {
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4), 0 0 60px rgba(56, 189, 248, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(236, 72, 153, 0.55);
  }
  100% {
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.35), 0 0 50px rgba(168, 85, 247, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(56, 189, 248, 0.5);
  }
}

@keyframes conicSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fluidGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes buttonGlowPulse {
  0%, 100% {
    box-shadow: 0 0 22px rgba(147, 51, 234, 0.5), 0 0 45px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 38px rgba(168, 85, 247, 0.8), 0 0 65px rgba(236, 72, 153, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }
}

@keyframes textShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes beaconRipple {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(244, 63, 94, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0);
  }
}

@keyframes arrowPhoton {
  0%, 100% {
    color: var(--accent-purple);
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(168, 85, 247, 0.4));
  }
  50% {
    color: var(--accent-cyan);
    transform: scale(1.25) translateX(3px);
    filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.8));
  }
}

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

/* ── Holographic Cyber-Pill Hero Badge ─────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 9999px;
  position: relative;
  background: rgba(18, 14, 34, 0.85);
  border: 1px solid rgba(244, 63, 94, 0.45);
  box-shadow: 0 0 25px rgba(244, 63, 94, 0.35), 0 0 50px rgba(168, 85, 247, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: movingGlowAura 6s ease-in-out infinite;
}

.hero-badge .live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f43f5e;
  animation: beaconRipple 1.8s infinite;
  flex-shrink: 0;
}

.hero-badge-text {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #ffffff 0%, #cbd5e1 25%, #f43f5e 50%, #c084fc 75%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 4s linear infinite;
}

.hero-badge:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(244, 63, 94, 0.6), 0 0 75px rgba(168, 85, 247, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text-primary); }

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 35%, #ec4899 70%, #3b82f6 100%) !important;
  background-size: 260% 260% !important;
  animation: fluidGradient 4s ease infinite, buttonGlowPulse 3s ease-in-out infinite !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
  border-radius: 9999px !important;
  padding: 16px 36px !important;
  letter-spacing: 0.02em !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.65), 0 8px 30px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  position: relative !important;
  overflow: hidden !important;
}

.hero-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 0 50px rgba(168, 85, 247, 1), 0 0 85px rgba(59, 130, 246, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
}

.hero-cta .btn-ghost {
  background: linear-gradient(135deg, rgba(20, 26, 56, 0.88) 0%, rgba(12, 17, 40, 0.94) 100%) !important;
  color: #f1f5f9 !important;
  border: 1px solid rgba(168, 85, 247, 0.55) !important;
  border-radius: 9999px !important;
  padding: 16px 34px !important;
  font-size: 1.02rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.3), 0 6px 22px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.hero-cta .btn-ghost:hover {
  background: linear-gradient(135deg, rgba(35, 45, 95, 0.94) 0%, rgba(22, 30, 70, 0.96) 100%) !important;
  color: #ffffff !important;
  border-color: #38bdf8 !important;
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.65), 0 0 70px rgba(168, 85, 247, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* ── Universal Hero Mode Switcher Pills ──────────────────────────────────── */
.hero-preview-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-mode-btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px 26px !important;
  border-radius: 9999px !important;
  background: rgba(16, 20, 42, 0.88) !important;
  border: 1px solid rgba(168, 85, 247, 0.45) !important;
  color: #f1f5f9 !important;
  font-family: var(--font-main) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.3), 0 4px 18px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  user-select: none !important;
  position: relative !important;
}

.hero-mode-btn:hover {
  background: rgba(30, 38, 76, 0.95) !important;
  color: #ffffff !important;
  border-color: #38bdf8 !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.6), 0 8px 25px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.hero-mode-btn.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.85) 0%, rgba(168, 85, 247, 0.95) 50%, rgba(236, 72, 153, 0.85) 100%) !important;
  background-size: 200% 200% !important;
  animation: fluidGradient 4s ease infinite !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.95), 0 0 70px rgba(147, 51, 234, 0.6), 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  transform: translateY(-3px) scale(1.05) !important;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8) !important;
}

.hero-mode-btn.active span,
.hero-mode-btn.active::first-letter {
  animation: floatIcon 2.5s ease-in-out infinite !important;
}

/* ── Hero Preview Card ──────────────────────────────────────────────────────── */
/* ── Universal Industry Showcase Section ─────────────────────────────────── */
.usecases-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(79, 142, 247, 0.08) 0%, transparent 70%);
}

.usecases-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 36px auto 48px auto;
  max-width: 980px;
}

.usecase-tab-btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  outline: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px 24px !important;
  background: rgba(18, 22, 45, 0.85) !important;
  border: 1px solid rgba(168, 85, 247, 0.55) !important;
  border-radius: 9999px !important;
  color: #f1f5f9 !important;
  font-family: var(--font-main) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.38), 0 4px 18px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  user-select: none !important;
}

.usecase-tab-btn:hover {
  color: #ffffff !important;
  background: rgba(32, 40, 80, 0.95) !important;
  border-color: #c084fc !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.7), 0 8px 25px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.usecase-tab-btn.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.7) 0%, rgba(168, 85, 247, 0.85) 100%) !important;
  border-color: #e9d5ff !important;
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.9), 0 0 65px rgba(147, 51, 234, 0.55), 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-2px) scale(1.03) !important;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.7) !important;
}

.usecase-tab-btn .tab-icon {
  font-size: 1.15rem;
}

.usecase-display {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px !important;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 65%), rgba(13, 18, 38, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 45px rgba(124, 58, 237, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  padding: 36px !important;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  transition: all 0.35s ease;
}

.usecase-display::before {
  display: none !important;
  content: none !important;
}

.usecase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.usecase-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.usecase-industry-tag {
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-executive { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.tag-stocks { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }
.tag-media { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.tag-politics { background: rgba(244, 63, 94, 0.15); color: #f43f5e; border: 1px solid rgba(244, 63, 94, 0.3); }
.tag-podcast { background: rgba(157, 111, 254, 0.15); color: #c4b5fd; border: 1px solid rgba(157, 111, 254, 0.3); }
.tag-tech { background: rgba(34, 211, 238, 0.15); color: #22d3ee; border: 1px solid rgba(34, 211, 238, 0.3); }
.tag-legal { background: rgba(251, 191, 36, 0.15); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.3); }

.usecase-source-title {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.usecase-grid-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 850px) {
  .usecase-grid-body { grid-template-columns: 1fr; }
}

.usecase-gauge-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.gauge-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}

.custom-gauge-bar {
  position: relative;
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  margin: 14px 0 10px 0;
}

.custom-gauge-fill {
  height: 100%;
  border-radius: 9999px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gauge-endpoints {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.signal-callout-box {
  margin-top: 20px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-callout-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.signal-callout-value {
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.usecase-transcript-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usecase-quote {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid #4f8ef7;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.usecase-quote:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.usecase-quote.accent-green { border-left-color: #10b981; }
.usecase-quote.accent-red { border-left-color: #f43f5e; }
.usecase-quote.accent-purple { border-left-color: #9d6ffe; }
.usecase-quote.accent-amber { border-left-color: #fbbf24; }
.usecase-quote.accent-cyan { border-left-color: #22d3ee; }

.usecase-ai-insight {
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.1) 0%, rgba(157, 111, 254, 0.12) 100%);
  border: 1px solid rgba(157, 111, 254, 0.25);
  font-size: 0.88rem;
  line-height: 1.5;
  color: #e0e7ff;
}

.usecase-ai-insight strong {
  color: #ffffff;
}

.usecase-footer-action {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}


.hero-preview {
  position: relative !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 34px 38px 30px !important;
  border-radius: 24px !important;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 65%), rgba(13, 18, 38, 0.82) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 45px rgba(124, 58, 237, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  overflow: hidden !important;
  text-align: left !important;
}

.hero-preview::before {
  display: none !important;
  content: none !important;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.preview-gauge-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mini-gauge-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.mini-gauge {
  flex: 1;
  position: relative;
  height: 10px;
}

.mini-gauge-track {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
  display: flex;
}

.mini-gauge-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.signal-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.signal-label.dump { color: var(--hawkish); }
.signal-label.pump { color: var(--dovish); }

.preview-score {
  text-align: center;
}
.score-value {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-mono);
  letter-spacing: -0.04em;
  line-height: 1;
}
.score-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.preview-signal { text-align: center; }
.signal-badge {
  font-size: 1.1rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: var(--radius-md);
  letter-spacing: 0.05em;
}
.signal-badge.pump {
  background: rgba(16,185,129,0.15);
  color: var(--dovish);
  border: 1px solid rgba(16,185,129,0.3);
}
.signal-badge.dump {
  background: rgba(239,68,68,0.15);
  color: var(--hawkish);
  border: 1px solid rgba(239,68,68,0.3);
}
.signal-badge.watch {
  background: rgba(245,158,11,0.15);
  color: var(--neutral);
  border: 1px solid rgba(245,158,11,0.3);
}
.signal-strength {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Transcript Preview ─────────────────────────────────────────────────────── */
.preview-transcript {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.transcript-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.5;
}
.transcript-line.dovish { color: rgba(200,250,220,0.85); }
.transcript-line.hawkish { color: rgba(255,200,200,0.85); }
.transcript-line.neutral { color: var(--text-secondary); }

.line-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.dovish-dot { background: var(--dovish); box-shadow: 0 0 8px var(--dovish-glow); }
.hawkish-dot { background: var(--hawkish); box-shadow: 0 0 8px var(--hawkish-glow); }
.neutral-dot { background: var(--neutral); }

/* ── Preview Summary Bar ────────────────────────────────────────────────────── */
.preview-summary {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.summary-stat {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
}
.stat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-mono);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}
.summary-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.dovish-text { color: var(--dovish); }
.hawkish-text { color: var(--hawkish); }
.neutral-text { color: var(--neutral); }

/* ── Stats Section ──────────────────────────────────────────────────────────── */
.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-mono);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Section Header ─────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.3);
  color: #a78bfa;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; max-width: 500px; margin: 0 auto; }

/* ── Features Grid ──────────────────────────────────────────────────────────── */
.features-section { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 32px;
  transition: var(--transition);
  background: var(--gradient-card);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(139,92,246,0.4));
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p { font-size: 0.9rem; line-height: 1.6; }

/* ── How It Works ───────────────────────────────────────────────────────────── */
.how-section { padding: 100px 0; }
.steps-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-item {
  flex: 1 1 180px;
  min-width: 175px;
  max-width: 220px;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px;
  background: rgba(13, 18, 38, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-item:hover {
  background: rgba(22, 29, 58, 0.85);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.15);
}
.step-num {
  display: none !important;
}
.step-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.step-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 10px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: auto;
}
.step-arrow {
  color: var(--text-muted);
  font-size: 1.25rem;
  align-self: center;
  margin-top: -15px;
  flex-shrink: 0;
}

/* ── Pricing (Even Bottom Buttons & Moving Glow Laser Borders) ──────────────── */
.pricing-preview-section { padding: 100px 0; }
.pricing-grid, .pricing-full-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  align-items: stretch !important;
  gap: 28px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.pricing-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  justify-content: flex-start !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 26px !important;
  padding: 42px 30px 36px !important;
  background: rgba(10, 15, 34, 0.94) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 1 !important;
}

/* Orbiting Laser Border Beam on ALL Pricing Cards */
.pricing-card::before {
  content: '' !important;
  position: absolute !important;
  top: -100% !important;
  left: -100% !important;
  width: 300% !important;
  height: 300% !important;
  animation: laserConicSpin 4s linear infinite !important;
  z-index: -2 !important;
}

/* Card 1: 7-Day Free Trial Laser & Living Aura */
.pricing-card:nth-of-type(1)::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 50deg,
    #00f0ff 100deg,
    #3b82f6 180deg,
    #6366f1 260deg,
    transparent 320deg,
    transparent 360deg
  ) !important;
  animation: laserConicSpin 4.5s linear infinite !important;
}

.pricing-card:nth-of-type(1) {
  animation: livingAuraCyan 6s ease-in-out infinite !important;
}

/* Card 2: Pro (Centerpiece) Laser & Living Aura */
.pricing-card:nth-of-type(2)::before,
.pricing-card.featured-plan::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 40deg,
    #00f0ff 90deg,
    #a855f7 160deg,
    #ec4899 230deg,
    #f59e0b 290deg,
    transparent 330deg,
    transparent 360deg
  ) !important;
  animation: laserConicSpin 3.5s linear infinite !important;
}

.pricing-card:nth-of-type(2),
.pricing-card.featured-plan {
  animation: livingAuraRainbow 4.5s ease-in-out infinite !important;
  transform: scale(1.02);
}

/* Card 3: Pro Plus Laser & Living Aura */
.pricing-card:nth-of-type(3)::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 50deg,
    #a855f7 100deg,
    #ec4899 180deg,
    #8b5cf6 260deg,
    transparent 320deg,
    transparent 360deg
  ) !important;
  animation: laserConicSpin 4.5s linear infinite !important;
}

.pricing-card:nth-of-type(3) {
  animation: livingAuraPurple 6s ease-in-out infinite !important;
}

.pricing-card::after {
  content: '' !important;
  position: absolute !important;
  inset: 1.5px !important;
  background: radial-gradient(circle at 50% 0%, rgba(30, 42, 92, 0.45) 0%, rgba(8, 12, 28, 0.97) 70%) !important;
  border-radius: 24.5px !important;
  z-index: -1 !important;
}

.pricing-card > * {
  position: relative !important;
  z-index: 2 !important;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
}

.plan-badge {
  position: absolute !important;
  top: -14px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 22px !important;
  border-radius: 9999px !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #0284c7 0%, #7c3aed 50%, #ec4899 100%) !important;
  background-size: 200% 200% !important;
  animation: plasmaFlow 3s ease infinite !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.7), 0 0 0 3px #070b19 !important;
}

.plan-name {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 12px !important;
}

.plan-price {
  font-size: 3.6rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.05em !important;
  line-height: 1 !important;
  margin-bottom: 18px !important;
  color: #ffffff !important;
}

.plan-price span {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #94a3b8 !important;
}

.plan-features {
  flex: 1 1 auto !important;
  margin: 0 0 32px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 13px !important;
  list-style: none !important;
  padding: 0 !important;
}

.plan-features li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  color: #cbd5e1 !important;
}

.plan-features li strong {
  color: #ffffff !important;
}

/* PIN ALL PRICING BUTTONS TO EXACT SAME BOTTOM BASELINE */
.pricing-card .btn,
.pricing-card > a.btn,
.pricing-card > button.btn {
  margin-top: auto !important;
  width: 100% !important;
  align-self: stretch !important;
  flex-shrink: 0 !important;
  height: 52px !important;
  border-radius: 9999px !important;
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
}

.pricing-card .btn::after,
.pricing-card > a.btn::after,
.pricing-card > button.btn::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -140% !important;
  width: 60% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%) !important;
  transform: skewX(-25deg) !important;
  animation: gleamPass 4s ease-in-out infinite !important;
}

/* Card 1 Button: Cyber Glass Button */
.pricing-card:nth-of-type(1) .btn {
  background: rgba(14, 22, 50, 0.9) !important;
  color: #f1f5f9 !important;
  border: 1px solid rgba(56, 189, 248, 0.5) !important;
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.pricing-card:nth-of-type(1) .btn:hover {
  background: rgba(22, 34, 78, 0.95) !important;
  border-color: #38bdf8 !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.025) !important;
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

/* Card 2 Button: Liquid Plasma Centerpiece */
.pricing-card:nth-of-type(2) .btn,
.pricing-card.featured-plan .btn {
  background: linear-gradient(135deg, #0284c7 0%, #6366f1 30%, #a855f7 65%, #ec4899 100%) !important;
  background-size: 250% 250% !important;
  animation: plasmaFlow 4s ease infinite !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.55) !important;
}

.pricing-card:nth-of-type(2) .btn:hover,
.pricing-card.featured-plan .btn:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 0 55px rgba(168, 85, 247, 1), 0 0 85px rgba(2, 132, 199, 0.7) !important;
}

/* Card 3 Button: Royal Violet Glass Button */
.pricing-card:nth-of-type(3) .btn {
  background: rgba(20, 16, 46, 0.9) !important;
  color: #f1f5f9 !important;
  border: 1px solid rgba(168, 85, 247, 0.5) !important;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.pricing-card:nth-of-type(3) .btn:hover {
  background: rgba(34, 24, 76, 0.95) !important;
  border-color: #c084fc !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.025) !important;
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

/* ── CTA Section ────────────────────────────────────────────────────────────── */
.cta-section { padding: 100px 0; }
.cta-card {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.1), rgba(6,182,212,0.06));
}
.cta-card h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-card p { font-size: 1.1rem; margin-bottom: 36px; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand {
  max-width: 320px;
  flex-shrink: 0;
}
.footer-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  width: fit-content;
}
.footer-trust-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dovish);
  box-shadow: 0 0 8px var(--dovish);
  flex-shrink: 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 36px;
  flex: 1;
  min-width: 0;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--text-primary);
}
/* ── Futuristic Global Grid Telemetry Console ────────────────────────────── */
.network-telemetry-console {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  margin-top: 14px !important;
  border-radius: 10px !important;
  background: radial-gradient(ellipse at 10% 50%, rgba(16, 185, 129, 0.12) 0%, rgba(6, 10, 24, 0.92) 80%) !important;
  border: 1px solid rgba(16, 185, 129, 0.35) !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.16), 0 4px 16px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  max-width: 280px !important;
  transition: all 0.3s ease !important;
  cursor: default !important;
}

.network-telemetry-console:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(16, 185, 129, 0.65) !important;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.35), 0 6px 22px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.telemetry-radar-beacon {
  position: relative !important;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.radar-sweep-ring {
  position: absolute !important;
  inset: -2px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(16, 185, 129, 0.75) !important;
  animation: beaconRipple 2s infinite !important;
}

.radar-ping-blip {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #10b981 !important;
  box-shadow: 0 0 12px #10b981, 0 0 22px rgba(16, 185, 129, 0.8) !important;
}

.telemetry-data-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  min-width: 0 !important;
}

.telemetry-headline {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}

.telemetry-node-title {
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  font-family: monospace !important;
}

.telemetry-status-tag {
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  color: #34d399 !important;
  text-transform: uppercase !important;
  font-family: monospace !important;
  text-shadow: 0 0 8px rgba(52, 211, 153, 0.6) !important;
}

.telemetry-metrics {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 0.64rem !important;
  color: #64748b !important;
  font-family: monospace !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
}

.metric-item {
  color: #38bdf8 !important;
}

.metric-sep {
  color: rgba(255, 255, 255, 0.2) !important;
}

/* ── Footer Legal & Regulatory Disclaimer Box ──────────────────────────────── */
.footer-disclaimer-box {
  margin: 36px 0 28px;
  padding: 24px 28px;
  background: rgba(6, 10, 24, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-disclaimer-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-purple);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-disclaimer-text {
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.footer-disclaimer-text strong {
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--accent-purple);
}
.footer-bottom-links .divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
}

/* ── Legal Page Styles ─────────────────────────────────────────────────────── */
.legal-page {
  padding: 120px 0 80px;
}
.legal-header {
  margin-bottom: 40px;
  text-align: center;
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(157, 111, 254, 0.12);
  border: 1px solid rgba(157, 111, 254, 0.3);
  color: var(--accent-purple);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legal-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 12px;
  flex-wrap: wrap;
}
.legal-nav-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px;
  background: rgba(10, 15, 30, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  margin-bottom: 40px;
  scrollbar-width: none;
}
.legal-nav-bar::-webkit-scrollbar {
  display: none;
}
.legal-nav-btn {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legal-nav-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.legal-nav-btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(79, 142, 247, 0.25), rgba(157, 111, 254, 0.35));
  border-color: rgba(157, 111, 254, 0.5);
  box-shadow: 0 0 20px rgba(157, 111, 254, 0.25);
}
.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
  margin-bottom: 30px;
}
.legal-section {
  display: none;
}
.legal-section.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.legal-section h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.legal-section h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.legal-section p, .legal-section li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal-section ul, .legal-section ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.legal-callout {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  border-left: 4px solid var(--accent-purple);
  background: rgba(157, 111, 254, 0.08);
}
.legal-callout.warning {
  border-left-color: var(--accent-red);
  background: rgba(244, 63, 94, 0.08);
}
.legal-callout.info {
  border-left-color: var(--accent-blue);
  background: rgba(79, 142, 247, 0.08);
}
.legal-callout.success {
  border-left-color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.08);
}
.legal-callout-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.88rem;
}
.legal-table th, .legal-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}
.legal-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-weight: 600;
}
.legal-table td {
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .footer-row { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .preview-gauge-row { flex-direction: column; }
  .legal-card { padding: 24px; }
}
