:root {
  --bg: #080d16;
  --panel: rgba(17, 27, 45, 0.72);
  --panel-hover: rgba(24, 39, 64, 0.88);
  --line: rgba(151, 181, 225, 0.15);
  --line-bright: rgba(130, 211, 255, 0.35);
  --text: #eef5ff;
  --muted: #91a3bd;
  --faint: #60728b;
  --cyan: #62d6ff;
  --purple: #a78bfa;
  --green: #62e6af;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
  pointer-events: none;
}

.ambient-one {
  top: -250px;
  left: -180px;
  background: #1677c8;
}

.ambient-two {
  right: -220px;
  bottom: -300px;
  background: #6e3fc7;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(134, 170, 209, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 170, 209, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.shell {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-muted {
  color: var(--cyan);
  font-weight: 600;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 3px;
  align-items: end;
  width: 26px;
  height: 26px;
  padding: 5px;
  border: 1px solid rgba(98, 214, 255, 0.45);
  border-radius: 7px;
  background: rgba(98, 214, 255, 0.08);
}

.brand-mark span {
  display: block;
  border-radius: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(98, 214, 255, 0.7);
}

.brand-mark span:nth-child(1) { height: 7px; }
.brand-mark span:nth-child(2) { height: 13px; }
.brand-mark span:nth-child(3) { height: 17px; }

.server-state {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #b6c8dd;
  font-size: 0.82rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(98, 230, 175, 0.6);
  animation: pulse 2.2s infinite;
}

.hero {
  max-width: 760px;
  padding: 122px 0 82px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(98, 214, 255, 0.8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin: 20px 0;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.hero-copy strong {
  color: #dceeff;
}

.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 13px 18px;
  border-radius: 9px;
  color: #06121c;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  background: var(--cyan);
  box-shadow: 0 8px 25px rgba(28, 182, 235, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28, 182, 235, 0.32);
}

.ip-label {
  color: var(--faint);
  font-size: 0.82rem;
}

.status-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 23px 28px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(15, 25, 42, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.status-item {
  display: flex;
  gap: 13px;
  align-items: center;
}

.status-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(98, 214, 255, 0.22);
  border-radius: 9px;
  color: var(--cyan);
  background: rgba(98, 214, 255, 0.06);
}

.status-label {
  display: block;
  margin-bottom: 3px;
  color: var(--faint);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status-item strong {
  color: #dce8f6;
  font-size: 0.9rem;
  font-weight: 600;
}

.status-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
}

.services {
  padding: 106px 0 70px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 29px;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.045em;
}

.service-count {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--faint);
  font-size: 0.73rem;
  white-space: nowrap;
}

.card-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: var(--line-bright);
  background: var(--panel-hover);
  transform: translateY(-4px);
}

.featured-card {
  border-color: rgba(98, 214, 255, 0.27);
  background:
    linear-gradient(135deg, rgba(26, 84, 125, 0.29), rgba(17, 27, 45, 0.75) 58%),
    var(--panel);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 31px;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(151, 181, 225, 0.2);
  border-radius: 11px;
  color: #b4c8e2;
  font-size: 1.1rem;
  background: rgba(151, 181, 225, 0.06);
}

.icon-orbit {
  color: var(--cyan);
  border-color: rgba(98, 214, 255, 0.32);
  background: rgba(98, 214, 255, 0.08);
}

.badge {
  padding: 5px 8px;
  border: 1px solid rgba(98, 214, 255, 0.23);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(98, 214, 255, 0.07);
}

.badge-muted {
  color: var(--faint);
  border-color: var(--line);
  background: transparent;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.77rem;
}

.featured-card .card-footer {
  color: #a6dced;
}

footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 27px 0 37px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.75rem;
}

.footer-separator {
  color: #40536b;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 7px rgba(98, 230, 175, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(98, 230, 175, 0);
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 84px 0 64px;
  }

  .status-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .status-divider {
    display: none;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 230px;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 32px, 1140px);
  }

  .topbar {
    min-height: 76px;
  }

  .server-state {
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 72px;
  }

  .section-heading {
    display: block;
  }

  .service-count {
    display: inline-block;
    margin-top: 18px;
  }

  footer {
    flex-wrap: wrap;
  }
}
