:root {
  --bg: #07111f;
  --bg-soft: #0d1d34;
  --panel: rgba(11, 28, 50, 0.76);
  --panel-strong: #0e223f;
  --text: #f4f7fb;
  --muted: #b4c3d9;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #18c5c9;
  --accent-deep: #0d8fbc;
  --accent-warm: #ffb84d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 197, 201, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 184, 77, 0.14), transparent 24%),
    linear-gradient(180deg, #08111f 0%, #07111f 30%, #091729 100%);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 95%);
}

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

img {
  max-width: 100%;
}

.site-shell {
  width: min(calc(100% - 32px), 1280px);
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #04111b;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.section-heading h2,
.hero h1,
.showcase-panel h3,
.cta-copy h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-text small {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(24, 197, 201, 0.35);
  background: rgba(24, 197, 201, 0.1);
  color: var(--text) !important;
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.hero,
.section,
.stats,
.footer {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
  padding: 84px 0 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p:not(.eyebrow),
.service-card p,
.product-card p,
.about-card p,
.network-card p,
.timeline-step p,
.contact-card p,
.showcase-panel p,
.cta-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #7cf2cb 100%);
  color: #04111b;
  box-shadow: 0 12px 30px rgba(24, 197, 201, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.trust-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  position: relative;
  padding-left: 22px;
  color: #d7e2f1;
}

.trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 0 4px rgba(24, 197, 201, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.world-panel,
.service-card,
.product-card,
.about-card,
.network-card,
.contact-card,
.contact-form,
.cta-block,
.showcase-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.world-panel {
  position: relative;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 30%, rgba(24, 197, 201, 0.18), transparent 30%),
    radial-gradient(circle at 70% 25%, rgba(255, 184, 77, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(13, 29, 52, 0.94), rgba(7, 17, 31, 0.96));
}

.world-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.28;
}

.panel-copy {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: min(82%, 360px);
}

.panel-copy p {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
  font-weight: 800;
}

.panel-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.05;
}

.orbital-card {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: 220px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.orbital-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.orbital-card strong {
  font-size: 1.15rem;
}

.primary-card {
  top: 46px;
  left: -24px;
}

.secondary-card {
  right: -16px;
  bottom: 90px;
}

.route {
  position: absolute;
  border: 2px dashed rgba(24, 197, 201, 0.6);
  border-radius: 999px;
  filter: drop-shadow(0 0 10px rgba(24, 197, 201, 0.2));
}

.route-one {
  inset: 18% 20% 44% 12%;
  transform: rotate(-9deg);
}

.route-two {
  inset: 38% 12% 26% 24%;
  border-color: rgba(255, 184, 77, 0.62);
  transform: rotate(12deg);
}

.pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
  color: #03111a;
  background: linear-gradient(135deg, #ffffff 0%, #b6f7f8 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.pin-hk { top: 26%; left: 58%; }
.pin-eu { top: 22%; left: 24%; }
.pin-me { top: 38%; left: 41%; }
.pin-apac { top: 56%; left: 70%; }

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

.stat {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.stat strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Space Grotesk", sans-serif;
}

.stat span {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 90px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.about-grid,
.service-grid,
.network-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-card,
.service-card,
.network-card,
.contact-card,
.contact-form {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
}

.service-card h3,
.product-card h3,
.about-card h3,
.network-card h3,
.timeline-step h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.26rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.product-showcase {
  min-height: 100%;
}

.showcase-panel {
  height: 100%;
  min-height: 420px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 18%, rgba(24, 197, 201, 0.2), transparent 28%),
    linear-gradient(160deg, rgba(11, 30, 53, 0.94) 0%, rgba(7, 17, 31, 0.96) 100%);
  position: relative;
  overflow: hidden;
}

.showcase-panel::before,
.showcase-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-panel::before {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -160px;
}

.showcase-panel::after {
  width: 240px;
  height: 240px;
  right: 40px;
  top: 38px;
}

.showcase-label {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

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

.product-card {
  padding: 24px;
  border-radius: 22px;
}

.network-grid {
  grid-template-columns: repeat(3, 1fr);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.timeline-step span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24, 197, 201, 0.15), rgba(255, 184, 77, 0.15));
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 800;
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 90px;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.cta-copy {
  max-width: 720px;
}

.cta-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: #d7e2f1;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(24, 197, 201, 0.22);
  border-color: rgba(24, 197, 201, 0.5);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 90px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .hero,
  .product-layout,
  .contact-grid,
  .about-grid,
  .service-grid,
  .network-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    align-items: start;
  }

  .hero-visual,
  .world-panel {
    min-height: 520px;
  }

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

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

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), 1280px);
  }

  .topbar {
    top: 10px;
    padding: 14px 16px;
    border-radius: 26px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 17, 31, 0.95);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .stats,
  .about-grid,
  .service-grid,
  .product-layout,
  .product-grid,
  .network-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .world-panel {
    min-height: 500px;
  }

  .primary-card {
    top: 18px;
    left: 16px;
  }

  .secondary-card {
    right: 16px;
    bottom: 20px;
  }

  .panel-copy {
    left: 20px;
    right: 20px;
    width: auto;
    bottom: 24px;
  }

  .cta-block,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }
}
