:root {
  --void: #061018;
  --panel: #0d1c29;
  --panel-soft: rgba(14, 31, 46, 0.76);
  --ink: #eaf7ff;
  --muted: #9bb2c2;
  --cyan: #28e0ff;
  --violet: #8ea2ff;
  --amber: #ffb84d;
  --line: rgba(151, 220, 255, 0.2);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--void);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(40, 224, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 224, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 78% 8%, rgba(40, 224, 255, 0.22), transparent 28%),
    radial-gradient(circle at 12% 74%, rgba(142, 162, 255, 0.14), transparent 30%),
    var(--void);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(6, 16, 24, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.15;
}

.brand-mark {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #031019;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(40, 224, 255, 0.36);
  font-weight: 950;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
}

.nav a {
  padding: 6px 0;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(40, 224, 255, 0.42);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
  min-height: 790px;
  padding: 86px clamp(18px, 5vw, 72px) 102px;
  overflow: hidden;
}

.network-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.9;
}

.node {
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 26px var(--cyan);
  animation: pulse 3.5s ease-in-out infinite;
}

.node-a {
  top: 18%;
  left: 10%;
}

.node-b {
  top: 28%;
  right: 18%;
  animation-delay: 0.7s;
}

.node-c {
  bottom: 18%;
  left: 44%;
  background: var(--violet);
  box-shadow: 0 0 26px var(--violet);
  animation-delay: 1.2s;
}

.node-d {
  bottom: 30%;
  right: 8%;
  background: var(--amber);
  box-shadow: 0 0 24px var(--amber);
  animation-delay: 1.8s;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.55rem, 6.2vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead,
.page-hero p,
.rich-copy p,
.angled-panel p,
.service-card p,
.service-row p {
  color: var(--muted);
}

.lead,
.page-hero p {
  max-width: 760px;
  font-size: clamp(1.04rem, 1.7vw, 1.26rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 16px 36px rgba(40, 224, 255, 0.24);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.button-ghost:hover {
  border-color: rgba(40, 224, 255, 0.62);
  box-shadow: 0 0 28px rgba(40, 224, 255, 0.18);
}

.mesh-visual {
  position: relative;
  min-height: 520px;
}

.hero-photo {
  position: absolute;
  inset: 18px 32px auto auto;
  width: min(430px, 82vw);
  height: 470px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  opacity: 0.62;
  filter: saturate(0.85) contrast(1.08);
  box-shadow: var(--shadow);
}

.inline-photo,
.media-stack img,
.service-card img,
.service-row img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(40, 224, 255, 0.14), rgba(142, 162, 255, 0.12)),
    var(--panel);
}

.inline-photo {
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  filter: saturate(0.58) contrast(1.08);
}

.mesh-card,
.mini-card,
.service-card,
.angled-panel,
.contact-card,
.service-row {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.core-card {
  position: absolute;
  top: 92px;
  left: 50%;
  width: min(330px, 78vw);
  min-height: 240px;
  padding: 28px;
  transform: translateX(-50%) skewX(-5deg);
}

.core-card > * {
  display: block;
  transform: skewX(5deg);
}

.core-card span {
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.core-card strong {
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(4rem, 9vw, 6.8rem);
  line-height: 0.9;
}

.core-card small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.route {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.72;
  animation: drift 6s ease-in-out infinite;
}

.route-one {
  top: 170px;
  left: 8%;
  width: 82%;
  transform: rotate(-18deg);
}

.route-two {
  right: 4%;
  bottom: 180px;
  width: 76%;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  transform: rotate(21deg);
  animation-delay: 1.4s;
}

.mini-card {
  position: absolute;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 850;
}

.mini-one {
  top: 44px;
  left: 0;
}

.mini-two {
  right: 0;
  top: 300px;
}

.mini-three {
  bottom: 54px;
  left: 42px;
}

.section {
  padding: 90px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.angled-panel h2,
.two-column h2,
.contact-layout h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 280px;
  padding: 16px;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.service-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  filter: saturate(0.58) contrast(1.08);
}

.service-card h3,
.service-card p,
.service-card .service-index {
  margin-left: 10px;
  margin-right: 10px;
}

.service-card:hover {
  border-color: rgba(40, 224, 255, 0.66);
  box-shadow: 0 26px 78px rgba(40, 224, 255, 0.14);
  transform: translateY(-6px);
}

.service-index,
.service-row > span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--violet);
  font-weight: 950;
}

.service-card h3,
.service-row h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.14;
}

.split-section,
.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.angled-panel {
  padding: 32px;
  clip-path: polygon(0 0, 96% 0, 100% 18%, 100% 100%, 4% 100%, 0 82%);
}

.angled-panel .button {
  margin-top: 20px;
}

.signal-list {
  display: grid;
  gap: 14px;
}

.signal-list div {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signal-list span {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-list strong {
  color: var(--ink);
}

.media-stack {
  display: grid;
  gap: 16px;
}

.media-stack img {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  filter: saturate(0.58) contrast(1.08);
  box-shadow: var(--shadow);
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(40, 224, 255, 0.08), rgba(142, 162, 255, 0.06)),
    rgba(255, 255, 255, 0.03);
  border-block: 1px solid var(--line);
}

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

.capability-grid span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 820;
  text-align: center;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-section h2 {
  max-width: 820px;
}

.page-hero {
  padding: 90px clamp(18px, 5vw, 72px) 78px;
  background:
    linear-gradient(135deg, rgba(40, 224, 255, 0.13), rgba(142, 162, 255, 0.08)),
    rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--line);
}

.rich-copy p {
  font-size: 1.05rem;
}

.service-stack {
  display: grid;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) 56px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  transition: transform 190ms ease, border-color 190ms ease;
}

.service-row img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  filter: saturate(0.58) contrast(1.08);
}

.service-row:hover {
  border-color: rgba(142, 162, 255, 0.58);
  transform: translateX(6px);
}

.service-row p {
  margin-bottom: 0;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 30px;
  font-style: normal;
}

.contact-card strong {
  color: var(--white);
  font-size: 1.25rem;
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  margin-top: 12px;
  color: var(--cyan);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #03090e;
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer address {
  display: grid;
  gap: 6px;
  margin: 0;
  font-style: normal;
}

.site-footer a {
  color: var(--cyan);
  overflow-wrap: anywhere;
}

.reveal {
  animation: riseIn 680ms ease both;
}

.reveal-delay {
  animation-delay: 150ms;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.55);
  }
}

@keyframes drift {
  0%,
  100% {
    opacity: 0.42;
    filter: blur(0);
  }
  50% {
    opacity: 0.9;
    filter: blur(1px);
  }
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .split-section,
  .two-column,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .value-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    display: grid;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 0.82rem;
  }

  .nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero,
  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.12rem, 11vw, 3.15rem);
  }

  .mesh-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .core-card,
  .mini-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .core-card > * {
    transform: none;
  }

  .route {
    display: none;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .angled-panel {
    clip-path: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
