/* ====================================================================
   Landing Page Styles - Training Alpha
   ==================================================================== */

/* ====================================================================
   1. CSS VARIABLES & RESET
   ==================================================================== */
/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark-bg: #121820;
  --dark-surface: #121820;
  --dark-surface-light: #1A2332;
  --dark-surface-medium: #242E3F;
  --primary: #3B82F6;
  --secondary: #10B981;
  --tertiary: #4ade80;
  --on-surface: #FFFFFF;
  --on-surface-variant: #CBD5E1;
  --outline: rgba(255, 255, 255, 0.06);
  --buy-color: #00E676;
  --sell-color: #FF1744;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: var(--dark-bg);
  color: var(--on-surface);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* ====================================================================
   2. LAYOUT & STRUCTURE
   ==================================================================== */
/* Landing Container - Overlays Flutter app */
#static-landing {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-bg);
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

#static-landing.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Decorative Background Elements */
.dotted-background {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.15; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
}

.ambient-gradient {
  position: absolute;
  top: -200px; right: -200px; width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 60%);
  pointer-events: none; z-index: 0;
}

.main-content { position: relative; z-index: 1; }

/* ====================================================================
   3. APP BAR
   ==================================================================== */
.app-bar {
  background: transparent; padding: 24px 48px;
  position: relative;
  width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
}

.logo-section { display: flex; align-items: center; gap: 12px; }

.logo-icon {
  width: 42px; height: 42px; border-radius: 15px; overflow: hidden;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; }

.logo-text {
  font-size: 20px; font-weight: 700; letter-spacing: -0.3px;
  color: #FFFFFF;
}

.login-btn {
  background: rgba(255, 255, 255, 0.04); color: var(--on-surface);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 28px; border-radius: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease; font-size: 15px;
}
.login-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary); transform: translateY(-2px);
}

/* ====================================================================
   4. HERO SECTION
   ==================================================================== */
.hero-section {
  min-height: 85vh; display: flex; align-items: center;
  padding: 40px 48px 40px; max-width: 1400px; margin: 0 auto;
}
.hero-content { flex: 5; padding-right: 48px; }

.beta-badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 20px; color: #10B981; font-weight: 700;
  font-size: 11px; letter-spacing: 1.5px; margin-bottom: 24px;
}

.hero-headline {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: #FFFFFF;
}
.hero-subhead {
  font-size: 22px;
  color: var(--on-surface-variant);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 32px;
}

.hero-buttons { display: flex; gap: 12px; margin-bottom: 24px; }

.cta-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: none;
}
.cta-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 28px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}

.trust-indicators {
  display: flex; gap: 16px; align-items: center;
  color: rgba(255, 255, 255, 0.5); font-size: 14px;
}
.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.check-icon {
  color: var(--tertiary);
  font-size: 16px;
}

/* ====================================================================
   5. DEMO CHART & INTERACTIVE ELEMENTS
   ==================================================================== */
/* Demo Container */
.demo-container { flex: 6; }
.demo-card {
  background: var(--dark-surface);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
.demo-header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 20, 28, 0.6);
}
.demo-icon {
  width: 32px; height: 32px; background: var(--dark-surface-medium);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 16px;
}
.demo-info h4 { font-weight: bold; font-size: 14px; margin-bottom: 2px; }
.demo-info p { font-size: 10px; color: var(--on-surface-variant); }

.try-badge {
  margin-left: auto; padding: 6px 12px; background: rgba(59, 130, 246, 0.1);
  border-radius: 20px; color: var(--primary); font-size: 10px;
  font-weight: 900; letter-spacing: 1.2px;
}

.demo-chart {
  height: 400px;
  background: rgba(15, 20, 28, 0.6);
  position: relative;
}
#demoCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Result Overlay */
.result-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 20;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.result-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.result-card {
  background: linear-gradient(180deg, #0D1117 0%, #161B22 100%);
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 380px;
  transform: scale(0.95);
  opacity: 0;
  animation: resultPop 0.3s ease-out forwards;
  overflow: hidden;
}
.result-card.profit {
  border: 1px solid rgba(0, 216, 76, 0.3);
  box-shadow: 0 8px 32px rgba(0, 216, 76, 0.2);
}
.result-card.loss {
  border: 1px solid rgba(231, 76, 60, 0.3);
  box-shadow: 0 8px 32px rgba(231, 76, 60, 0.2);
}

.result-status {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.result-icon {
  display: none;
}

.result-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.result-pnl {
  font-size: 48px;
  font-weight: 800;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: -2px;
  line-height: 1;
  padding: 24px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.15);
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.result-action-btn {
  padding: 16px;
  background: transparent;
  color: white;
  border: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.result-action-btn:last-child {
  border-right: none;
}
.result-action-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.result-action-btn:not(.secondary) {
  color: var(--secondary);
  font-weight: 700;
}
.result-action-btn.secondary {
  color: rgba(255, 255, 255, 0.6);
}
.result-action-btn .material-symbols-outlined {
  font-size: 18px;
}

@keyframes resultPop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes iconBounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Next Step Prompt - BANNER OUTSIDE CARD */
.next-step-prompt {
  position: relative;
  margin-top: 24px;
  background: rgba(15, 20, 28, 0.6);
  border: 1px solid rgba(48, 54, 61, 0.8);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(10px);
  animation: slideUpFade 0.3s ease-out 0.2s forwards;
}
.next-step-prompt.hidden {
  display: none;
}

.next-step-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 20px;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-icon .material-symbols-outlined {
  color: #58A6FF;
  font-size: 20px;
}

.banner-content {
  flex: 1;
}

.banner-title {
  font-size: 14px;
  font-weight: 600;
  color: #C9D1D9;
  margin-bottom: 2px;
}

.banner-subtitle {
  font-size: 12px;
  color: #8B949E;
  font-weight: 400;
}

.banner-right {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.banner-btn {
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.banner-btn.ghost {
  background: transparent;
  border: 1px solid #30363D;
  color: #C9D1D9;
}

.banner-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: #484F58;
}

.banner-btn.primary {
  background: #238636;
  border: 1px solid rgba(35, 134, 54, 0.4);
  color: white;
}

.banner-btn.primary:hover {
  background: #2EA043;
  border-color: rgba(46, 160, 67, 0.4);
}

.banner-btn .material-symbols-outlined {
  font-size: 16px;
}

@media (max-width: 768px) {
  .next-step-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .banner-right {
    width: 100%;
  }

  .banner-btn {
    flex: 1;
  }
}

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

/* Demo Buttons */
.demo-buttons {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.demo-btn {
  padding: 8px 10px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 120ms ease-out;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: #E5E7EB;
}
.demo-btn .material-symbols-outlined {
  font-size: 18px;
}
.demo-btn.long .material-symbols-outlined {
  color: #00E676;
}
.demo-btn.short .material-symbols-outlined {
  color: #FF1744;
}
.demo-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
.demo-btn.long:hover {
  border-color: rgba(0, 230, 118, 0.3);
  box-shadow: 0 2px 8px rgba(0, 230, 118, 0.2);
}
.demo-btn.short:hover {
  border-color: rgba(255, 23, 68, 0.3);
  box-shadow: 0 2px 8px rgba(255, 23, 68, 0.2);
}
.demo-btn:active {
  transform: scale(0.98);
}

/* ====================================================================
   6. QUIZ COMPONENTS
   ==================================================================== */
.quiz-container {
  padding: 28px 24px;
  background: rgba(15, 20, 28, 0.6);
  height: 400px;
  display: flex;
  flex-direction: column;
}
.quiz-container.hidden {
  display: none;
}
.quiz-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.25);
  border-radius: 6px;
  color: #58A6FF;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.quiz-badge .material-symbols-outlined {
  font-size: 14px;
}
.quiz-badge.correct {
  background: rgba(35, 134, 54, 0.15);
  border-color: rgba(35, 134, 54, 0.3);
  color: #2EA043;
}
.quiz-question {
  font-size: 18px;
  font-weight: 600;
  color: white;
  line-height: 1.4;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  flex: 1;
  overflow-y: auto;
}
.quiz-option {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(48, 54, 61, 0.5);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
}
.quiz-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(88, 166, 255, 0.3);
}
.quiz-option.correct {
  background: rgba(35, 134, 54, 0.12);
  border-color: #2EA043;
}
.quiz-option.incorrect {
  background: rgba(231, 76, 60, 0.12);
  border-color: #E74C3C;
}
.option-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.quiz-option.correct .option-circle {
  background: #2EA043;
  border-color: #2EA043;
}
.quiz-option.incorrect .option-circle {
  background: #E74C3C;
  border-color: #E74C3C;
}
.option-circle .material-symbols-outlined {
  font-size: 14px;
  color: white;
}
.option-text {
  color: #C9D1D9;
  font-weight: 500;
  font-size: 14px;
  flex: 1;
}
.quiz-actions {
  border-top: 1px solid rgba(48, 54, 61, 0.5);
  padding-top: 20px;
  flex-shrink: 0;
}
.quiz-actions.hidden {
  display: none;
}
.quiz-cta-btn {
  width: 100%;
  padding: 12px;
  background: #238636;
  color: white;
  border: 1px solid rgba(35, 134, 54, 0.4);
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: all 0.15s;
}
.quiz-cta-btn:hover {
  background: #2EA043;
}

.try-again-link {
  display: inline-block;
  margin-top: 8px;
  color: #8B949E;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s;
}
.try-again-link:hover {
  color: #C9D1D9;
  text-decoration: underline;
}

/* ====================================================================
   7. SECTIONS & CONTENT
   ==================================================================== */
.section { padding: 40px 48px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; color: var(--tertiary); }
.section-tag {
  color: var(--tertiary); font-weight: bold; letter-spacing: 2px;
  font-size: 14px; margin-bottom: 16px;
}
.section-headline {
  font-size: 45px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 12px;
}

/* Game Modes Grid */
.modes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mode-card {
  background: rgba(26, 35, 50, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
}
.mode-card.highlighted {
  background: rgba(255, 82, 82, 0.05);
  border-color: rgba(255, 82, 82, 0.5);
  border-width: 2px;
}
.mode-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.mode-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.mode-icon-box .material-symbols-outlined {
  font-size: 32px;
  color: #3B82F6;
}
.mode-icon-box.battle {
  background: rgba(255, 82, 82, 0.1);
}
.mode-icon-box.battle .material-symbols-outlined {
  color: #FF5252;
}
.mode-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
.mode-card p {
  color: var(--on-surface-variant);
  line-height: 1.5;
  font-size: 14px;
}

/* Stats Banner */
.stats-banner {
  background: rgba(26, 35, 50, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px 32px;
  margin: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  position: relative;
}
.stats-grid > div {
  position: relative;
}
.stats-grid > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-value {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
  color: white;
}
.stat-label {
  color: var(--on-surface-variant);
  font-size: 14px;
}

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--dark-surface); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px; padding: 24px; transition: all 0.3s ease; display: flex; gap: 16px;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.feature-icon { font-size: 28px; flex-shrink: 0; }
.feature-content h3 { font-weight: bold; font-size: 16px; margin-bottom: 6px; }
.feature-content p { color: var(--on-surface-variant); font-size: 13px; line-height: 1.4; }

/* Pricing Grid */
.pricing-grid {
  display: grid; grid-template-columns: 300px 380px 300px;
  gap: 32px; justify-content: center; align-items: end;
}
.pricing-card {
  background: var(--dark-surface); border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px; padding: 32px; text-align: center; transition: all 0.3s ease;
}
.pricing-card.pro {
  border-color: rgba(59, 130, 246, 0.5); border-width: 2px;
  background: rgba(59, 130, 246, 0.1); transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}
.popular-badge {
  display: inline-block; background: var(--primary); color: white;
  padding: 4px 12px; border-radius: 20px; font-size: 10px;
  font-weight: bold; margin-bottom: 16px;
}
.launch-badge {
  display: inline-block;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.pricing-card h3 {
  font-size: 18px; font-weight: 600; color: var(--on-surface-variant); margin-bottom: 8px;
}
.price { font-size: 42px; font-weight: bold; margin: 16px 0; }
.price-period { font-size: 18px; color: var(--on-surface-variant); font-weight: normal; }

.pricing-features { list-style: none; margin: 32px 0; text-align: left; }
.pricing-features li {
  padding: 12px 0; font-size: 13px; display: flex; align-items: flex-start; gap: 12px;
}
.pricing-features li::before { content: '✓'; color: var(--tertiary); font-weight: bold; flex-shrink: 0; }
.pricing-features li.pro-feature::before { color: var(--primary); }

.pricing-cta {
  width: 100%; padding: 16px; border: none; border-radius: 12px;
  font-weight: 600; cursor: pointer; transition: all 0.3s ease; font-size: 14px;
}
.pricing-cta.primary { background: var(--primary); color: white; }
.pricing-cta.secondary { background: var(--dark-surface-medium); color: white; }
.pricing-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); }

/* Footer */
footer { padding: 80px 48px; border-top: 1px solid var(--outline); text-align: center; }
.footer-divider {
  width: 100px; height: 1px; background: rgba(255, 255, 255, 0.1); margin: 0 auto 40px;
}
.footer-links {
  display: flex; gap: 32px; justify-content: center; margin-bottom: 70px; flex-wrap: wrap;
}
.footer-links a {
  color: var(--on-surface-variant); text-decoration: none; font-weight: 500; transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255, 255, 255, 0.38); font-size: 14px;
}

/* ====================================================================
   8. RESPONSIVE MEDIA QUERIES
   ==================================================================== */
@media (max-width: 900px) {
  .app-bar { padding: 20px; }
  .hero-section { flex-direction: column; padding: 80px 24px 40px; }
  .hero-content { padding-right: 0; margin-bottom: 48px; text-align: center; }
  .hero-headline { font-size: 48px; }
  .hero-subhead { font-size: 18px; }
  .hero-buttons { justify-content: center; }
  .trust-indicators { justify-content: center; }
  .section { padding: 60px 24px; }
  .section-headline { font-size: 25px; }
  .modes-grid, .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.pro { transform: scale(1); }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stats-grid > div::after {
    display: none;
  }
}
