:root {
  --cyber-navy: #07111f;
  --intelligence-blue: #0b5cff;
  --electric-cyan: #00d4ff;
  --threat-red: #ff3b3b;
  --soc-green: #20e3a2;
  --compliance-amber: #ffb020;
  --deep-slate: #101b2d;
  --ice-white: #f4f8ff;
  --steel-gray: #a8b3c7;
  --cyber-gray: #24324a;
  --muted-navy: #0b1627;
  --violet: #8f7aff;
  --shadow-cyan: rgba(0, 212, 255, 0.08);
  --shadow-blue: rgba(11, 92, 255, 0.22);
  --max-width: 1180px;
  --section-y: 104px;
  --section-y-mobile: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(11, 92, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 26%, rgba(0, 212, 255, 0.12), transparent 23rem),
    linear-gradient(180deg, #07111f 0%, #091323 44%, #07111f 100%);
  color: var(--ice-white);
  font-family:
    Sora,
    "Space Grotesk",
    Inter,
    "IBM Plex Sans",
    "Segoe UI",
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(36, 50, 74, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 50, 74, 0.2) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: -20% -10%;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(0, 212, 255, 0.055) 48%, transparent 54%),
    radial-gradient(circle at 72% 34%, rgba(32, 227, 162, 0.075), transparent 18rem);
  opacity: 0.78;
  pointer-events: none;
  transform: translateX(-10%);
  animation: ambientSweep 12s ease-in-out infinite alternate;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 72px);
  width: 100%;
  min-height: 110px;
  margin: 0;
  padding: 12px clamp(20px, 3.5vw, 56px);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 110px;
  z-index: -1;
  background: rgba(7, 17, 31, 0.78);
  border-bottom: 1px solid rgba(36, 50, 74, 0.78);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header[data-scrolled]::before {
  background: rgba(7, 17, 31, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 64px;
  overflow: visible;
  border: none;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-left: 0;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: clamp(8px, 2vw, 34px);
  min-width: 0;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--steel-gray);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: clamp(92px, 9vw, 146px);
  padding: 10px 16px;
  text-align: center;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(0, 212, 255, 0.38);
  background: rgba(16, 27, 45, 0.8);
  color: var(--ice-white);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--intelligence-blue), var(--electric-cyan));
  color: #fff;
  box-shadow: 0 12px 34px rgba(11, 92, 255, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--cyber-gray);
  border-radius: 12px;
  background: rgba(16, 27, 45, 0.82);
  color: var(--ice-white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

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

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 64px;
  align-items: center;
  min-height: calc(74svh - 76px);
  overflow: hidden;
  padding: 42px 0 46px;
}

.hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: 650px;
  max-width: 52vw;
  background-image: url("dark-mode-logo.PNG");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: saturate(1.08);
  opacity: 0.08;
  pointer-events: none;
  animation: logoDrift 9s var(--ease-out) infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 11% 0 7%;
  z-index: -1;
  border: 1px solid rgba(36, 50, 74, 0.55);
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(0, 212, 255, 0.16) 50%, transparent 51%),
    linear-gradient(0deg, transparent 0 49%, rgba(11, 92, 255, 0.14) 50%, transparent 51%);
  background-size: 118px 118px;
  opacity: 0.28;
  clip-path: polygon(0 10%, 88% 0, 100% 18%, 100% 100%, 9% 100%, 0 83%);
  animation: gridPulse 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
  max-width: min(760px, 100%);
  animation: revealUp 760ms var(--ease-out) both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--electric-cyan);
  font-family:
    "JetBrains Mono",
    "IBM Plex Mono",
    Consolas,
    monospace;
  font-size: clamp(0.88rem, 0.18vw + 0.82rem, 0.94rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
}

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

p {
  color: var(--steel-gray);
  font-size: clamp(1rem, 0.42vw + 0.92rem, 1.08rem);
  line-height: 1.78;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family:
    "Space Grotesk",
    Sora,
    Inter,
    "Segoe UI",
    Arial,
    sans-serif;
  font-weight: 800;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 5.1vw, 5rem);
  color: #ffffff;
  letter-spacing: 0;
  max-inline-size: 14ch;
}

.mobile-title-break {
  display: inline;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
  letter-spacing: 0.01em;
}

.hero-copy {
  max-width: min(600px, 100%);
  color: var(--steel-gray);
  font-size: clamp(1.05rem, 0.7vw + 0.95rem, 1.24rem);
  line-height: 1.72;
}

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

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 999px;
  background: rgba(16, 27, 45, 0.72);
  color: #b9f3ff;
  padding: 8px 12px;
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-proof span {
  border: 1px solid rgba(36, 50, 74, 0.9);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.62);
  color: var(--steel-gray);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  padding: 10px 12px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(36, 50, 74, 0.95);
  border-radius: 10px;
  font-weight: 700;
  padding: 13px 18px;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.28) 48%, transparent 66%);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 180ms ease;
}

.btn span,
.btn {
  isolation: isolate;
}

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

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
  animation: buttonSheen 900ms var(--ease-out);
}

.btn-primary {
  background: linear-gradient(135deg, var(--intelligence-blue), var(--electric-cyan));
  color: #fff;
  box-shadow: 0 16px 36px var(--shadow-blue);
}

.btn-secondary {
  background: rgba(16, 27, 45, 0.76);
  color: var(--ice-white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 14px 32px var(--shadow-cyan);
}

.intel-panel {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(16, 27, 45, 0.96), rgba(7, 17, 31, 0.94)),
    rgba(16, 27, 45, 0.96);
  box-shadow: 0 18px 54px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(18px);
  overflow: hidden;
  padding: 24px;
  animation: revealUp 840ms var(--ease-out) 120ms both;
}

.intel-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, transparent 8%, rgba(0, 212, 255, 0.08) 12%, transparent 18%),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(36, 50, 74, 0.2) 23px);
  opacity: 0.36;
  pointer-events: none;
  animation: panelScan 3.8s linear infinite;
}

.panel-header,
.signal-row,
.radar {
  position: relative;
  z-index: 1;
}

.panel-header,
.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.panel-header {
  margin-bottom: 22px;
  color: var(--steel-gray);
  font-family:
    "JetBrains Mono",
    Consolas,
    monospace;
  font-size: 0.76rem;
}

.panel-header strong {
  color: var(--soc-green);
}

.radar {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  margin: 8px auto 26px;
  border: 1px solid rgba(0, 212, 255, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 30%, rgba(0, 212, 255, 0.12) 31%, transparent 32%),
    radial-gradient(circle, transparent 0 56%, rgba(32, 227, 162, 0.12) 57%, transparent 58%);
  max-width: 245px;
  overflow: hidden;
  animation: radarGlow 4s ease-in-out infinite;
}

.radar i {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    conic-gradient(
      from -24deg,
      rgba(0, 212, 255, 0.62) 0deg,
      rgba(0, 212, 255, 0.25) 16deg,
      rgba(0, 212, 255, 0.08) 36deg,
      transparent 62deg 360deg
    );
  filter: blur(0.2px);
  opacity: 0.92;
  transform-origin: center;
  animation: radarSweep 4.8s cubic-bezier(0.45, 0, 0.25, 1) infinite;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  background: rgba(0, 212, 255, 0.2);
  z-index: 1;
}

.radar::before {
  width: 100%;
  height: 1px;
}

.radar::after {
  width: 1px;
  height: 100%;
}

.radar span {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red {
  background: var(--threat-red);
  box-shadow: 0 0 18px rgba(255, 59, 59, 0.85), 0 0 5px rgba(255, 59, 59, 0.5);
  animation: redAttack 10s linear infinite;
}

.dot-blue {
  background: var(--electric-cyan);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.9), 0 0 5px rgba(0, 212, 255, 0.5);
  animation: blueMonitor 10s linear infinite;
}

.dot-green {
  background: var(--soc-green);
  box-shadow: 0 0 18px rgba(32, 227, 162, 0.85), 0 0 5px rgba(32, 227, 162, 0.5);
  animation: greenOrbit 10s linear infinite;
}

.signal-row {
  border-top: 1px solid rgba(36, 50, 74, 0.82);
  color: var(--steel-gray);
  padding: 14px 0 0;
  margin-top: 14px;
}

.signal-row strong {
  color: var(--ice-white);
}

.mission-band {
  border-block: 1px solid rgba(36, 50, 74, 0.82);
  background: rgba(16, 27, 45, 0.58);
  padding: 34px 20px;
  text-align: center;
}

.mission-band p {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ice-white);
  font-size: clamp(1.12rem, 1.1vw + 0.94rem, 1.48rem);
  font-weight: 700;
  line-height: 1.55;
}

.split-section,
.sectors-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.split-section,
#services,
.process-section,
.why-section,
.values-section,
.sectors-section,
.contact-section {
  padding-block: var(--section-y);
}

.section-copy {
  color: var(--steel-gray);
  font-size: clamp(1.03rem, 0.36vw + 0.95rem, 1.12rem);
  line-height: 1.82;
  max-width: 68ch;
}

.about-intro {
  align-self: start;
}

.about-intro p:not(.eyebrow) {
  max-width: 52ch;
  margin: 22px 0 0;
  color: var(--steel-gray);
  font-size: clamp(1.04rem, 0.42vw + 0.94rem, 1.14rem);
  line-height: 1.78;
}

.about-panel {
  display: grid;
  gap: 16px;
}

.about-pillars {
  display: grid;
  gap: 14px;
}

.about-pillars article,
.about-signals {
  border: 1px solid rgba(36, 50, 74, 0.92);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.07), transparent 34%),
    rgba(16, 27, 45, 0.82);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.07);
}

.about-pillars article {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 18px;
  overflow: hidden;
  padding: 22px;
}

.about-pillars article::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 88px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-cyan), transparent);
  opacity: 0.5;
}

.about-pillars span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 212, 255, 0.48);
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.86);
  color: var(--electric-cyan);
  font-family:
    "JetBrains Mono",
    Consolas,
    monospace;
  font-size: 0.74rem;
  font-weight: 900;
}

.about-pillars h3 {
  margin-bottom: 8px;
  color: var(--ice-white);
}

.about-pillars p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--steel-gray);
  font-size: 1rem;
  line-height: 1.68;
}

.about-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 1px;
}

.about-signals span {
  display: grid;
  place-items: center;
  min-height: 92px;
  background: rgba(7, 17, 31, 0.56);
  color: var(--ice-white);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  padding: 18px;
  text-align: center;
}

.section-copy p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

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

.service-card,
.values-grid article,
.comparison-col,
.why-card,
.contact-form,
.process-flow article {
  border: 1px solid var(--cyber-gray);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(16, 27, 45, 0.82);
  box-shadow: 0 12px 40px var(--shadow-cyan);
}

.service-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 24px;
  transition:
    transform 260ms var(--ease-out),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.service-card::before,
.values-grid article::before,
.comparison-col::before,
.why-card::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0 38%, rgba(0, 212, 255, 0.1) 48%, transparent 58%);
  opacity: 0;
  transform: translateX(-70%);
  pointer-events: none;
}

.service-card::before,
.values-grid article::before,
.comparison-col::before,
.why-card::before,
.contact-form::before {
  animation: cardScan 7s ease-in-out infinite;
}

.service-card:nth-child(2)::before,
.values-grid article:nth-child(2)::before,
.comparison-col:nth-child(2)::before,
.why-card:nth-child(2)::before {
  animation-delay: 900ms;
}

.service-card:nth-child(3)::before,
.values-grid article:nth-child(3)::before,
.why-card:nth-child(3)::before {
  animation-delay: 1.8s;
}

.service-card:nth-child(4)::before,
.values-grid article:nth-child(4)::before,
.why-card:nth-child(4)::before {
  animation-delay: 2.7s;
}

.service-card:nth-child(5)::before,
.values-grid article:nth-child(5)::before,
.why-card:nth-child(5)::before {
  animation-delay: 3.6s;
}

.service-card:nth-child(6)::before,
.why-card:nth-child(6)::before {
  animation-delay: 4.5s;
}

.service-card:hover,
.service-card:focus-within,
.why-card:hover,
.why-card:focus-within,
.values-grid article:hover,
.process-flow article:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent, var(--electric-cyan)) 45%, var(--cyber-gray));
  box-shadow: 0 20px 54px rgba(0, 212, 255, 0.13);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  background: var(--accent, var(--electric-cyan));
  box-shadow: 0 0 24px var(--accent, var(--electric-cyan));
  transform: scaleX(0.72);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.service-card:hover::after,
.service-card:focus-within::after {
  transform: scaleX(1);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border: 1px solid color-mix(in srgb, var(--accent, var(--electric-cyan)) 55%, transparent);
  border-radius: 12px;
  color: var(--accent, var(--electric-cyan));
  font-family:
    "JetBrains Mono",
    Consolas,
    monospace;
  font-size: 0.72rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.service-card li,
.values-grid p,
.process-flow p,
.comparison p,
.contact-copy p {
  color: var(--steel-gray);
}

.service-card p,
.service-card li,
.values-grid p,
.process-flow p,
.comparison p {
  font-size: clamp(0.98rem, 0.25vw + 0.92rem, 1.04rem);
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent, var(--electric-cyan));
  box-shadow: 0 0 14px var(--accent, var(--electric-cyan));
  animation: bulletPulse 2.8s ease-in-out infinite;
}

.red-accent {
  --accent: var(--threat-red);
}

.green-accent {
  --accent: var(--soc-green);
}

.cyan-accent {
  --accent: var(--electric-cyan);
}

.amber-accent {
  --accent: var(--compliance-amber);
}

.blue-accent {
  --accent: var(--intelligence-blue);
}

.violet-accent {
  --accent: var(--violet);
}

.process-section {
  position: relative;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(148px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding: 10px 2px 22px;
  scrollbar-color: var(--electric-cyan) transparent;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 51px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-cyan), var(--soc-green), var(--electric-cyan), transparent);
  background-size: 220% 100%;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.36);
  animation: connectorFlow 3.6s linear infinite;
}

.process-flow article {
  position: relative;
  min-height: 214px;
  padding: 24px 18px;
  transition:
    transform 260ms var(--ease-out),
    border-color 260ms ease;
}

.process-flow span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border: 1px solid rgba(0, 212, 255, 0.5);
  border-radius: 50%;
  background: var(--cyber-navy);
  color: var(--electric-cyan);
  font-family:
    "JetBrains Mono",
    Consolas,
    monospace;
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.23);
  animation: nodePulse 3.2s ease-in-out infinite;
}

.process-flow h3,
.comparison h3,
.why-grid h3,
.values-grid h3 {
  margin-bottom: 10px;
}

.why-section .section-heading {
  max-width: 880px;
}

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

.why-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 24px;
  transition:
    transform 260ms var(--ease-out),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.why-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 212, 255, 0.46);
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.86);
  color: var(--electric-cyan);
  font-family:
    "JetBrains Mono",
    Consolas,
    monospace;
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.18);
}

.why-card h3 {
  color: var(--ice-white);
}

.why-card p {
  margin-bottom: 0;
  color: var(--steel-gray);
  font-size: clamp(0.99rem, 0.25vw + 0.92rem, 1.05rem);
  line-height: 1.72;
}

.why-card:nth-child(1) {
  border-color: rgba(0, 212, 255, 0.38);
}

.why-card:nth-child(2) {
  border-color: rgba(32, 227, 162, 0.32);
}

.why-card:nth-child(3) {
  border-color: rgba(255, 59, 59, 0.3);
}

.why-card:nth-child(4) {
  border-color: rgba(11, 92, 255, 0.36);
}

.why-card:nth-child(5) {
  border-color: rgba(255, 176, 32, 0.3);
}

.why-card:nth-child(6) {
  border-color: rgba(143, 122, 255, 0.34);
}

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

.comparison-col {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.comparison p {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin: 0;
  border-top: 1px solid rgba(36, 50, 74, 0.72);
}

.comparison h3 {
  color: var(--ice-white);
}

.comparison-col.highlight {
  border-color: rgba(0, 212, 255, 0.48);
  background:
    linear-gradient(145deg, rgba(11, 92, 255, 0.14), rgba(32, 227, 162, 0.07)),
    rgba(16, 27, 45, 0.92);
}

.comparison-col.highlight p {
  color: var(--ice-white);
}

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

.values-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  transition:
    transform 260ms var(--ease-out),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.sectors-section {
  align-items: center;
  border-block: 1px solid rgba(36, 50, 74, 0.72);
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sector-list span {
  border: 1px solid rgba(36, 50, 74, 0.95);
  border-radius: 999px;
  background: rgba(16, 27, 45, 0.76);
  color: var(--steel-gray);
  font-size: clamp(0.94rem, 0.2vw + 0.9rem, 1rem);
  font-weight: 700;
  padding: 10px 14px;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
  animation: chipFloat 6s ease-in-out infinite;
}

.sector-list span:nth-child(2n) {
  animation-delay: 800ms;
}

.sector-list span:nth-child(3n) {
  animation-delay: 1.4s;
}

.sector-list span:hover,
.sector-list span:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.52);
  color: var(--ice-white);
  box-shadow: 0 12px 26px rgba(0, 212, 255, 0.1);
}

.contact-section {
  align-items: center;
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--steel-gray);
}

.contact-direct a {
  color: var(--ice-white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-direct a + a {
  color: var(--electric-cyan);
}

.contact-direct span {
  font-family:
    "JetBrains Mono",
    Consolas,
    monospace;
  font-size: 0.78rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
  scroll-margin-top: 120px;
  overflow: visible;
  padding: 26px;
}

.form-header {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.form-logo-wrap {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 154px;
  border: 1px solid rgba(36, 50, 74, 0.62);
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  padding: 14px 18px;
}

.form-header img {
  width: 100%;
  height: 126px;
  object-fit: contain;
  object-position: center;
}

.form-header p {
  margin: 0;
  color: var(--ice-white);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
  text-transform: uppercase;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.contact-form label span {
  color: var(--steel-gray);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.custom-select-trigger {
  width: 100%;
  border: 1px solid rgba(36, 50, 74, 0.96);
  border-radius: 10px;
  background: rgba(7, 17, 31, 0.7);
  color: var(--ice-white);
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  outline: none;
  padding: 13px 14px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  cursor: pointer;
  text-align: left;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus-visible,
.custom-select.is-open .custom-select-trigger {
  border-color: rgba(0, 212, 255, 0.72);
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.select-chevron {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--electric-cyan);
  border-bottom: 2px solid var(--electric-cyan);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.custom-select.is-open .select-chevron {
  transform: translateY(3px) rotate(225deg);
}

.custom-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 12;
  display: grid;
  max-height: 286px;
  border: 1px solid rgba(36, 50, 74, 0.96);
  border-radius: 12px;
  background: rgba(7, 17, 31, 0.98);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36), 0 0 28px rgba(0, 212, 255, 0.1);
  opacity: 0;
  overflow: auto;
  padding: 8px;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease-out);
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select-menu button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--steel-gray);
  cursor: pointer;
  font: inherit;
  font-size: 0.98rem;
  line-height: 1.45;
  padding: 11px 12px;
  text-align: left;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.custom-select-menu button:hover,
.custom-select-menu button:focus-visible,
.custom-select-menu button[aria-selected="true"] {
  background: rgba(0, 212, 255, 0.1);
  color: var(--ice-white);
  outline: none;
}

.custom-select-menu button[aria-selected="true"] {
  box-shadow: inset 3px 0 0 var(--electric-cyan);
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 212, 255, 0.72);
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.contact-form ::placeholder {
  color: rgba(168, 179, 199, 0.64);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  margin: 14px 0 0;
  color: var(--steel-gray);
  font-size: 0.96rem;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(36, 50, 74, 0.82);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.22), rgba(7, 17, 31, 0.78)),
    rgba(7, 17, 31, 0.62);
  color: var(--steel-gray);
  padding: 54px clamp(20px, 3.5vw, 56px) 38px;
}

.footer-main,
.footer-legal {
  width: min(var(--max-width), 100%);
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr) minmax(180px, auto);
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  color: var(--ice-white);
  font-size: 1.08rem;
  line-height: 1.2;
}

.footer-brand span,
.footer-meta span {
  color: var(--steel-gray);
}

.footer-contact {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  text-align: right;
}

.footer-legal {
  margin: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(36, 50, 74, 0.58);
  padding-top: 20px;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--electric-cyan);
  font-weight: 800;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ice-white);
}

.footer-top {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(16, 27, 45, 0.62);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .hero-bg {
    inset: 8% 0 auto auto;
    max-width: 70vw;
    height: 520px;
  }

  .intel-panel {
    max-width: 560px;
  }

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

  .split-section,
  .sectors-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-form {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  }

  .footer-meta {
    grid-column: 1 / -1;
    justify-items: start;
    text-align: left;
  }

}

@media (max-width: 760px) {
  .section-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

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

  .site-header {
    min-height: 76px;
    gap: 12px;
    padding: 8px 16px;
  }

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

  .brand {
    flex: 0 1 158px;
    width: min(158px, calc(100vw - 86px));
    height: auto;
    margin-left: 0;
    padding: 0;
    overflow: visible;
  }

  .brand img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .menu-toggle {
    display: inline-block;
    flex: 0 0 46px;
    margin-left: auto;
    position: relative;
    z-index: 2;
    border-color: rgba(0, 212, 255, 0.72);
    background: rgba(9, 22, 39, 0.98);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.12), 0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .site-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    justify-items: stretch;
    gap: 6px;
    border: 1px solid rgba(36, 50, 74, 0.9);
    border-radius: 16px;
    background: rgba(7, 17, 31, 0.96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
    padding: 12px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 180ms ease,
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    border-radius: 10px;
    min-width: 0;
    width: 100%;
    padding: 13px 14px;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding: 34px 0 52px;
  }

  h1 {
    font-size: clamp(2.28rem, 9.4vw, 3.08rem);
    line-height: 1.08;
    max-inline-size: 11ch;
  }

  h2 {
    font-size: clamp(1.78rem, 6.6vw, 2.36rem);
    line-height: 1.12;
  }

  h3 {
    font-size: 1.08rem;
    line-height: 1.2;
  }

  p,
  .service-card p,
  .service-card li,
  .values-grid p,
  .process-flow p,
  .comparison p,
  .contact-copy p,
  .section-copy {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero .eyebrow {
    max-width: 29ch;
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .hero-copy {
    max-width: 34ch;
  }

  .mobile-title-break {
    display: block;
  }

  .hero-bg {
    inset: 4% 0 auto auto;
    max-width: 88vw;
    height: 420px;
    opacity: 0.09;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .intel-panel {
    padding: 18px;
  }

  .panel-header,
  .signal-row {
    gap: 12px;
  }

  .split-section,
  #services,
  .process-section,
  .why-section,
  .values-section,
  .sectors-section,
  .contact-section {
    padding-block: var(--section-y-mobile);
  }

  .services-grid,
  .comparison,
  .why-grid,
  .about-signals,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-pillars article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-pillars p {
    grid-column: auto;
  }

  .about-pillars article::after {
    inset: auto 22px 0;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .process-flow {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .process-flow::before {
    left: 37px;
    right: auto;
    top: 26px;
    bottom: 38px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--electric-cyan), var(--soc-green), transparent);
  }

  .process-flow article {
    min-height: auto;
    padding-left: 72px;
  }

  .process-flow span {
    position: absolute;
    left: 18px;
    top: 22px;
    margin: 0;
  }

  .site-footer {
    padding: 44px 16px 34px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-legal {
    margin-top: 26px;
  }
}

@media (max-width: 520px) {
  :root {
    --section-y-mobile: 58px;
  }

  body {
    background:
      radial-gradient(circle at 20% 10%, rgba(11, 92, 255, 0.16), transparent 18rem),
      radial-gradient(circle at 86% 22%, rgba(0, 212, 255, 0.1), transparent 17rem),
      linear-gradient(180deg, #07111f 0%, #091323 44%, #07111f 100%);
  }

  .section-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    flex-basis: 150px;
    width: min(150px, calc(100vw - 82px));
  }

  .site-nav {
    left: 14px;
    right: 14px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-grid {
    inset: 6% -10px 3%;
    background-size: 78px 78px;
  }

  .hero-kicker {
    border-radius: 24px;
    padding: 8px 11px;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .btn {
    min-height: 52px;
    padding: 13px 14px;
    font-size: 0.96rem;
  }

  .hero-proof span,
  .sector-list span {
    width: 100%;
  }

  .mission-band {
    padding: 28px 16px;
  }

  .split-section,
  .sectors-section,
  .contact-section {
    gap: 34px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .about-pillars article,
  .service-card,
  .why-card,
  .values-grid article,
  .process-flow article,
  .contact-form {
    border-radius: 12px;
  }

  .about-pillars article,
  .why-card,
  .values-grid article {
    padding: 20px;
  }

  .card-icon {
    margin-bottom: 20px;
  }

  .process-flow {
    gap: 14px;
    padding-inline: 0;
  }

  .process-flow::before {
    left: 31px;
  }

  .process-flow article {
    padding: 20px 18px 20px 64px;
  }

  .process-flow span {
    left: 12px;
    top: 20px;
  }

  .sector-list {
    display: grid;
  }

  .sector-list span {
    border-radius: 12px;
    text-align: center;
  }

  .contact-form {
    width: 100%;
    padding: 20px;
  }

  .form-logo-wrap {
    min-height: 110px;
    padding: 10px 12px;
  }

  .form-header img {
    height: 86px;
  }

  .custom-select-trigger > span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-form .native-select {
    width: 1px;
    height: 1px;
  }

  .custom-select-menu {
    max-height: 240px;
  }
}

@media (max-width: 360px) {
  .section-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand {
    flex-basis: 132px;
    width: min(132px, calc(100vw - 76px));
  }

  .menu-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.32rem);
  }

  .hero .eyebrow {
    max-width: 27ch;
    font-size: 0.72rem;
  }

  .btn {
    font-size: 0.9rem;
  }
}

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

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(14px, -8px, 0) scale(1.025);
  }
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.34;
  }

  50% {
    opacity: 0.55;
  }
}

@keyframes panelScan {
  from {
    transform: translateX(-18%);
  }

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

@keyframes radarGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(0, 212, 255, 0));
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.28));
  }
}

@keyframes radarSweep {
  0% {
    transform: rotate(0deg);
  }

  45% {
    transform: rotate(168deg);
  }

  68% {
    transform: rotate(257deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes redAttack {
  /* drifts slowly toward intercept point A (-30px, -40px) */
  0%   { transform: translate(-60px,  20px); opacity: 1;   }
  15%  { transform: translate(-45px,   0px); opacity: 1;   }
  25%  { transform: translate(-38px, -20px); opacity: 1;   }
  30%  { transform: translate(-30px, -40px); opacity: 1;   }
  /* blue is closing in — red starts fading */
  40%  { transform: translate(-30px, -40px); opacity: 0.4; }
  50%  { transform: translate(-30px, -40px); opacity: 0;   }
  /* instantly reappear at location B (52px, 30px) */
  51%  { transform: translate( 52px,  30px); opacity: 0;   }
  62%  { transform: translate( 52px,  30px); opacity: 1;   }
  /* drifts slowly from B */
  75%  { transform: translate( 45px,  10px); opacity: 1;   }
  87%  { transform: translate( 30px, -15px); opacity: 1;   }
  100% { transform: translate(-60px,  20px); opacity: 1;   }
}

@keyframes blueMonitor {
  /* normal patrol on inner ring */
  0%   { transform: translate(  0px, -45px); }
  12%  { transform: translate( 32px, -32px); }
  22%  { transform: translate( 45px,   0px); }
  /* detects red — breaks patrol, moves toward A (-30px, -40px) */
  27%  { transform: translate( 30px,  15px); }
  35%  { transform: translate(-15px, -25px); }
  42%  { transform: translate(-30px, -40px); }
  /* red is gone — holds briefly then returns */
  50%  { transform: translate(-30px, -40px); }
  58%  { transform: translate(-15px, -15px); }
  65%  { transform: translate(  0px, -45px); }
  /* resumes patrol */
  75%  { transform: translate(-32px, -32px); }
  87%  { transform: translate(-45px,   0px); }
  100% { transform: translate(  0px, -45px); }
}

@keyframes greenOrbit {
  0%   { transform: translate(  0px, -100px); }
  12%  { transform: translate( 71px,  -71px); }
  25%  { transform: translate(100px,    0px); }
  38%  { transform: translate( 71px,   71px); }
  50%  { transform: translate(  0px,  100px); }
  62%  { transform: translate(-71px,   71px); }
  75%  { transform: translate(-100px,   0px); }
  88%  { transform: translate(-71px,  -71px); }
  100% { transform: translate(  0px, -100px); }
}

@keyframes ambientSweep {
  from {
    transform: translate3d(-10%, -2%, 0) rotate(0deg);
  }

  to {
    transform: translate3d(8%, 2%, 0) rotate(1deg);
  }
}

@keyframes buttonSheen {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(110%);
  }
}

@keyframes cardScan {
  0%,
  62%,
  100% {
    opacity: 0;
    transform: translateX(-70%);
  }

  72% {
    opacity: 1;
  }

  86% {
    opacity: 0;
    transform: translateX(70%);
  }
}

@keyframes bulletPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

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

@keyframes connectorFlow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 220% 50%;
  }
}

@keyframes nodePulse {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.18);
  }

  50% {
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.42);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}
