:root {
  --bg: #05080d;
  --bg-2: #0a1018;
  --ink: #e8f1f8;
  --muted: #8aa0b3;
  --line: rgba(120, 190, 220, 0.16);
  --cyan: #22d3ee;
  --mint: #34d399;
  --amber: #f59e0b;
  --card: rgba(12, 22, 34, 0.72);
  --radius: 18px;
  --font: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(34, 211, 238, 0.12), transparent 50%),
    radial-gradient(900px 500px at -10% 20%, rgba(52, 211, 153, 0.08), transparent 45%),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#net-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.nav,
main,
.footer {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 7vw;
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(5, 8, 13, 0.62);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}

.brand-text span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a.is-active,
.nav-links a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 11px;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  background: var(--ink);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  color: #041016;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.45);
  animation: glow 2.8s ease-in-out infinite;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.92rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  animation: none;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-1px);
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.15);
  }
  50% {
    box-shadow: 0 0 28px 2px rgba(34, 211, 238, 0.28);
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 72px 7vw 40px;
  min-height: calc(100vh - 78px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  margin: 12px 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  font-weight: 800;
}

h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--amber));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: river 4s linear infinite;
}

@keyframes river {
  to {
    background-position: 200% 0;
  }
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 52ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.hero-stats div {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-family: var(--mono);
  font-size: 1.45rem;
  color: var(--cyan);
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-stage {
  position: relative;
  height: 460px;
  perspective: 900px;
}

.orbit {
  position: absolute;
  inset: 10% 8%;
  border: 1px dashed rgba(34, 211, 238, 0.25);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.sat {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.sat-1 {
  top: 0;
  left: 50%;
}
.sat-2 {
  bottom: 18%;
  right: 6%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
}
.sat-3 {
  bottom: 8%;
  left: 18%;
  background: var(--mint);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.rack-cluster {
  position: absolute;
  inset: 18% 12% 10%;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 16px;
  transform: rotateX(12deg) rotateY(-18deg);
  transform-style: preserve-3d;
  animation: float 5.5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: rotateX(12deg) rotateY(-18deg) translateY(0);
  }
  50% {
    transform: rotateX(12deg) rotateY(-18deg) translateY(-10px);
  }
}

.rack {
  width: 92px;
  background: linear-gradient(180deg, #152232, #0b121c);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 10px;
  padding: 8px 7px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.rack-mid {
  width: 110px;
  height: 320px;
}

.blade {
  height: 22px;
  margin-bottom: 6px;
  background: #101924;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
  position: relative;
  overflow: hidden;
}

.blade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.18), transparent);
  transform: translateX(-100%);
  animation: scan 2.8s ease-in-out infinite;
  animation-delay: var(--d);
}

@keyframes scan {
  40%,
  100% {
    transform: translateX(100%);
  }
}

.led-row {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: blink 1.1s infinite;
  animation-delay: var(--d);
}

.led-row.dim {
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation-duration: 1.8s;
}

.blade b {
  flex: 1;
  height: 4px;
  background: repeating-linear-gradient(90deg, #243041 0 8px, transparent 8px 11px);
  opacity: 0.7;
}

.packet-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.wire {
  stroke: rgba(34, 211, 238, 0.35);
  stroke-width: 1.4;
  stroke-dasharray: 6 8;
  animation: dash 12s linear infinite;
}

.wire.delay {
  animation-duration: 16s;
  stroke: rgba(52, 211, 153, 0.3);
}

@keyframes dash {
  to {
    stroke-dashoffset: -200;
  }
}

.packet {
  fill: var(--cyan);
  filter: drop-shadow(0 0 6px var(--cyan));
  offset-path: path("M20 300 C 80 220, 140 220, 210 180 S 340 80, 400 40");
  animation: travel 3.4s linear infinite;
}

.p2 {
  fill: var(--amber);
  offset-path: path("M40 340 C 120 280, 180 250, 240 210 S 320 140, 390 90");
  animation-duration: 4.2s;
  animation-delay: 0.8s;
}

@keyframes travel {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.strip {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: rgba(8, 14, 22, 0.7);
}

.marquee-track {
  display: flex;
  gap: 48px;
  padding: 16px 0;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--mono);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 88px 7vw;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cards,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.plan,
.panel,
.form-wrap,
.terminal-window {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(12px);
}

.card h3 {
  font-size: 1.15rem;
}

.card p,
.plan li,
.panel p {
  color: var(--muted);
  line-height: 1.6;
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
  position: relative;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid var(--line);
}

.disk .platter {
  position: absolute;
  inset: 12px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  animation: spin 3s linear infinite;
}

.disk .platter::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid var(--mint);
  border-radius: 50%;
}

.shield .pulse-ring {
  position: absolute;
  inset: 14px;
  border: 2px solid var(--mint);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.globe {
  overflow: hidden;
}

.globe::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  top: 12px;
  left: 50%;
  animation: spin 4s linear infinite;
  transform-origin: 0 14px;
}

.terminal .cursor {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 10px;
  height: 14px;
  background: var(--mint);
  animation: blink 1s step-end infinite;
}

.dc {
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.04), transparent);
}

.dc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.checklist {
  padding: 0;
  list-style: none;
}

.checklist li {
  margin: 10px 0;
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.term-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}

.term-bar span:nth-child(1) {
  background: #f87171;
}
.term-bar span:nth-child(2) {
  background: var(--amber);
}
.term-bar span:nth-child(3) {
  background: var(--mint);
}

.term-bar code {
  margin-left: auto;
}

.term-body {
  margin: 0;
  min-height: 220px;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--mint);
  white-space: pre-wrap;
}

.term-body::after {
  content: "█";
  animation: blink 1s step-end infinite;
}

.plans {
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
}

.plan ul {
  padding: 0;
  list-style: none;
  color: var(--muted);
  flex: 1;
}

.plan li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 8px 0 18px;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.plan-hot {
  border-color: rgba(34, 211, 238, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.08);
}

.badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #041016;
  background: var(--cyan);
  padding: 4px 8px;
  border-radius: 999px;
  margin: 0;
}

.cta-band {
  margin: 0 7vw 88px;
  padding: 36px;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.16), rgba(52, 211, 153, 0.08));
  border: 1px solid var(--line);
}

.page-hero {
  padding: 72px 7vw 10px;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 24px;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 0 0 36px 28px;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.year {
  font-family: var(--mono);
  color: var(--cyan);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-form,
.form-success {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  color: var(--ink);
  background: #071018;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--cyan);
  border-color: transparent;
}

.form-error {
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.1);
  padding: 10px 12px;
  border-radius: 10px;
}

.form-success {
  text-align: center;
  padding: 28px 12px;
}

.success-burst {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 3px solid var(--mint);
  animation: pulse 1.2s ease-out infinite;
}

.footer {
  padding: 48px 7vw 24px;
  border-top: 1px solid var(--line);
  background: rgba(4, 8, 12, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 28px;
}

.footer h4 {
  margin: 0 0 10px;
}

.footer a,
.footer p {
  display: block;
  color: var(--muted);
  margin: 6px 0;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.pulse-dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
  animation: blink 1.4s infinite;
}

.mono {
  font-family: var(--mono);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}
.reveal:nth-child(3) {
  animation-delay: 0.16s;
}
.reveal:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .dc-grid,
  .contact-grid,
  .about-split,
  .cards,
  .plans,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    height: 340px;
  }

  .plan-hot {
    transform: none;
  }

  .nav-links,
  .nav .btn-sm {
    display: none;
  }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #071018;
    padding: 16px 7vw 22px;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
