:root {
  color-scheme: dark;
  --bg: #000;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.2);
  --glow: rgba(255, 255, 255, 0.72);
  --soft-glow: rgba(255, 255, 255, 0.22);
  --panel: rgba(255, 255, 255, 0.035);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.14), transparent 22rem),
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.07), transparent 18rem),
    radial-gradient(circle at 82% 58%, rgba(255, 255, 255, 0.06), transparent 22rem),
    #000;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.09) 45%, transparent 60%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 4px);
  opacity: 0.32;
  animation: lightSweep 9s ease-in-out infinite alternate;
}

.electric-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}

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

.cursor-glow {
  position: fixed;
  left: var(--cursor-x, 50vw);
  top: var(--cursor-y, 20vh);
  z-index: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 62%);
  transform: translate(-50%, -50%);
  filter: blur(10px);
  opacity: 0.9;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-shadow: 0 0 18px var(--soft-glow);
}

.brand-mark {
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 18px var(--glow), inset 0 0 12px rgba(255, 255, 255, 0.2);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  font-size: 0.82rem;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--line);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
  outline: none;
}

.section-band {
  position: relative;
  padding: 88px 0;
}

.hero {
  display: grid;
  min-height: calc(100vh - 84px);
  align-content: center;
  justify-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-aura {
  position: absolute;
  inset: 5% 10% auto;
  height: 45rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 57%);
  filter: blur(36px);
  opacity: 0.84;
  animation: breathe 5.8s ease-in-out infinite;
}

.hero-logo-wrap {
  position: relative;
  z-index: 1;
  width: min(520px, 86vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: -28px;
}

.hero-logo-wrap::before {
  position: absolute;
  inset: 19%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 76px rgba(255, 255, 255, 0.2);
  animation: ringPulse 4.8s ease-in-out infinite;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.3));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.28);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 8vw, 7.5rem);
  font-weight: 600;
  line-height: 0.92;
  text-wrap: balance;
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.42),
    0 0 56px rgba(255, 255, 255, 0.22);
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 2.3vw, 1.32rem);
  line-height: 1.75;
  overflow-wrap: break-word;
}

.hero-status {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 42px rgba(255, 255, 255, 0.12);
}

.pulse-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px 6px rgba(255, 255, 255, 0.48);
  animation: dotPulse 1.8s ease-in-out infinite;
}

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

.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.7rem);
  font-weight: 560;
  line-height: 1;
  text-wrap: balance;
  text-shadow: 0 0 34px rgba(255, 255, 255, 0.22);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.2), transparent 38%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  position: relative;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 590;
  line-height: 1.25;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.24);
}

.service-card p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scope-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scope-grid span,
.tech-grid span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.06);
}

.scope-grid span {
  padding: 10px 14px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.11), transparent 46%),
    rgba(255, 255, 255, 0.026);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 18px rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.scope-grid span:hover {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 54px);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-note {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

address {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.5;
}

address strong {
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.32);
}

address a {
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.32);
  transition: opacity 180ms ease, text-shadow 180ms ease;
}

address a:hover,
address a:focus-visible {
  opacity: 0.84;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.62);
  outline: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 0 40px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.04);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.03);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes lightSweep {
  0% {
    transform: translateX(-18%);
  }

  100% {
    transform: translateX(18%);
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 0 16px;
  }

  .site-header {
    position: relative;
    padding: 18px 0;
  }

  .brand-link {
    letter-spacing: 0.24em;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .section-band {
    padding: 62px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-logo-wrap {
    width: min(330px, calc(100vw - 32px));
    margin-bottom: -16px;
  }

  h1 {
    font-size: clamp(2.35rem, 15vw, 4.6rem);
  }

  .hero-status {
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 8px;
    text-align: left;
    width: 100%;
    overflow: hidden;
  }

  .hero-status span:last-child {
    flex: 1 1 220px;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .service-card {
    padding: 20px;
  }

  .scope-grid,
  .tech-grid {
    gap: 9px;
  }

  .scope-grid span,
  .tech-grid span {
    padding: 10px 12px;
    font-size: 0.86rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@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;
  }
}
