:root {
  color-scheme: dark;
  --bg: #020307;
  --bg-soft: #060a11;
  --panel: #0a1019;
  --panel-strong: #101824;
  --text: #f7f9fc;
  --text-muted: #b6c1d2;
  --text-soft: #77859a;
  --line: rgba(87, 151, 255, 0.24);
  --line-bright: rgba(0, 150, 255, 0.72);
  --blue: #007cff;
  --blue-bright: #12c2ff;
  --chrome: #dfe6ee;
  --steel: #9eabb9;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 72, 175, 0.32);
  --max-width: 1180px;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: "Segoe UI Black", "Arial Black", var(--body-font);
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 96px;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  overflow-x: clip;
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 10%, rgba(0, 140, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 6% 38%, rgba(0, 88, 255, 0.18), transparent 22rem),
    linear-gradient(180deg, #04070c 0%, var(--bg) 58rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 7px),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(112deg, transparent 0 56%, rgba(0, 150, 255, 0.16) 56.2%, transparent 56.8%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 5px);
  opacity: 0.42;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 100px;
  padding: 12px clamp(16px, 3.4vw, 42px);
}

.site-header::before {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 124px;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(0, 2, 7, 0.96), rgba(0, 2, 7, 0.66) 58%, transparent);
  backdrop-filter: blur(14px);
}

.brand-link {
  position: relative;
  display: grid;
  align-items: center;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  color: var(--chrome);
  place-items: center;
}

.brand-link::before {
  position: absolute;
  inset: -8px;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(18, 194, 255, 0.3), rgba(0, 124, 255, 0.1) 48%, transparent 72%),
    rgba(0, 3, 8, 0.64);
  filter: blur(0.2px);
}

.brand-emblem {
  width: 76px;
  flex: 0 0 auto;
  aspect-ratio: 1;
  border: 2px solid rgba(18, 194, 255, 0.74);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 26px rgba(18, 194, 255, 0.62),
    0 0 58px rgba(0, 124, 255, 0.46);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-bright);
  box-shadow: 0 0 14px rgba(18, 194, 255, 0.9);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

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

.nav-cta {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  color: var(--chrome);
  box-shadow: inset 0 0 18px rgba(0, 124, 255, 0.08);
}

.nav-cta::after {
  display: none;
}

.hero-section {
  position: relative;
  display: grid;
  min-height: clamp(430px, 35vw, 560px);
  overflow: hidden;
  background: #000;
  place-items: center;
  isolation: isolate;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.06);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.04) 28%, rgba(0, 0, 0, 0.04) 66%, rgba(0, 0, 0, 0.72) 92%, var(--bg)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.42));
}

.hero-section::before,
.hero-section::after {
  display: none;
}

.intro-section {
  position: relative;
  width: calc(100% - 32px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(24px, 3.4vw, 36px) 0 clamp(58px, 8vw, 96px);
  border-top: 1px solid rgba(18, 194, 255, 0.48);
}

.intro-section::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: min(420px, 70%);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue-bright), transparent);
  box-shadow: 0 0 22px rgba(18, 194, 255, 0.92);
}

.hero-content {
  display: grid;
  gap: 0;
  align-items: start;
}

.hero-content h1 {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-family: var(--body-font);
  font-size: clamp(2.05rem, 3.35vw, 3.65rem);
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.75);
}

.hero-content h1::after {
  display: block;
  width: min(360px, 70%);
  height: 3px;
  margin: 24px 0 0;
  content: "";
  background: linear-gradient(90deg, var(--blue-bright), rgba(255, 255, 255, 0));
  box-shadow: 0 0 20px rgba(18, 194, 255, 0.95);
}

.hero-content p {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: #001327;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 0 34px rgba(0, 140, 255, 0.42);
}

.button-secondary {
  color: var(--chrome);
  border-color: var(--line-bright);
  background: rgba(2, 7, 15, 0.74);
}

.services-section,
.capabilities-section,
.social-section,
.contact-section {
  width: calc(100% - 32px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 6vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.capabilities-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--chrome);
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 4.45rem);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 22px;
  min-height: 346px;
  padding: clamp(30px, 4vw, 44px) clamp(18px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(130, 166, 210, 0.34);
  border-radius: var(--radius);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(18, 194, 255, 0.16), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(12, 18, 29, 0.96), rgba(3, 7, 13, 0.98));
  box-shadow: 0 20px 64px rgba(0, 50, 130, 0.28);
}

.service-item::before {
  position: absolute;
  top: 0;
  right: 18px;
  width: 1px;
  height: 72px;
  content: "";
  background: linear-gradient(180deg, var(--blue-bright), transparent);
  box-shadow: 0 0 16px rgba(18, 194, 255, 0.9);
}

.service-item + .service-item {
  border-left: 1px solid rgba(130, 166, 210, 0.34);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  color: var(--blue-bright);
  background: rgba(0, 124, 255, 0.12);
  box-shadow: inset 0 0 26px rgba(0, 140, 255, 0.22), 0 0 22px rgba(0, 140, 255, 0.16);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.service-item h3 {
  max-width: 260px;
  margin: 0;
  color: var(--text);
  font-family: var(--display-font);
  font-size: clamp(1.05rem, 1.45vw, 1.38rem);
  font-weight: 950;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-item p,
.capabilities-section p,
.contact-section p {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.capabilities-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  padding: clamp(62px, 8vw, 104px) 0;
  border-top: 1px solid var(--line);
}

.capabilities-copy {
  position: sticky;
  top: 110px;
}

.process-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px 22px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(105deg, rgba(0, 124, 255, 0.16), transparent 36%),
    var(--panel);
}

.process-list span {
  color: var(--blue-bright);
  font-size: 0.92rem;
  font-weight: 950;
}

.process-list h3 {
  margin: 0;
  color: var(--chrome);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 950;
}

.process-list p {
  grid-column: 2;
  margin-top: -8px;
}

.social-section {
  padding: clamp(34px, 5vw, 68px) 0 clamp(56px, 7vw, 94px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.social-feature {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 26px);
  align-items: center;
  min-height: 238px;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(130, 166, 210, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(12, 18, 29, 0.96), rgba(3, 7, 13, 0.98));
  box-shadow: 0 24px 74px rgba(0, 50, 130, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-feature::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.62;
}

.youtube-feature::before {
  background: radial-gradient(circle at 12% 18%, rgba(255, 0, 0, 0.3), transparent 18rem);
}

.facebook-feature::before {
  background: radial-gradient(circle at 12% 18%, rgba(24, 119, 242, 0.34), transparent 18rem);
}

.social-feature:hover,
.social-feature:focus-visible {
  border-color: rgba(18, 194, 255, 0.82);
  box-shadow: 0 26px 90px rgba(0, 124, 255, 0.32);
  transform: translateY(-3px);
}

.platform-logo {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(82px, 9vw, 112px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: rgba(1, 5, 12, 0.72);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.08), 0 0 38px rgba(0, 124, 255, 0.2);
}

.platform-logo svg {
  width: 64%;
  height: auto;
}

.youtube-logo {
  border: 1px solid rgba(255, 0, 0, 0.72);
  box-shadow: inset 0 0 28px rgba(255, 0, 0, 0.12), 0 0 42px rgba(255, 0, 0, 0.28);
}

.youtube-logo path:first-child {
  fill: #ff0000;
}

.youtube-logo path:last-child {
  fill: #ffffff;
}

.facebook-logo {
  border: 1px solid rgba(24, 119, 242, 0.82);
  box-shadow: inset 0 0 28px rgba(24, 119, 242, 0.15), 0 0 42px rgba(24, 119, 242, 0.34);
}

.facebook-logo path:first-child {
  fill: #1877f2;
}

.facebook-logo path:last-child {
  fill: #ffffff;
}

.social-feature-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.social-feature-label {
  color: var(--blue-bright);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.youtube-feature .social-feature-label {
  color: #ff5252;
}

.facebook-feature .social-feature-label {
  color: #6db0ff;
}

.social-feature-title {
  color: var(--text);
  font-family: var(--display-font);
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.social-feature-text {
  max-width: 30rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.58;
}

.social-feature-action {
  position: relative;
  z-index: 1;
  grid-column: 2;
  justify-self: start;
  min-height: 42px;
  padding: 13px 16px;
  border: 1px solid rgba(18, 194, 255, 0.68);
  border-radius: var(--radius);
  color: var(--chrome);
  font-size: 0.8rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(0, 124, 255, 0.12);
}

.contact-section {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 84px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background:
    linear-gradient(105deg, rgba(0, 124, 255, 0.22), transparent 48%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.contact-emblem {
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid rgba(18, 194, 255, 0.55);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(0, 140, 255, 0.48);
}

.contact-section h2 {
  font-size: clamp(1.75rem, 3.1vw, 3rem);
}

.contact-actions,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: calc(100% - 32px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.88rem;
}

.site-footer a,
.footer-socials a {
  color: var(--chrome);
  font-weight: 850;
}

.footer-socials a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--blue-bright);
}

@media (max-width: 920px) {
  .site-header,
  .section-heading,
  .hero-content,
  .capabilities-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: clamp(480px, 56vw, 600px);
  }

  .hero-banner {
    object-position: center center;
  }

  .hero-actions {
    justify-content: flex-start;
    margin-top: 28px;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-feature-list {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(3) {
    border-left: 1px solid rgba(130, 166, 210, 0.34);
  }

  .capabilities-copy {
    position: static;
  }

  .contact-section {
    justify-items: start;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  section,
  [id] {
    scroll-margin-top: 152px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-height: 130px;
    padding-top: 12px;
  }

  .site-header::before {
    height: 152px;
  }

  .brand-link {
    width: 66px;
    height: 66px;
  }

  .brand-emblem {
    width: 66px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    gap: 10px 14px;
    margin-left: 0;
    font-size: 0.78rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-section {
    min-height: clamp(320px, 72vw, 390px);
    place-items: center;
  }

  .hero-banner {
    object-fit: contain;
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 24%, transparent 68%, var(--bg)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 26%, transparent 74%, rgba(0, 0, 0, 0.22));
  }

  .intro-section {
    padding: 28px 0 58px;
  }

  .section-heading,
  .section-heading p,
  .social-feature-text {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .section-heading p,
  .social-feature-text {
    width: min(100%, 22rem);
  }

  .hero-content h1 {
    font-size: clamp(1.85rem, 9.5vw, 3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 310px);
  }

  .button {
    width: 100%;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 310px);
  }

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

  .social-feature {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: 0;
  }

  .platform-logo {
    width: 78px;
  }

  .social-feature-action {
    grid-column: auto;
  }

  .service-item {
    min-height: 0;
  }

  .service-item + .service-item {
    border-left: 1px solid rgba(130, 166, 210, 0.34);
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .process-list p {
    grid-column: auto;
    margin-top: 0;
  }

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

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