@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-900: #04060c;
  --bg-800: #080b14;
  --accent-1: #35f0c7;
  --accent-2: #53b5ff;
  --accent-3: #f6b44c;
  --border: rgba(255, 255, 255, 0.08);
  --muted: rgba(255, 255, 255, 0.65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at 20% 20%, #0d1024, #050811 40%, #03050a 80%) no-repeat fixed;
  color: #f8fafc;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  letter-spacing: -0.01em;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at 50% 50%, black 45%, transparent 75%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: fixed;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: float 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  background: radial-gradient(circle at 30% 30%, rgba(83, 181, 255, 0.65), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(53, 240, 199, 0.6), transparent 70%);
  top: -12rem;
  left: -8rem;
}

.orb-2 {
  background: radial-gradient(circle at 30% 70%, rgba(246, 180, 76, 0.35), transparent 70%),
              radial-gradient(circle at 70% 30%, rgba(83, 181, 255, 0.45), transparent 60%);
  bottom: -14rem;
  right: -10rem;
  animation-delay: -7s;
}

.breathing-shell {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  box-shadow:
    0 25px 120px rgba(53, 240, 199, 0.1),
    0 18px 50px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  animation: pulse 14s ease-in-out infinite;
}

.breathing-shell::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 28px;
  background: radial-gradient(circle at 20% 20%, rgba(83, 181, 255, 0.08), transparent 40%),
              radial-gradient(circle at 80% 30%, rgba(53, 240, 199, 0.07), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(246, 180, 76, 0.05), transparent 45%);
  z-index: 0;
}

.breathing-shell > * {
  position: relative;
  z-index: 1;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53, 240, 199, 0.15), rgba(83, 181, 255, 0.12));
  color: #e0f7ff;
  border: 1px solid rgba(83, 181, 255, 0.3);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #35f0c7;
  box-shadow: 0 0 0 0 rgba(53, 240, 199, 0.8);
  animation: ping 1.7s infinite;
}

.hero-scan {
  margin: 18px auto 0;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(83, 181, 255, 0.8), transparent);
  filter: drop-shadow(0 0 12px rgba(83, 181, 255, 0.4));
  animation: scan 2.6s ease-in-out infinite;
}

.shimmer {
  position: relative;
  background: linear-gradient(110deg, #fff 30%, #b9e8ff 40%, #53b5ff 50%, #fff 70%);
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
}

.glow-btn {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 40px rgba(83, 181, 255, 0.28);
}

.glow-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 50px rgba(83, 181, 255, 0.35),
    0 12px 20px rgba(0, 0, 0, 0.35);
}

.section-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.lift-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lift-card:hover {
  transform: translateY(-6px);
  border-color: rgba(83, 181, 255, 0.5);
  box-shadow:
    0 12px 30px rgba(83, 181, 255, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.35);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  font-variant-numeric: tabular-nums;
}

.region-breathe {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c4f5e8;
  text-shadow:
    0 0 10px rgba(53, 240, 199, 0.3),
    0 0 18px rgba(83, 181, 255, 0.2);
  animation: regionPulse 2.6s ease-in-out infinite;
}

.region-breathe::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #35f0c7;
  box-shadow: 0 0 0 0 rgba(53, 240, 199, 0.7);
  animation: regionDot 2.6s ease-in-out infinite;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

@keyframes ping {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(53, 240, 199, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(53, 240, 199, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(53, 240, 199, 0);
  }
}

@keyframes regionPulse {
  0% {
    opacity: 0.7;
    text-shadow:
      0 0 6px rgba(53, 240, 199, 0.3),
      0 0 12px rgba(83, 181, 255, 0.18);
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 12px rgba(53, 240, 199, 0.6),
      0 0 24px rgba(83, 181, 255, 0.32);
  }
  100% {
    opacity: 0.7;
    text-shadow:
      0 0 6px rgba(53, 240, 199, 0.3),
      0 0 12px rgba(83, 181, 255, 0.18);
  }
}

@keyframes regionDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(53, 240, 199, 0.55); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(53, 240, 199, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(53, 240, 199, 0); }
}

@keyframes scan {
  0% {
    opacity: 0;
    transform: scaleX(0.4);
  }
  35% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.3);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -12px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow:
      0 25px 120px rgba(53, 240, 199, 0.1),
      0 18px 50px rgba(0, 0, 0, 0.4),
      inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  }
  50% {
    box-shadow:
      0 35px 140px rgba(83, 181, 255, 0.13),
      0 22px 70px rgba(0, 0, 0, 0.45),
      inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  }
}

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

.brand-logo img {
  image-rendering: auto;
  -webkit-filter: drop-shadow(0 0 8px rgba(15, 23, 42, 0.75));
  filter: drop-shadow(0 0 8px rgba(15, 23, 42, 0.75));
}
