:root {
  --bg: #060a11;
  --bg-soft: #0d1523;
  --panel: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.08);
  --text: #edf4ff;
  --muted: #91a0b6;
  --cyan: #72e2f6;
  --violet: #9f88ff;
  --blue: #77a9ff;
  --shadow: 0 24px 70px rgba(0,0,0,.4);
}

html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 12%, rgba(114,226,246,.08), transparent 22%),
    radial-gradient(circle at 88% 15%, rgba(159,136,255,.08), transparent 20%),
    linear-gradient(180deg, #050811, #0a101b 45%, #050811);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; }
.text-muted-soft { color: var(--muted) !important; }
.section-space { padding: 5.5rem 0; position: relative; }

.grid-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
  opacity: .35;
  z-index: 0;
}

.cursor-blob {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(114,226,246,.14), rgba(114,226,246,.04) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(10px);
  z-index: 1;
}

.site-nav {
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar-brand { letter-spacing: .02em; }
.nav-link { color: rgba(255,255,255,.78); }
.nav-link:hover, .nav-link.active { color: #fff; }

.btn-med {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #07111a;
  border: none;
  box-shadow: 0 18px 35px rgba(114,226,246,.2);
}
.btn-med:hover { color: #07111a; transform: translateY(-1px); }
.outline-glow {
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: rgba(255,255,255,.03);
}
.outline-glow:hover { border-color: rgba(114,226,246,.45); color: #fff; }

.hero-med {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.orbit, .orbit-two {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.orbit { width: 580px; height: 580px; right: -140px; top: 12%; animation: spinSlow 18s linear infinite; }
.orbit-two { width: 360px; height: 360px; right: 30px; top: 22%; animation: spinSlow 12s linear infinite reverse; }
.orbit::before, .orbit-two::before {
  content: "";
  position: absolute;
  top: 12%; left: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 18px rgba(114,226,246,.55);
}

.hero-card, .glass-panel, .stat-box, .service-card, .team-card, .timeline-card, .contact-card, .page-banner {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 1.6rem;
}

.hero-card { padding: 2rem; backdrop-filter: blur(14px); }
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: #9fdaf2;
  margin-bottom: 1rem;
}
.page-banner { padding: 8rem 0 3rem; overflow: hidden; position: relative; }
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(114,226,246,.12), transparent 24%), radial-gradient(circle at 15% 15%, rgba(159,136,255,.12), transparent 20%);
}

.stat-box { padding: 1.4rem; text-align: center; }
.stat-box h3 { margin-bottom: .2rem; }
.service-card, .team-card, .timeline-card, .contact-card { padding: 1.5rem; height: 100%; }
.service-icon {
  width: 62px; height: 62px; border-radius: 1rem; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(114,226,246,.2), rgba(159,136,255,.18));
  color: #fff; font-size: 1.35rem;
}
.card-hover, .tilt-card { transition: transform .35s ease, border-color .35s ease; transform-style: preserve-3d; }
.card-hover:hover { transform: translateY(-8px); border-color: rgba(114,226,246,.28); }

.holo-visual {
  min-height: 460px;
  position: relative;
}
.holo-core, .holo-ring, .holo-panel {
  position: absolute;
  border-radius: 50%;
}
.holo-core {
  inset: 18% 18%;
  background: radial-gradient(circle, rgba(114,226,246,.28), rgba(159,136,255,.12) 45%, transparent 70%);
  filter: blur(1px);
  animation: pulseCore 4s ease-in-out infinite;
}
.holo-ring {
  inset: 8% 8%;
  border: 1px solid rgba(114,226,246,.18);
  animation: spinSlow 16s linear infinite;
}
.holo-panel {
  inset: auto 14% 10% 14%;
  height: 140px;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.timeline-list { position: relative; }
.timeline-list::before {
  content: "";
  position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(var(--cyan), transparent);
}
.timeline-item {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1.25rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute; left: 0; top: .35rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 14px rgba(114,226,246,.25);
}

.form-control, .form-select, .form-control:focus, .form-select:focus {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  box-shadow: none;
}
option { color: #111; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.2,1);
}
.reveal.left { transform: translateX(-48px); }
.reveal.right { transform: translateX(48px); }
.reveal.scale { transform: scale(.92); }
.reveal.show { opacity: 1; transform: none; }

.footer-line { border-top: 1px solid rgba(255,255,255,.06); }

@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulseCore {
  0%,100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.06); opacity: 1; }
}

@media (max-width: 991.98px) {
  .hero-med { padding: 7rem 0 3rem; min-height: auto; }
  .orbit, .orbit-two { right: -200px; }
  .holo-visual { min-height: 300px; }
}
