:root {
  --ink: #edf8ff;
  --muted: #9db5c8;
  --deep: #050914;
  --panel: rgba(8, 19, 35, 0.82);
  --panel-strong: rgba(10, 25, 48, 0.94);
  --line: rgba(55, 225, 255, 0.22);
  --line-strong: rgba(55, 225, 255, 0.58);
  --blue: #2788ff;
  --cyan: #37e1ff;
  --green: #62f7b5;
  --violet: #8c7cff;
  --warning: #ffcf5c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  --mx: 50%;
  --my: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(39, 136, 255, 0.22), transparent 30%),
    radial-gradient(circle at 6% 28%, rgba(55, 225, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #050914 0%, #07101f 44%, #091423 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

main {
  background:
    radial-gradient(circle at 12% 35%, rgba(39, 136, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 62%, rgba(98, 247, 181, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(55, 225, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(55, 225, 255, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 62px 62px, 62px 62px;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(55, 225, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 225, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

body::after {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  background-image: url("public/assets/cyber-circuit-bg.svg");
  background-repeat: repeat-y;
  background-position: top right;
  background-size: min(980px, 72vw) auto;
  opacity: 0.18;
  animation: circuit-float 28s linear infinite;
}

.ambient-fx {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-fx span {
  position: absolute;
  width: 58vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(55, 225, 255, 0.62), rgba(98, 247, 181, 0.34), transparent);
  box-shadow: 0 0 34px rgba(55, 225, 255, 0.32);
  opacity: 0.34;
  transform: rotate(-18deg);
  animation: beam-slide 10s linear infinite;
}

.ambient-fx span:nth-child(1) {
  top: 16%;
  left: -30%;
}

.ambient-fx span:nth-child(2) {
  top: 48%;
  left: -44%;
  width: 72vw;
  animation-delay: -4s;
  animation-duration: 14s;
}

.ambient-fx span:nth-child(3) {
  top: 78%;
  left: -26%;
  width: 50vw;
  animation-delay: -7s;
  animation-duration: 12s;
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 68px);
  background: rgba(4, 10, 22, 0.8);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 30px rgba(55, 225, 255, 0.08);
  backdrop-filter: blur(20px);
}

.site-header::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
  animation: scan-x 4s linear infinite;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 230px;
  height: 48px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 0 12px rgba(55, 225, 255, 0.38))
    drop-shadow(0 0 24px rgba(39, 136, 255, 0.22));
  animation: logo-pulse 4.2s ease-in-out infinite;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: #cceeff;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  opacity: 0.86;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--green));
  box-shadow: 0 0 14px rgba(55, 225, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(7, 16, 32, 0.9);
  box-shadow: 0 0 24px rgba(55, 225, 255, 0.14);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cyan);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: 90vh;
  padding: 100px clamp(20px, 5vw, 68px) 34px;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  inset: 80px clamp(20px, 5vw, 68px) 34px auto;
  width: min(45vw, 620px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(
    calc((var(--mx) - 50%) * 0.025),
    calc((var(--my) - 50%) * 0.025)
  );
}

.hero-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(55, 225, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(55, 225, 255, 0.05);
  animation: orbit-spin 18s linear infinite;
}

.hero-orbit span:nth-child(2) {
  inset: 15%;
  border-color: rgba(98, 247, 181, 0.16);
  animation-duration: 13s;
  animation-direction: reverse;
}

.hero-orbit span:nth-child(3) {
  inset: 30%;
  border-style: dashed;
  animation-duration: 9s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(55, 225, 255, 0.1), transparent 31%),
    radial-gradient(circle at 78% 30%, rgba(98, 247, 181, 0.16), transparent 28%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  mask-image: linear-gradient(to bottom, #000 72%, transparent);
  animation: grid-drift 16s linear infinite;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 13% -10% auto auto;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(55, 225, 255, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(55, 225, 255, 0.22), transparent 34%),
    conic-gradient(from 120deg, transparent, rgba(55, 225, 255, 0.18), transparent, rgba(98, 247, 181, 0.12), transparent);
  filter: blur(1px);
  animation: glow-breathe 7s ease-in-out infinite;
}

.hero::after {
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(5, 9, 20, 0.95));
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(55, 225, 255, 0.34);
}

.hero .eyebrow::before {
  content: ">";
  margin-right: 8px;
  color: var(--green);
  text-shadow: 0 0 12px rgba(98, 247, 181, 0.76);
}

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

h1 {
  max-width: 810px;
  margin-bottom: 24px;
  color: #f7fcff;
  font-size: clamp(3rem, 5.1vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 0 42px rgba(55, 225, 255, 0.14);
  animation: title-lock 900ms ease-out both;
}

h2 {
  margin-bottom: 16px;
  color: #f4fbff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: #f2fbff;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: #bdd2e1;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

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

.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: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan) 58%, var(--green));
  color: #02101f;
  box-shadow:
    0 0 26px rgba(55, 225, 255, 0.34),
    0 14px 34px rgba(0, 0, 0, 0.3);
  animation: button-charge 2.8s ease-in-out infinite;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(8, 19, 35, 0.72);
  color: #dff8ff;
  box-shadow: inset 0 0 22px rgba(55, 225, 255, 0.08);
}

.hero-visual {
  min-height: 470px;
  border-radius: 8px;
}

.hero-image-card,
.security-console,
.signal-map,
.stats-band div,
.service-card,
.process-list li,
.provider-grid article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(13, 32, 58, 0.92), rgba(5, 13, 27, 0.9)),
    rgba(8, 19, 35, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
}

.hero-image-card::before,
.security-console::before,
.service-card::before,
.process-list li::before,
.provider-grid article::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(55, 225, 255, 0.16), transparent 26%, transparent 74%, rgba(98, 247, 181, 0.12));
  pointer-events: none;
}

.hero-image-card::after,
.security-console::after,
.service-card::after,
.process-list li::after,
.provider-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0 38%, rgba(55, 225, 255, 0.18) 48%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-70%);
  pointer-events: none;
}

.hero-image-card:hover::after,
.security-console:hover::after,
.service-card:hover::after,
.process-list li:hover::after,
.provider-grid article:hover::after {
  opacity: 1;
  animation: panel-sweep 850ms ease-out;
}

.hero-image-card {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 0;
  width: min(560px, 96%);
  height: 360px;
  overflow: hidden;
  border-color: rgba(55, 225, 255, 0.34);
  transform: translate3d(
    calc((var(--mx) - 50%) * 0.018),
    calc((var(--my) - 50%) * 0.012),
    0
  );
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(1.15) contrast(1.08);
  transform: scale(1.04);
  animation: image-scan 5s ease-in-out infinite;
}

.security-console {
  position: absolute;
  z-index: 6;
  right: 32px;
  bottom: 8px;
  width: min(390px, 88%);
  padding: 18px;
  color: #dff8ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  transform: translate3d(
    calc((var(--mx) - 50%) * 0.01),
    calc((var(--my) - 50%) * -0.01),
    0
  );
}

.console-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.console-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(55, 225, 255, 0.8);
  animation: node-pulse 1.9s ease-in-out infinite;
}

.console-top span:nth-child(2) {
  background: var(--green);
  animation-delay: 220ms;
}

.console-top span:nth-child(3) {
  background: var(--warning);
  animation-delay: 440ms;
}

.console-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-top: 1px solid rgba(55, 225, 255, 0.12);
  font-size: 0.78rem;
}

.console-line b {
  color: var(--green);
  font-weight: 900;
}

.console-line span {
  color: #bdd2e1;
  text-align: right;
}

.console-line span::after {
  content: "_";
  color: var(--cyan);
  animation: cursor-blink 1s steps(2, end) infinite;
}

.console-meter {
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(55, 225, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.console-meter i {
  display: block;
  width: 82%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  box-shadow: 0 0 18px rgba(55, 225, 255, 0.8);
  animation: meter-run 2.4s ease-in-out infinite;
}

.signal-map {
  position: absolute;
  inset: 56px 0 0 auto;
  width: min(94%, 560px);
  height: 360px;
  overflow: hidden;
  opacity: 0.28;
}

.signal-map::before {
  position: absolute;
  inset: 34px;
  content: "";
  border: 1px dashed rgba(55, 225, 255, 0.3);
  border-radius: 8px;
}

.signal-map::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(55, 225, 255, 0.08), transparent),
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(55, 225, 255, 0.045) 13px 14px);
  transform: translateX(-35%);
  animation: data-sweep 3.6s linear infinite;
}

.node,
.line {
  position: absolute;
  display: block;
}

.node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #07101f;
  border: 5px solid var(--cyan);
  box-shadow:
    0 0 0 8px rgba(55, 225, 255, 0.1),
    0 0 20px rgba(55, 225, 255, 0.55);
  animation: node-pulse 2.6s ease-in-out infinite;
}

.node-c,
.node-e {
  border-color: var(--green);
  box-shadow:
    0 0 0 8px rgba(98, 247, 181, 0.09),
    0 0 20px rgba(98, 247, 181, 0.5);
  animation-delay: 500ms;
}

.node-a {
  top: 76px;
  left: 70px;
}

.node-b {
  top: 132px;
  right: 86px;
}

.node-c {
  right: 170px;
  bottom: 92px;
}

.node-d {
  left: 118px;
  bottom: 118px;
}

.node-e {
  top: 210px;
  left: 238px;
}

.line {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 18px rgba(55, 225, 255, 0.58);
  transform-origin: left;
  animation: line-flow 2.8s ease-in-out infinite;
}

.line-a {
  top: 91px;
  left: 90px;
  width: 295px;
  transform: rotate(8deg);
}

.line-b {
  top: 145px;
  left: 252px;
  width: 196px;
  transform: rotate(-11deg);
}

.line-c {
  bottom: 130px;
  left: 136px;
  width: 220px;
  transform: rotate(-12deg);
}

.line-d {
  top: 225px;
  left: 254px;
  width: 106px;
  background: linear-gradient(90deg, var(--violet), var(--green));
  transform: rotate(42deg);
}

.threat-strip {
  position: relative;
  overflow: hidden;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 9, 19, 0.94);
  color: #bff8ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.threat-strip::before,
.threat-strip::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 16vw;
  content: "";
  pointer-events: none;
}

.threat-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--deep), transparent);
}

.threat-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--deep), transparent);
}

.threat-track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: ticker 24s linear infinite;
}

.threat-track span {
  position: relative;
  white-space: nowrap;
}

.threat-track span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(98, 247, 181, 0.8);
}

.stats-band,
.section,
.approach,
.contact-band,
.site-footer {
  padding-left: clamp(20px, 5vw, 68px);
  padding-right: clamp(20px, 5vw, 68px);
}

.stats-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(55, 225, 255, 0.16);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  min-height: 156px;
  padding: 34px;
}

.stats-band strong,
.why-grid strong,
.process-list strong,
.provider-grid h3 {
  display: block;
  margin-bottom: 8px;
  color: #f3fbff;
  font-size: 1.08rem;
}

.stats-band span,
.service-card p,
.why-grid span,
.process-list p,
.provider-grid p,
.approach-copy p {
  color: var(--muted);
}

.section {
  position: relative;
  padding-top: 88px;
  padding-bottom: 88px;
  overflow: hidden;
}

.section::before,
.approach::before,
.contact-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(135deg, transparent 0 48%, rgba(55, 225, 255, 0.08) 48% 49%, transparent 49%),
    radial-gradient(circle at 18% 18%, rgba(55, 225, 255, 0.1), transparent 18rem);
  pointer-events: none;
  opacity: 0.65;
}

.section > *,
.approach > *,
.contact-band > * {
  position: relative;
  z-index: 1;
}

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

.section-heading h2 {
  max-width: 900px;
}

.intro-section {
  background:
    url("public/assets/cyber-circuit-bg.svg") right 18% / min(760px, 55vw) auto no-repeat,
    linear-gradient(180deg, rgba(5, 9, 20, 0), rgba(8, 18, 34, 0.5)),
    transparent;
}

.providers {
  padding-top: 78px;
  background:
    url("public/assets/cyber-circuit-bg.svg") left 14% / min(760px, 55vw) auto no-repeat,
    radial-gradient(circle at 86% 18%, rgba(55, 225, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(5, 9, 20, 0.98), rgba(8, 18, 34, 0.74));
}

.providers .section-heading {
  max-width: 760px;
}

.providers .intro-copy {
  max-width: 860px;
}

.providers .section-heading {
  margin-bottom: 22px;
}

.intro-copy {
  max-width: 1020px;
  margin-bottom: 0;
  color: #b7ccdc;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.section-image {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 19, 35, 0.78);
  box-shadow: var(--shadow);
}

.section-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(55, 225, 255, 0.18), transparent 36%),
    linear-gradient(0deg, rgba(5, 9, 20, 0.38), transparent 42%);
  pointer-events: none;
}

.section-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.04);
}

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

.service-card,
.provider-grid article {
  min-height: 254px;
  padding: 26px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 46px;
  border: 1px solid rgba(55, 225, 255, 0.44);
  border-radius: 8px;
  background: rgba(55, 225, 255, 0.1);
  color: var(--cyan);
  font-weight: 950;
  box-shadow: inset 0 0 20px rgba(55, 225, 255, 0.12);
}

.approach {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  padding-top: 84px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 20% 30%, rgba(55, 225, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(3, 8, 18, 0.96), rgba(8, 20, 39, 0.96));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-copy {
  align-self: center;
}

.approach-copy p {
  max-width: 600px;
  color: #b7ccdc;
  font-size: 1.08rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-grid article {
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(55, 225, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(13, 32, 58, 0.68), rgba(5, 13, 27, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.why-grid strong {
  color: #f3fbff;
}

.why-grid span {
  color: #b7ccdc;
}

.process-section {
  background:
    url("public/assets/cyber-circuit-bg.svg") right center / min(840px, 60vw) auto no-repeat,
    linear-gradient(180deg, rgba(5, 9, 20, 0.98), rgba(8, 18, 34, 0.94));
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 230px;
  padding: 26px;
}

.process-list span,
.provider-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  border: 1px solid rgba(55, 225, 255, 0.44);
  border-radius: 8px;
  background: rgba(55, 225, 255, 0.1);
  color: var(--cyan);
  font-weight: 950;
  box-shadow: inset 0 0 20px rgba(55, 225, 255, 0.12);
}

.process-list p,
.provider-grid p {
  margin-bottom: 0;
}

.provider-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 24px;
}

.provider-grid article {
  min-height: 286px;
}

.provider-grid img {
  width: 74px;
  height: 54px;
  margin-bottom: 30px;
  padding: 10px;
  object-fit: contain;
  border: 1px solid rgba(55, 225, 255, 0.28);
  border-radius: 8px;
  background: rgba(230, 250, 255, 0.92);
  box-shadow:
    0 0 24px rgba(55, 225, 255, 0.14),
    inset 0 0 18px rgba(39, 136, 255, 0.08);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 58px;
  padding-bottom: 58px;
  background:
    linear-gradient(120deg, rgba(39, 136, 255, 0.22), rgba(55, 225, 255, 0.13)),
    rgba(8, 20, 39, 0.92);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-band h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 116px;
  color: #9db5c8;
  font-weight: 700;
}

.site-footer img {
  width: 210px;
  filter: drop-shadow(0 0 14px rgba(55, 225, 255, 0.32));
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 14px;
    font-size: 0.84rem;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

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

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

  .provider-grid article:last-child {
    grid-column: 1 / -1;
  }

  .hero-orbit {
    width: min(78vw, 620px);
    inset: 150px 0 auto auto;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    width: 188px;
    height: 44px;
  }

  .nav-toggle {
    position: relative;
    z-index: 31;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 30;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    background: rgba(4, 10, 22, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    transform: translateY(-125%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(55, 225, 255, 0.14);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    gap: 24px;
    padding-top: 96px;
    padding-bottom: 18px;
  }

  .hero-orbit {
    inset: 96px -34vw auto auto;
    width: 92vw;
    opacity: 0.52;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.36rem, 10vw, 3.05rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-copy {
    margin-bottom: 22px;
  }

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

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

  .hero-image-card {
    display: none;
  }

  .security-console {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 14px;
  }

  .console-line {
    display: block;
    font-size: 0.7rem;
  }

  .console-line span {
    display: block;
    margin-top: 2px;
    text-align: left;
  }

  .signal-map {
    display: none;
  }

  .threat-strip {
    font-size: 0.68rem;
  }

  .threat-track {
    gap: 24px;
    animation-duration: 18s;
  }

  .stats-band,
  .section-heading,
  .approach,
  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .contact-band,
  .site-footer {
    display: grid;
  }

  .stats-band div {
    min-height: auto;
    padding: 26px 20px;
  }

  .service-grid,
  .why-grid,
  .process-list,
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .service-card,
  .process-list li,
  .provider-grid article {
    min-height: auto;
  }

  .provider-grid article:last-child {
    grid-column: auto;
  }

  .service-icon {
    margin-bottom: 30px;
  }

  body::after {
    background-size: 720px auto;
    opacity: 0.1;
  }

  .ambient-fx span {
    opacity: 0.18;
  }

  .section::before,
  .approach::before,
  .contact-band::before {
    opacity: 0.38;
  }
}

@keyframes circuit-float {
  0% {
    background-position: top right;
  }
  100% {
    background-position: right 700px;
  }
}

@keyframes beam-slide {
  0% {
    transform: translateX(0) rotate(-18deg);
  }
  100% {
    transform: translateX(160vw) rotate(-18deg);
  }
}

@keyframes scan-x {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes grid-drift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 120px 0, 0 0, 0 56px;
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes orbit-spin {
  0% {
    transform: rotate(0deg) scaleX(1);
  }
  100% {
    transform: rotate(360deg) scaleX(1.18);
  }
}

@keyframes title-lock {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(18px);
  }
  72% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  82% {
    text-shadow:
      2px 0 0 rgba(55, 225, 255, 0.55),
      -2px 0 0 rgba(98, 247, 181, 0.35);
  }
  100% {
    text-shadow: 0 0 42px rgba(55, 225, 255, 0.14);
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    filter:
      drop-shadow(0 0 12px rgba(55, 225, 255, 0.34))
      drop-shadow(0 0 24px rgba(39, 136, 255, 0.18));
  }
  50% {
    filter:
      drop-shadow(0 0 18px rgba(55, 225, 255, 0.74))
      drop-shadow(0 0 36px rgba(98, 247, 181, 0.22));
  }
}

@keyframes button-charge {
  0%,
  100% {
    box-shadow:
      0 0 24px rgba(55, 225, 255, 0.28),
      0 14px 34px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 36px rgba(55, 225, 255, 0.62),
      0 0 18px rgba(98, 247, 181, 0.32),
      0 14px 34px rgba(0, 0, 0, 0.3);
  }
}

@keyframes panel-sweep {
  0% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(80%);
  }
}

@keyframes image-scan {
  0%,
  100% {
    transform: scale(1.04) translateY(0);
    filter: saturate(1.12) contrast(1.08);
  }
  50% {
    transform: scale(1.08) translateY(-5px);
    filter: saturate(1.34) contrast(1.12);
  }
}

@keyframes data-sweep {
  0% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(70%);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.24);
    opacity: 1;
  }
}

@keyframes line-flow {
  0%,
  100% {
    opacity: 0.55;
    filter: brightness(0.9);
  }
  50% {
    opacity: 1;
    filter: brightness(1.4);
  }
}

@keyframes cursor-blink {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0;
  }
}

@keyframes meter-run {
  0%,
  100% {
    width: 70%;
  }
  50% {
    width: 94%;
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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