/* Strike Capital Main CSS Variables and Base Styles */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* ===== COLORS ===== */
  /* Primary Colors */
  --primary-color: #ff1a1a;
  --primary-hover: #e61515;
  --primary-light: #ffcccc;
  --primary-dark: #cc0000;

  /* Metallic Colors (for compatibility) */
  --metallic-color: #ff1a1a;

  /* Secondary Colors */
  --secondary-color: #ff6666;
  --secondary-hover: #ff4d4d;
  --secondary-light: #ff9999;

  /* Premium Colors */
  --premium-color: #ffa500;
  --premium-hover: #ff8c00;
  --premium-light: #ffd700;

  /* Status Colors */
  --success-color: #00ff88;
  --success-hover: #00e67a;
  --danger-color: #ff6666;
  --danger-hover: #ff4d4d;
  --warning-color: #ffa500;
  --warning-hover: #ff8c00;
  --info-color: #ff1a1a;
  --info-hover: #e61515;

  /* ===== BACKGROUNDS ===== */
  /* Dark backgrounds */
  --dark-bg: #0a0a0a;
  --darker-bg: #000000;
  --light-bg: #1a1a1a;

  /* Additional background colors */
  --bg-dark: #0a0a0a;
  --bg-medium: #1a0a0a;
  --bg-light: #2a0a0a;

  /* Metallic backgrounds */
  --metallic-bg: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  --chrome-gradient: linear-gradient(135deg, #ff1a1a 0%, #ff6666 50%, #ffffff 100%);
  --metallic-gradient: linear-gradient(135deg, #ff1a1a 0%, #ff4444 50%, #ff6666 100%);
  --metallic-shadow: 0 8px 24px rgba(255, 26, 26, 0.3);

  /* ===== TEXT COLORS ===== */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --text-accent: #ff1a1a;

  /* Additional text colors */
  --body-text: #cccccc;
  --heading-text: #ffffff;
  --muted-text: #888888;
  --link-text: #ff1a1a;

  /* ===== BORDER & SHADOWS ===== */
  --border-color: rgba(255, 26, 26, 0.2);
  --border-light: rgba(255, 26, 26, 0.1);
  --border-heavy: rgba(255, 26, 26, 0.4);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.4);

  /* ===== BORDER RADIUS ===== */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 0.75rem;
  --border-radius-2xl: 1rem;
  --border-radius-full: 9999px;

  /* ===== TRANSITIONS ===== */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* ===== TYPOGRAPHY ===== */
  --font-primary: 'Orbitron', sans-serif;
  --font-secondary: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;

  /* ===== SPACING ===== */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* ===== ADDITIONAL COLORS ===== */
  --card-bg: #1a1a1a;
  --input-bg: #2a2a2a;
  --hover-bg: rgba(255, 26, 26, 0.1);

  /* ===== BORDER RADIUS (ALTERNATIVE NAMES) ===== */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;

  /* ===== Z-INDEX ===== */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--dark-bg);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Fallback styles in case CSS variables don't work */
body {
  color: #ffffff;
  background: #0a0a0a;
  font-family: 'Rajdhani', sans-serif;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative !important;
  height: 100vh !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 30%, #2a0a0a 50%, #1a0a0a 70%, #0a0a0a 100%) !important;
  z-index: 1 !important;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 26, 26, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 68, 68, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 140, 0, 0.06) 0%, transparent 50%);
  animation: hero-bg-shift 20s ease-in-out infinite;
}

@keyframes hero-bg-shift {
  0%, 100% {
    background-position: 0% 50%, 100% 50%, 50% 50%;
  }
  50% {
    background-position: 100% 50%, 0% 50%, 50% 100%;
  }
}

.hero-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 100vh !important;
  gap: 3rem !important;
  position: relative;
  z-index: 2;
  box-sizing: border-box !important;
}

.hero-content {
  flex: 1 !important;
  text-align: left !important;
  max-width: 600px !important;
  margin: 0 !important;
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 1.5rem !important;
  padding-right: 2rem !important;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem) !important;
  font-weight: 800 !important;
  margin-bottom: 0 !important;
  line-height: 1.1 !important;
  color: #ff1a1a !important;
  font-family: 'Orbitron', sans-serif !important;
  text-shadow: 0 0 20px rgba(255, 26, 26, 0.5) !important;
  animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
  0% { text-shadow: 0 0 20px rgba(255, 26, 26, 0.5); }
  100% { text-shadow: 0 0 30px rgba(255, 26, 26, 0.8), 0 0 40px rgba(255, 26, 26, 0.3); }
}

.hero-title-main {
  display: block !important;
  animation: slide-in-left 1s ease-out;
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title-highlight {
  display: block !important;
  background: linear-gradient(135deg, #ff1a1a, #ff6666, #ff8c00) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: slide-in-right 1s ease-out 0.3s both;
  position: relative;
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff1a1a, #ff6666, #ff8c00);
  border-radius: 2px;
  animation: underline-expand 1.5s ease-out 0.8s forwards;
}

@keyframes underline-expand {
  from { width: 0; }
  to { width: 80%; }
}

.hero-description {
  font-size: 1.1rem !important;
  color: #cccccc !important;
  max-width: 100% !important;
  margin: 0 !important;
  line-height: 1.7 !important;
  animation: fade-in-up 1s ease-out 0.6s both;
  font-weight: 400 !important;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex !important;
  gap: 1rem !important;
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  animation: fade-in-up 1s ease-out 1s both;
  margin-top: 0.5rem !important;
}

.hero-actions .btn {
  font-size: 1rem !important;
  padding: 1rem 2rem !important;
  font-weight: 700 !important;
}

.hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.15), rgba(255, 68, 68, 0.1)) !important;
  border: 1px solid rgba(255, 26, 26, 0.3) !important;
  border-radius: 50px !important;
  padding: 0.6rem 1rem !important;
  margin-bottom: 0 !important;
  color: #ff1a1a !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  box-shadow: 0 4px 15px rgba(255, 26, 26, 0.2) !important;
  animation: badge-pulse 2s ease-in-out infinite;
  position: relative;
  overflow: visible !important;
  flex-wrap: wrap !important;
  max-width: fit-content !important;
  word-wrap: break-word !important;
  white-space: normal !important;
  line-height: 1.3 !important;
  width: auto !important;
}

.badge-text {
  white-space: normal !important;
  word-wrap: break-word !important;
  flex-shrink: 1 !important;
}

.badge-icon {
  flex-shrink: 0 !important;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 20px rgba(255, 26, 26, 0.4);
    transform: scale(1.02);
  }
}

@keyframes badge-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: chart-float 6s ease-in-out infinite;
  max-width: 500px;
  margin-left: auto;
}

@keyframes chart-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(1deg); }
  50% { transform: translateY(-5px) rotate(-0.5deg); }
  75% { transform: translateY(-15px) rotate(0.5deg); }
}

.hero-chart {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(40, 20, 20, 0.9));
  border: 2px solid rgba(255, 26, 26, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 450px;
  box-shadow:
    0 8px 32px rgba(255, 26, 26, 0.2),
    0 0 60px rgba(255, 26, 26, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: chart-glow 4s ease-in-out infinite alternate;
}

.hero-chart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.05), transparent);
  border-radius: 1.5rem;
  pointer-events: none;
}

@keyframes chart-glow {
  0% {
    box-shadow:
      0 8px 32px rgba(255, 26, 26, 0.2),
      0 0 60px rgba(255, 26, 26, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow:
      0 12px 40px rgba(255, 26, 26, 0.3),
      0 0 80px rgba(255, 26, 26, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 26, 26, 0.3);
}

.chart-title {
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-primary);
  text-shadow: 0 0 10px rgba(255, 26, 26, 0.3);
}

.chart-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--success-color);
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.1));
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid rgba(0, 255, 136, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  border-radius: 50%;
  animation: status-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
}

@keyframes status-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
  }
}

.status-text {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chart-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.chart-lines {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
}

.chart-line-main {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-chart 3s ease-out 1s forwards;
}

@keyframes draw-chart {
  to {
    stroke-dashoffset: 0;
  }
}

.chart-line-fill {
  animation: fill-chart 2s ease-out 2s forwards;
  opacity: 0;
}

@keyframes fill-chart {
  to {
    opacity: 0.2;
  }
}

.chart-point {
  animation: point-appear 0.5s ease-out 2.5s forwards;
  opacity: 0;
}

@keyframes point-appear {
  to {
    opacity: 1;
  }
}

.chart-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 26, 26, 0.1) 0%, transparent 70%);
  animation: chart-glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes chart-glow-pulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.3; }
}

.chart-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.grid-line {
  position: absolute;
  background: rgba(255, 26, 26, 0.1);
  animation: grid-appear 2s ease-out 0.5s forwards;
  opacity: 0;
}

.grid-line:nth-child(1) {
  top: 25%;
  left: 0;
  right: 0;
  height: 1px;
}

.grid-line:nth-child(2) {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.grid-line:nth-child(3) {
  top: 75%;
  left: 0;
  right: 0;
  height: 1px;
}

@keyframes grid-appear {
  to {
    opacity: 1;
  }
}

.chart-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255, 26, 26, 0.3);
}

.chart-stat {
  text-align: center;
  padding: 1rem 0.75rem;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(255, 68, 68, 0.05));
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 26, 26, 0.2);
  transition: all 0.3s ease;
  animation: stat-appear 1s ease-out forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.chart-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.chart-stat:hover::before {
  left: 100%;
}

.chart-stat:nth-child(1) { animation-delay: 2.8s; }
.chart-stat:nth-child(2) { animation-delay: 3s; }

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

.chart-stat:hover {
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.15), rgba(255, 68, 68, 0.1));
  border-color: rgba(255, 26, 26, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 26, 26, 0.3);
}

.chart-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  font-family: var(--font-secondary);
}

.chart-stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--success-color);
  font-family: var(--font-mono);
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.6), 0 0 20px rgba(0, 255, 136, 0.3);
  animation: value-count 2s ease-out forwards;
  line-height: 1.2;
}

@keyframes value-count {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: scroll-bounce 3s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.scroll-line {
  width: 3px;
  height: 50px;
  background: linear-gradient(180deg, #ff1a1a, #ff6666, #ff8c00);
  border-radius: 2px;
  animation: scroll-pulse-glow 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.3));
  animation: scroll-shimmer 2s ease-in-out infinite;
}

@keyframes scroll-pulse-glow {
  0%, 100% {
    opacity: 0.6;
    transform: scaleY(1);
    box-shadow: 0 0 8px rgba(255, 26, 26, 0.4);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.1);
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.8);
  }
}

@keyframes scroll-shimmer {
  0%, 100% { transform: translateY(-100%); }
  50% { transform: translateY(100%); }
}

/* Additional geometric elements */
.hero-geometric {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.geometric-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.1), rgba(255, 68, 68, 0.05));
  border: 1px solid rgba(255, 26, 26, 0.2);
  animation: geometric-drift 20s ease-in-out infinite;
}

.geometric-shape:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.geometric-shape:nth-child(2) {
  width: 40px;
  height: 40px;
  bottom: 25%;
  left: 15%;
  animation-delay: 5s;
}

.geometric-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 10s;
  border-radius: 20px;
}

.geometric-shape:nth-child(4) {
  width: 30px;
  height: 30px;
  bottom: 15%;
  right: 25%;
  animation-delay: 15s;
}

@keyframes geometric-drift {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(15px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) translateX(-10px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) translateX(-5px) rotate(270deg);
    opacity: 0.7;
  }
}

/* Ensure content is visible */
section {
  padding: 4rem 0;
}

.hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  gap: 3rem;
  box-sizing: border-box;
}

.hero-content {
  flex: 1;
  text-align: left;
  max-width: 600px;
  margin: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--metallic-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: var(--metallic-gradient);
  color: white;
  box-shadow: var(--metallic-shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 26, 26, 0.4);
}

.btn-secondary {
  background: var(--light-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--darker-bg);
  border-color: var(--primary-color);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-hover);
}

.gradient-text {
  background: linear-gradient(135deg, #ff1a1a, #ff6666, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 2000 !important;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 0, 0, 0.95) 100%) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border-bottom: 1px solid rgba(255, 26, 26, 0.3) !important;
  box-shadow: 0 4px 20px rgba(255, 26, 26, 0.15), 0 0 40px rgba(255, 26, 26, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: block !important;
  visibility: visible !important;
  position: relative;
  overflow: hidden;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.1), transparent);
  animation: navbar-shimmer 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes navbar-shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.navbar-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  min-height: 80px !important;
  height: 80px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative;
  z-index: 2;
  gap: 2rem !important;
}

.navbar-brand {
  display: flex !important;
  align-items: center !important;
  gap: var(--space-3) !important;
  flex-shrink: 0 !important;
  position: relative;
  grid-column: 1 !important;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem;
  border-radius: var(--border-radius-md);
}

.brand-link:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 26, 26, 0.2);
}

.brand-link:hover .brand-text {
  background: linear-gradient(135deg, #ff1a1a, #ff6666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-logo {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 26, 26, 0.3));
  transition: all 0.3s ease;
}

.brand-link:hover .brand-logo {
  filter: drop-shadow(0 0 12px rgba(255, 26, 26, 0.5));
  transform: scale(1.05);
}

.brand-text {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-navigation {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  grid-column: 2 !important;
  margin: 0 auto !important;
}

.navbar-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1.25rem !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  height: 100% !important;
}

.navbar-menu li {
  display: inline-block !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-link {
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: var(--border-radius-md) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  overflow: hidden;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  height: 100% !important;
  line-height: 1 !important;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.2), rgba(255, 68, 68, 0.1)) !important;
  box-shadow: 0 4px 15px rgba(255, 26, 26, 0.2) !important;
  transform: translateY(-2px) !important;
  border: 1px solid rgba(255, 26, 26, 0.3) !important;
}

.navbar-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  grid-column: 3 !important;
  flex-shrink: 0 !important;
}

.navbar-actions .btn {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 50px !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: auto !important;
  line-height: 1.2 !important;
}

.navbar-actions .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.navbar-actions .btn:hover::before {
  left: 100%;
}

.navbar-actions .btn-primary {
  background: linear-gradient(135deg, #ff1a1a, #cc0000) !important;
  border: 2px solid #ff1a1a !important;
  box-shadow: 0 4px 15px rgba(255, 26, 26, 0.3) !important;
}

.navbar-actions .btn-primary:hover {
  background: linear-gradient(135deg, #cc0000, #ff1a1a) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 26, 26, 0.5) !important;
}

.navbar-actions .btn-secondary {
  background: transparent !important;
  border: 2px solid rgba(255, 26, 26, 0.5) !important;
  color: #ffffff !important;
}

.navbar-actions .btn-secondary:hover {
  background: rgba(255, 26, 26, 0.1) !important;
  border-color: #ff1a1a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(255, 26, 26, 0.2) !important;
}

.mobile-menu-toggle {
  display: none !important;
  flex-direction: column !important;
  gap: 4px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0.75rem !important;
  border-radius: var(--border-radius-md) !important;
  color: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  border: 1px solid rgba(255, 26, 26, 0.3) !important;
}

.mobile-menu-toggle:hover {
  color: #ff1a1a !important;
  background: rgba(255, 26, 26, 0.1) !important;
  box-shadow: 0 4px 12px rgba(255, 26, 26, 0.2) !important;
  transform: scale(1.05) !important;
}

.hamburger-line {
  width: 24px !important;
  height: 3px !important;
  background: currentColor !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-radius: 2px !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.navbar-brand img {
  height: 40px !important;
  width: auto !important;
}

.nav-link {
  color: #cccccc !important;
  text-decoration: none !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.375rem !important;
  transition: all 0.3s ease !important;
}

.nav-link:hover {
  color: #ff1a1a !important;
  background: rgba(255, 26, 26, 0.1) !important;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 26, 26, 0.2);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid rgba(255, 26, 26, 0.3);
  background: rgba(255, 26, 26, 0.05);
  position: relative;
  z-index: 1;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--border-radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 26, 26, 0.3);
}

.mobile-menu-close:hover {
  color: var(--primary-color);
  background: rgba(255, 26, 26, 0.1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 26, 26, 0.2);
}

.mobile-menu-content {
  padding: var(--space-6);
  position: relative;
  z-index: 1;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  margin-bottom: var(--space-2);
}

.mobile-nav-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: var(--space-4) var(--space-3);
  border-radius: var(--border-radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-secondary);
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
  left: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.2), rgba(255, 68, 68, 0.1));
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(255, 26, 26, 0.2);
  border: 1px solid rgba(255, 26, 26, 0.3);
}

.mobile-menu-actions {
  padding: var(--space-6);
  border-top: 1px solid rgba(255, 26, 26, 0.3);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: rgba(255, 26, 26, 0.05);
  position: relative;
  z-index: 1;
}

.mobile-menu-actions .btn {
  width: 100%;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION STYLES ===== */
section {
  padding: 4rem 0 !important;
  background: #0a0a0a !important;
}

.section-header {
  text-align: center !important;
  margin-bottom: 3rem !important;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 800 !important;
  color: #ff1a1a !important;
  margin-bottom: 1rem !important;
  font-family: 'Orbitron', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.section-description {
  font-size: 1.1rem !important;
  color: #cccccc !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

/* ===== FUNDING/PRICING CARDS ===== */
.funding-path, .pricing-plan, .feature-card, .testimonial-card {
  background: #1a1a1a !important;
  border: 1px solid rgba(255, 26, 26, 0.2) !important;
  border-radius: 0.75rem !important;
  padding: 2rem !important;
  margin-bottom: 2rem !important;
  transition: all 0.3s ease !important;
}

.funding-path:hover, .pricing-plan:hover, .feature-card:hover, .testimonial-card:hover {
  border-color: #ff1a1a !important;
  box-shadow: 0 8px 24px rgba(255, 26, 26, 0.2) !important;
  transform: translateY(-4px) !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.floating-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 12s ease-in-out infinite, particle-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

.floating-particle:nth-child(1) {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #ff1a1a, #ff6666);
  box-shadow: 0 0 10px rgba(255, 26, 26, 0.6);
  top: 20%;
  left: 20%;
  animation-delay: 0s, 0s;
}

.floating-particle:nth-child(2) {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #ff6666, #ff8c00);
  box-shadow: 0 0 15px rgba(255, 102, 102, 0.7);
  top: 70%;
  right: 20%;
  animation-delay: 2s, 1s;
}

.floating-particle:nth-child(3) {
  width: 5px;
  height: 5px;
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
  bottom: 20%;
  left: 70%;
  animation-delay: 4s, 2s;
}

.floating-particle:nth-child(4) {
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, #ff1a1a, #ff4444);
  box-shadow: 0 0 12px rgba(255, 68, 68, 0.6);
  top: 40%;
  right: 70%;
  animation-delay: 1s, 0.5s;
}

.floating-particle:nth-child(5) {
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #ff4444, #ff6666);
  box-shadow: 0 0 6px rgba(255, 102, 102, 0.4);
  bottom: 40%;
  left: 40%;
  animation-delay: 3s, 1.5s;
}

.floating-particle:nth-child(6) {
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, #ffa500, #ff1a1a);
  box-shadow: 0 0 18px rgba(255, 165, 0, 0.8);
  top: 60%;
  left: 10%;
  animation-delay: 5s, 2.5s;
}

.floating-particle:nth-child(7) {
  width: 5px;
  height: 5px;
  background: linear-gradient(135deg, #ff6666, #ff1a1a);
  box-shadow: 0 0 8px rgba(255, 26, 26, 0.5);
  top: 10%;
  right: 40%;
  animation-delay: 6s, 3s;
}

.floating-particle:nth-child(8) {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #ff8c00, #ff6666);
  box-shadow: 0 0 10px rgba(255, 140, 102, 0.6);
  bottom: 60%;
  right: 10%;
  animation-delay: 7s, 0.8s;
}

@keyframes particle-float {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    opacity: 0.2;
  }
  10% {
    transform: translateY(-30px) translateX(10px) rotate(36deg) scale(1.2);
    opacity: 0.8;
  }
  20% {
    transform: translateY(-60px) translateX(-5px) rotate(72deg) scale(0.9);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-40px) translateX(-15px) rotate(108deg) scale(1.1);
    opacity: 0.9;
  }
  40% {
    transform: translateY(-80px) translateX(20px) rotate(144deg) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-50px) translateX(-10px) rotate(180deg) scale(1.3);
    opacity: 1;
  }
  60% {
    transform: translateY(-70px) translateX(15px) rotate(216deg) scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: translateY(-30px) translateX(-20px) rotate(252deg) scale(1.1);
    opacity: 0.8;
  }
  80% {
    transform: translateY(-90px) translateX(5px) rotate(288deg) scale(0.85);
    opacity: 0.4;
  }
  90% {
    transform: translateY(-60px) translateX(-10px) rotate(324deg) scale(1.15);
    opacity: 0.6;
  }
}

@keyframes particle-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

/* ===== UTILITY CLASSES ===== */
.w-full {
  width: 100%;
}

.justify-center {
  justify-content: center;
}

/* ===== BODY AND SECTION OVERRIDES ===== */
body {
  margin: 0 !important;
  padding-top: 0 !important;
  background: #0a0a0a !important;
  color: #ffffff !important;
  font-family: 'Rajdhani', sans-serif !important;
  overflow-x: hidden !important;
}

section {
  padding: 4rem 0 !important;
}

/* ===== RESPONSIVE DESIGN ===== */
/* Desktop styles - ensure navbar elements are visible */
@media (min-width: 769px) {
  .navbar {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .navbar-navigation {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .navbar-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: row !important;
  }

  .navbar-menu li {
    display: list-item !important;
    visibility: visible !important;
  }

  .navbar-actions {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: row !important;
  }

  .mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem !important;
  }

  .navbar-menu {
    display: none !important;
  }

  .navbar-actions {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .hero-container {
    flex-direction: column !important;
    gap: 2rem !important;
    padding: 2rem 1rem !important;
    height: auto !important;
    min-height: 100vh !important;
  }

  .hero-content {
    text-align: center !important;
    max-width: 100% !important;
  }

  .hero-visual {
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .hero-chart {
    max-width: 100% !important;
  }

  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  .btn {
    padding: 0.75rem 1rem !important;
    font-size: 0.8rem !important;
  }

  .section-title {
    font-size: 2rem !important;
  }

  .section-description {
    font-size: 1rem !important;
  }
}
