* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #020408;
  font-family: "Bricolage Grotesque", sans-serif;
  color: white;
  cursor: none;
  overflow-x: hidden;
}

/* =========================================
   BACKGROUND & EFFECTS
   ========================================= */
canvas#bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 1;
}

.orb1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 240, 255, 0.07);
  top: 10%;
  left: 10%;
  animation: orbMove 14s ease-in-out infinite;
}

.orb2 {
  width: 500px;
  height: 500px;
  background: rgba(123, 97, 255, 0.06);
  bottom: 10%;
  right: 10%;
  animation: orbMove 18s ease-in-out infinite reverse;
}

.orb3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 240, 255, 0.04);
  top: 40%;
  right: 20%;
  animation: orbMove 10s ease-in-out infinite 4s;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #00f0ff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* =========================================
   HERO SECTION
   ========================================= */
/* .scene {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  color: #00f0ff;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.2s forwards;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #00f0ff;
  border-radius: 50%;
  animation: pulse 2s infinite;
} */

/* h1 {
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.1;
  max-width: 820px;
  opacity: 0;
  animation: fadeSlideUp 1s ease-out 1s forwards;
}

.heading {
  color: rgba(255, 255, 255, 0.6);
}

h1 .accent {
  color: #00f0ff;
} 

.sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 20px;
  max-width: 480px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.6s forwards;
} */

/* =========================================
   BUTTONS
   ========================================= */
/* .cta-row {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.7s 0.8s forwards;
}

.btn-primary {
  background: #00f0ff;
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #020408;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 240, 255, 0.3);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(0, 240, 255, 0.4);
  color: #00f0ff;
  transform: translateY(-2px);
}

/* =========================================
   METRICS
   ========================================= */
.metrics-row {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  opacity: 0;
  animation: fadeSlideUp 0.7s 1s forwards;
}

.metric {
  text-align: center;
  position: relative;
}

.metric-val {
  font-size: 28px;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}

.metric-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
} */

/* =========================================
   SERVICES SECTION (Your additions)
   ========================================= */
.services {
  padding: 100px 40px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #00f0ff;
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.service-card h3 {
  color: #00f0ff;
  margin-bottom: 15px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================
   KEYFRAME ANIMATIONS
   ========================================= */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.5);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(0, 240, 255, 0);
  }
}

@keyframes orbMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 50px) scale(0.9);
  }
}



/* =========================================
   FLOATING CARDS CSS
   ========================================= */
.floating-cards {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.fcard {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.fcard .tag {
  color: #00f0ff;
  font-size: 10px;
  display: block;
  margin-bottom: 4px;
  opacity: 0.7;
}

@keyframes floatCard {
  0% { transform: translateY(0px) rotate(var(--rot, 0deg)); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(var(--dist, -120px)) rotate(var(--rot, 0deg)); opacity: 0; }
}