:root {
  color-scheme: dark;
  --bg: #05070a;
  --bg-soft: #090d13;
  --panel: rgba(13, 19, 27, 0.78);
  --panel-solid: #0c121a;
  --line: rgba(154, 194, 232, 0.18);
  --line-strong: rgba(118, 196, 255, 0.36);
  --text: #f6f8fb;
  --muted: #a8b4c1;
  --subtle: #758394;
  --blue: #1f83ff;
  --blue-soft: #8dd1ff;
  --yellow: #ffd24a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(57, 168, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #05070a 0%, #080b10 48%, #05070a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(5, 7, 10, 0.84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 154px;
  height: auto;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  color: #dbe7f2;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-contact,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-contact {
  justify-content: flex-end;
  gap: 20px;
  border: 0;
  color: #e5eef7;
  background: transparent;
  font-size: 13px;
  text-transform: none;
}

.button.primary {
  border-color: rgba(31, 131, 255, 0.86);
  color: #ffffff;
  background: linear-gradient(135deg, #1269e6, #2f95ff);
  box-shadow: 0 12px 38px rgba(31, 131, 255, 0.24);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.button.full {
  width: 100%;
}

.button:hover,
.header-contact a:hover,
.button:focus-visible,
.header-contact a:focus-visible {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: 118px max(22px, calc((100vw - var(--max)) / 2)) 54px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 12%, rgba(31, 131, 255, 0.18), transparent 19rem),
    linear-gradient(90deg, #030507 0%, #060b10 44%, #020305 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.64), transparent 62%),
    linear-gradient(180deg, rgba(5, 7, 10, 0), rgba(5, 7, 10, 0.92));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 6.4vw, 76px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.hero p {
  max-width: 500px;
  margin: 24px 0 0;
  color: #c9d6e0;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
  color: #e8f1fa;
  font-size: 15px;
}

.hero-contact a::before,
.header-contact a::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 210, 74, 0.7);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 480px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.06);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.42), transparent 24%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.06), rgba(5, 7, 10, 0.32));
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.scroll-cue span {
  width: 4px;
  height: 14px;
  border-radius: 999px;
  background: var(--blue);
  animation: cue 1.5s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateY(-8px); opacity: 0.35; }
  50% { transform: translateY(8px); opacity: 1; }
}

.trusted {
  margin-top: -1px;
  padding: 26px max(22px, calc((100vw - var(--max)) / 2)) 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 13, 19, 0.92);
}

.logo-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(80px, 1fr));
  gap: 34px;
  align-items: center;
}

.logo-track img {
  max-height: 45px;
  width: auto;
  margin: 0 auto;
  opacity: 0.78;
  filter: grayscale(1) brightness(1.45);
}

.trust-caption {
  margin: 14px 0 0;
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: 72px max(22px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.58fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.split {
  grid-template-columns: 1fr auto;
  align-items: center;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  font-weight: 900;
}

.section-title.centered {
  margin-bottom: 42px;
  text-align: center;
  text-transform: uppercase;
}

.section-title.centered h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: 0.08em;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.section-heading p,
.equipment-copy p,
.coverage-panel p,
.contact-copy p,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: var(--line);
}

.service-card {
  min-height: 224px;
  padding: 26px 24px;
  text-align: center;
  background: #060a0f;
}

.line-icon {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 42px;
  margin-bottom: 25px;
  color: var(--blue);
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.line-icon.monitor::before,
.line-icon.play::before,
.line-icon.qt::before {
  inset: 5px 4px 9px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.line-icon.monitor::after {
  left: 18px;
  right: 18px;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.line-icon.play::after {
  left: 21px;
  top: 15px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.line-icon.qt::after {
  right: 6px;
  bottom: 7px;
  width: 11px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.line-icon.remote::before {
  left: 5px;
  right: 5px;
  top: 7px;
  height: 28px;
  border-top: 3px solid currentColor;
  border-radius: 50%;
}

.line-icon.remote::after {
  left: 21px;
  top: 27px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 -11px 0 -2px currentColor;
}

.line-icon.gear::before {
  left: 9px;
  top: 5px;
  width: 30px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.line-icon.gear::after {
  left: 20px;
  top: 16px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.equipment {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: center;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.92) 33%, rgba(5, 7, 10, 0.38) 100%),
    #070b11;
}

.equipment-copy {
  padding: 62px 0;
}

.equipment-copy ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #dce8f2;
}

.equipment-copy li {
  position: relative;
  padding-left: 24px;
  line-height: 1.48;
}

.equipment-copy li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 210, 74, 0.42);
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.equipment-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.equipment-gallery img {
  width: 100%;
  height: 246px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.equipment-gallery .wide {
  grid-column: 1 / -1;
  height: 356px;
}

.poster-controls {
  display: flex;
  gap: 8px;
}

.poster-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.poster-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.poster-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(158px, 206px);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.poster-rail img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease;
}

.poster-rail img:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 210, 74, 0.58);
}

.coverage {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 74px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.72) 42%, rgba(5, 7, 10, 0.96)),
    #060a0f;
}

.coverage-copy h2 {
  max-width: 470px;
  text-transform: uppercase;
}

.coverage-copy p {
  margin: 24px 0 26px;
  color: var(--muted);
  line-height: 1.55;
}

.coverage-map {
  min-width: 0;
  position: relative;
  padding: 26px 22px;
  border-top: 1px solid rgba(154, 194, 232, 0.18);
  border-bottom: 1px solid rgba(154, 194, 232, 0.14);
  background:
    radial-gradient(circle at 13% 56%, rgba(31, 131, 255, 0.16), transparent 8rem),
    linear-gradient(90deg, rgba(6, 10, 15, 0), rgba(31, 131, 255, 0.05) 48%, rgba(6, 10, 15, 0));
  overflow: hidden;
}

.coverage-map::before,
.coverage-map::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.coverage-map::before {
  background: linear-gradient(90deg, #060a0f 0%, transparent 10%, transparent 88%, #060a0f 100%);
}

.coverage-map::after {
  background: linear-gradient(180deg, #060a0f 0%, transparent 18%, transparent 82%, #060a0f 100%);
}

.coverage-map img {
  position: relative;
  z-index: 1;
  width: 100%;
  opacity: 0.9;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.42));
}

.about-strip {
  display: grid;
  grid-template-columns: minmax(260px, 1.28fr) repeat(4, minmax(150px, 1fr));
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: #060a0f;
}

.about-copy,
.about-stat {
  min-height: 132px;
  padding: 26px 22px;
  background: #060a0f;
  border-left: 1px solid var(--line);
}

.about-copy {
  border-left: 0;
}

.about-copy h2 {
  font-size: clamp(23px, 2.4vw, 30px);
  line-height: 1.05;
  text-transform: uppercase;
}

.about-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.44;
}

.about-stat {
  display: grid;
  align-content: center;
  text-align: center;
}

.about-stat strong {
  color: #ffffff;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1;
}

.about-stat span {
  margin-top: 9px;
  color: #d4e0ea;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.related {
  padding: 48px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070a0f;
}

.related h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.related-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.related-logos img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 36px;
  background: rgba(255, 255, 255, 0.03);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 58px;
  align-items: start;
  padding: 82px max(22px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(31, 131, 255, 0.2), transparent 30%),
    #06101c;
}

.contact-copy p {
  max-width: 650px;
  margin-top: 22px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.contact-link {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.contact-link span {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  color: #eef7ff;
  font-size: clamp(18px, 3vw, 24px);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(22px, calc((100vw - var(--max)) / 2)) 96px;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 150px;
}

.footer p {
  max-width: 520px;
  text-align: right;
  font-size: 14px;
}

.mobile-actions {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(16px);
}

.mobile-actions a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 6px;
  color: #071018;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
  }

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

  .nav,
  .header-contact {
    display: none;
  }

  .nav.is-open {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(6, 10, 15, 0.96);
    backdrop-filter: blur(18px);
  }

  .nav.is-open a {
    padding: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 92svh;
    padding-top: 118px;
  }

  .service-grid,
  .equipment,
  .section-heading,
  .contact,
  .coverage,
  .about-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 350px;
    border-left: 0;
  }

  .section-heading {
    gap: 18px;
  }

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

  .service-card .icon {
    margin-bottom: 42px;
  }

  .equipment {
    gap: 10px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .equipment-copy {
    padding: 0;
  }

  .logo-track {
    grid-template-columns: repeat(4, minmax(80px, 1fr));
  }

  .footer {
    display: grid;
    justify-items: start;
  }

  .footer p {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 116px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section,
  .equipment,
  .contact,
  .related {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .coverage {
    gap: 28px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .coverage-map {
    padding: 18px 8px;
    margin-left: -8px;
    margin-right: -8px;
  }

  .about-copy,
  .about-stat {
    min-height: auto;
    padding: 24px 20px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-copy {
    border-top: 0;
  }

  .service-grid {
    gap: 1px;
  }

  .logo-track {
    grid-template-columns: repeat(2, minmax(80px, 1fr));
  }

  .equipment-gallery {
    grid-template-columns: 1fr;
  }

  .equipment-gallery .wide,
  .equipment-gallery img {
    height: 235px;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .poster-controls {
    display: none;
  }

  .poster-rail {
    grid-auto-columns: 154px;
  }

  .location-grid,
  .related-logos {
    grid-template-columns: 1fr;
  }

  .related-logos img {
    height: 122px;
  }

  .contact-card {
    padding: 12px;
  }

  .mobile-actions {
    display: grid;
  }
}

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