* { font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
body { background: #020205; overflow-x: hidden; }

.glass {
  background: rgba(10, 17, 40, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
}

.grid-bg {
  background-image:
    linear-gradient(rgba(0,212,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.glow-btn {
  box-shadow: 0 0 30px rgba(0,212,255,0.3), 0 0 60px rgba(0,212,255,0.1);
  transition: all 0.3s;
}
.glow-btn:hover {
  box-shadow: 0 0 40px rgba(0,212,255,0.6), 0 0 80px rgba(0,212,255,0.2);
  transform: translateY(-2px);
}

.pill {
  padding: 8px 14px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 999px;
  text-align: center;
  font-size: 12px;
  color: #cbd5e1;
  transition: all 0.3s;
}
.pill:hover { background: rgba(0,212,255,0.15); border-color: rgba(0,212,255,0.5); color: #00D4FF; }

.service-card, .tech-card, .diff-card, .industry-card {
  position: relative;
  background: rgba(10,17,40,0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.service-card::before, .tech-card::before, .diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00D4FF, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover, .tech-card:hover, .diff-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 20px 60px -20px rgba(0,212,255,0.3);
}
.service-card:hover::before, .tech-card:hover::before, .diff-card:hover::before { opacity: 1; }

.icon-box {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(0,102,170,0.05));
  border: 1px solid rgba(0,212,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #00D4FF;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .icon-box, .diff-card:hover .icon-box {
  background: linear-gradient(135deg, rgba(0,212,255,0.3), rgba(0,102,170,0.1));
  box-shadow: 0 0 30px rgba(0,212,255,0.3);
}

.tech-chip {
  padding: 6px 12px;
  font-size: 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  color: #cbd5e1;
  transition: all 0.3s;
}
.tech-chip:hover { border-color: #00D4FF; color: #00D4FF; background: rgba(0,212,255,0.08); }

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
  border-left: 1px solid rgba(0,212,255,0.2);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #00D4FF;
  box-shadow: 0 0 0 4px rgba(0,212,255,0.15), 0 0 20px rgba(0,212,255,0.5);
}
.timeline-item:last-child { border-left-color: transparent; }

.industry-card {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,212,255,0.4);
}
.industry-card .bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  transition: opacity 0.4s, transform 0.6s;
}
.industry-card:hover .bg { opacity: 0.4; transform: scale(1.05); }

.value-item {
  padding: 24px 16px;
  text-align: center;
  border-radius: 10px;
  background: rgba(10,17,40,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.value-item:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-4px);
  background: rgba(0,212,255,0.05);
}

.hero-fade { opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s forwards; }
.hero-fade:nth-child(1) { animation-delay: 0.1s; }
.hero-fade:nth-child(2) { animation-delay: 0.3s; }
.hero-fade:nth-child(3) { animation-delay: 0.5s; }
.hero-fade:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

#navbar.scrolled {
  background: rgba(2,2,5,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #020205; }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,212,255,0.6); }
