* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --bg: #020617;
  --panel: rgba(255,255,255,.07);
  --border: rgba(255,255,255,.12);
  --text: #e5e7eb;
  --muted: #cbd5e1;
  --blue: #2563eb;
  --blue-light: #93c5fd;
  --green: #16a34a;
  --shadow: 0 30px 90px rgba(0,0,0,.35);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(37,99,235,.30), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(14,165,233,.18), transparent 32%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

#network-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .75;
}

a {
  color: var(--blue-light);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 24px;
  background: rgba(2, 6, 23, .78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.nav-links a:hover {
  color: #60a5fa;
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 17px;
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(37,99,235,.35);
}

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 90px 20px 70px;
  text-align: center;
}

.hero-content {
  max-width: 1040px;
}

.badge,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--blue-light);
  border: 1px solid rgba(147,197,253,.38);
  background: rgba(255,255,255,.065);
  font-weight: 800;
  letter-spacing: .2px;
}

h1 {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.04;
  letter-spacing: -2.4px;
}

.hero p {
  max-width: 820px;
  margin: 28px auto 0;
  font-size: clamp(18px, 2.4vw, 23px);
  color: var(--muted);
}

.hero-actions,
.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 38px rgba(37,99,235,.28);
}

.success {
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 38px rgba(22,163,74,.22);
}

.ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid var(--border);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

section {
  margin-bottom: 48px;
}

.card,
.contact-card,
.service,
.stat {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card,
.contact-card {
  border-radius: 28px;
  padding: clamp(26px, 5vw, 44px);
}

h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin: 18px 0 18px;
  letter-spacing: -1px;
}

h3 {
  color: var(--blue-light);
}

.card p,
.contact-card p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  border-radius: 24px;
  padding: 26px 20px;
  text-align: center;
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 10px;
}

.section-heading {
  margin-bottom: 22px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service {
  border-radius: 24px;
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service:hover {
  transform: translateY(-8px);
  border-color: rgba(147,197,253,.55);
  background: rgba(37,99,235,.13);
}

.icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  font-size: 27px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}

.service h3 {
  font-size: 21px;
  margin: 0 0 10px;
}

.service p {
  color: var(--muted);
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.why-grid div {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 22px;
}

.why-grid p {
  margin-bottom: 0;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tech-list span {
  padding: 11px 16px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37,99,235,.16);
  border: 1px solid rgba(147,197,253,.22);
  font-weight: 700;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: var(--muted);
}

.company-table td:first-child {
  width: 240px;
  color: var(--blue-light);
  font-weight: 900;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  align-items: center;
  gap: 28px;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 12px;
  z-index: 999;
}

.floating-actions a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border-radius: 18px;
  background: rgba(37,99,235,.92);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 34px rgba(0,0,0,.35);
  transition: transform .2s ease;
}

.floating-actions a:hover {
  transform: translateY(-4px) scale(1.03);
}

footer {
  text-align: center;
  color: #94a3b8;
  padding: 34px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(2,6,23,.85);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(37,99,235,.22); }
  50% { box-shadow: 0 0 58px rgba(37,99,235,.42); }
}

.nav-cta:hover,
.button:hover {
  animation: softPulse 1.25s ease-in-out infinite;
}

@media (max-width: 940px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .stats,
  .services,
  .contact-card,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  h1 {
    letter-spacing: -1px;
  }

  .container {
    width: min(100% - 26px, 1180px);
  }

  .stats,
  .services,
  .contact-card,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .company-table td {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .company-table td:first-child {
    width: 100%;
    padding-top: 18px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }
}
