:root {
  --neon-cyan: #00d2ff;
  --neon-glow: rgba(0, 210, 255, 0.8);
  --bg-dark: #0a0d14;
  --bg-section: #0e1219;
  --bg-section-alt: #121820;
  --metal-dark: #161b22;
  --metal-border: #30363d;
  --text-main: #e6edf3;
  --text-muted: #8b9bb4;
  --text-dark: #1a1f2a;
  --surface-light: #f4f6f8;
  --header-h: 118px;
  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --max-w: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background-color: var(--bg-dark);
  background-image: url("assets/bg-generic.png?v=20260730a");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

ul, ol {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.15;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-solid {
  background: var(--neon-cyan);
  color: #041018;
  border-color: var(--neon-cyan);
}

.btn-solid:hover {
  box-shadow: 0 0 22px var(--neon-glow);
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.btn-outline:hover {
  background: rgba(0, 210, 255, 0.12);
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.45);
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 13, 20, 0.88);
  border-bottom: 1px solid var(--metal-border);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: calc(var(--max-w) + 8vw);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-header {
  height: 92px;
  width: auto;
  /* Knock out solid black matte on the PNG */
  mix-blend-mode: lighten;
}

.header-discount {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.header-discount__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.header-discount strong {
  color: var(--neon-cyan);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-shrink: 0;
}

.site-nav__cluster {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
}

.site-nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-nav a:not(.btn):hover {
  color: var(--neon-cyan);
}

.btn-consult {
  padding: 0.55rem 1.2rem;
  font-size: 0.65rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--metal-border);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--neon-cyan);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Hero / Cyber shell —— */
.cyber-container {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Sit content in the image's center bay between metal side panels */
  padding: calc(var(--header-h) + 1.25rem) 16vw 1.75rem;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box;
}

/* Soft vignette so overlay UI stays readable on the photo */
.cyber-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(10, 13, 20, 0.15) 0%, rgba(10, 13, 20, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 13, 20, 0.35) 0%, transparent 28%, transparent 72%, rgba(10, 13, 20, 0.4) 100%);
}

.hex-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: screen;
  background-color: transparent;
  background-image:
    radial-gradient(circle, rgba(0, 210, 255, 0.18) 1px, transparent 1px),
    linear-gradient(30deg, rgba(0, 210, 255, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(0, 210, 255, 0.08) 87.5%),
    linear-gradient(150deg, rgba(0, 210, 255, 0.08) 12%, transparent 12.5%, transparent 87%, rgba(0, 210, 255, 0.08) 87.5%),
    linear-gradient(30deg, rgba(18, 24, 36, 0.35) 12%, transparent 12.5%, transparent 87%, rgba(18, 24, 36, 0.35) 87.5%),
    linear-gradient(150deg, rgba(18, 24, 36, 0.35) 12%, transparent 12.5%, transparent 87%, rgba(18, 24, 36, 0.35) 87.5%);
  background-size: 20px 20px, 40px 70px, 40px 70px, 40px 70px, 40px 70px;
  background-position: 0 0, 0 0, 0 0, 20px 35px, 20px 35px;
  pointer-events: none;
}

.cyber-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.pulse-line,
.circuit-traces path {
  fill: none;
  stroke: var(--neon-cyan);
  stroke-width: 2.5;
  filter: url(#neon-glow);
}

.pulse-line {
  stroke-width: 1.5;
  opacity: 0.7;
  stroke-dasharray: 200 800;
  animation: pulse-scan 4s linear infinite;
}

.circuit-traces path {
  stroke-dasharray: 12 10;
  animation: circuit-flow 8s linear infinite;
}

.circuit-traces circle {
  fill: var(--neon-cyan);
  filter: url(#neon-glow);
}

@keyframes pulse-scan {
  0% { stroke-dashoffset: 1000; }
  100% { stroke-dashoffset: 0; }
}

@keyframes circuit-flow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}

/* CSS panels off — GenericBG already supplies the metal side frames */
.metal-panel {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
  padding: 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 0.85rem;
  text-shadow: 0 0 12px rgba(0, 210, 255, 0.45);
}

.hero-title {
  font-size: clamp(1.35rem, 1.8vw + 1vh, 2.15rem);
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 0 24px rgba(0, 210, 255, 0.25);
  line-height: 1.2;
  max-width: none;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1vw + 0.65vh, 1.22rem);
  font-weight: 600;
  font-style: italic;
  color: var(--neon-cyan);
  margin: 0 0 0.8rem;
  max-width: min(54ch, 100%);
  line-height: 1.35;
  text-shadow: 0 0 14px rgba(0, 210, 255, 0.25);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-points {
  list-style: none;
  max-width: min(48ch, 100%);
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.85vw, 1.55rem);
  font-weight: 700;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
}

.hero-points li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--neon-cyan);
  font-size: 0.95em;
}

.hero-lead {
  color: var(--text-muted);
  font-size: clamp(0.98rem, 0.75vw + 0.55vh, 1.12rem);
  max-width: min(58ch, 100%);
  margin-bottom: 1.15rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -2vw;
  margin-block: -1rem;
}

.raven-head {
  width: min(172%, 960px);
  max-width: none;
  filter: drop-shadow(0 0 28px rgba(0, 210, 255, 0.35));
  animation: raven-glow 3.5s ease-in-out infinite;
}

@keyframes raven-glow {
  0%, 100% { filter: drop-shadow(0 0 22px rgba(0, 210, 255, 0.28)); }
  50% { filter: drop-shadow(0 0 36px rgba(0, 210, 255, 0.55)); }
}

/* —— Content sections —— */
.content-section {
  position: relative;
  padding: var(--space-lg) max(1.25rem, 14vw);
  background: transparent;
  border-top: 1px solid rgba(48, 54, 61, 0.65);
}

.content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(10, 13, 20, 0.5);
}

.content-section--alt::before {
  background: rgba(10, 13, 20, 0.62);
}

.section-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.content-section h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: 0.6rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 14px rgba(0, 210, 255, 0.35);
}

.section-lead {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  max-width: min(70ch, 100%);
}

.page-intro {
  padding-top: calc(var(--header-h) + 2.5rem);
}

.page-intro .section-inner,
.service-block {
  max-width: min(680px, 100%);
  margin-inline: auto;
  text-align: left;
}

.page-title {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  margin-bottom: 0.75rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 210, 255, 0.25);
  max-width: 22ch;
  line-height: 1.2;
}

.page-intro__lead {
  max-width: min(52ch, 100%);
}

.page-intro__body {
  margin-top: 0.5rem;
  max-width: min(58ch, 100%);
}

.service-block .section-lead {
  max-width: min(48ch, 100%);
}

.service-block .about-body {
  margin-bottom: 1rem;
  max-width: min(62ch, 100%);
}

.plain-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  max-width: min(58ch, 100%);
}

.plain-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.45;
}

.plain-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--neon-cyan);
}

.service-cta {
  margin-top: 1.5rem;
}

.services-guide-link {
  display: inline-block;
  margin-top: 0.15rem;
  margin-bottom: 1.15rem;
  color: var(--neon-cyan);
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.services-guide-link:hover {
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  perspective: 1200px;
}

.feature-card {
  width: 100%;
  max-width: none;
  padding: 1.5rem 1.25rem;
  background: rgba(22, 27, 34, 0.65);
  border: 1px solid var(--metal-border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.feature-card:hover {
  border-color: rgba(0, 210, 255, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 210, 255, 0.15);
}

/* Flip service tiles */
.feature-flip {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: block;
  transform-style: flat;
  will-change: auto;
  -webkit-tap-highlight-color: transparent;
}

.feature-flip:hover,
.feature-flip:focus-visible {
  border: none;
  box-shadow: none;
  outline: none;
}

.feature-flip:focus-visible .feature-flip__face--front,
.feature-flip:focus-visible.is-flipped .feature-flip__face--back {
  border-color: rgba(0, 210, 255, 0.75);
  box-shadow: 0 0 0 2px rgba(0, 210, 255, 0.35), 0 18px 40px rgba(0, 0, 0, 0.35);
}

.feature-flip__inner {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100%;
  transition: transform 0.55s ease;
  transform-style: preserve-3d;
}

.feature-flip.is-flipped .feature-flip__inner {
  transform: rotateY(180deg);
}

.feature-flip__face {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  padding: 1.5rem 1.25rem 1.15rem;
  background: rgba(22, 27, 34, 0.65);
  border: 1px solid var(--metal-border);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: visible;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-flip:hover .feature-flip__face--front,
.feature-flip.is-flipped:hover .feature-flip__face--back {
  border-color: rgba(0, 210, 255, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(0, 210, 255, 0.15);
}

.feature-flip__face--back {
  transform: rotateY(180deg);
  justify-content: center;
  text-align: left;
  align-items: stretch;
}

.feature-flip__face--back h3 {
  text-align: center;
  margin-bottom: 0.65rem;
}

.feature-flip__face--back ul {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.feature-flip__face--back li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.4;
}

.feature-flip__face--back li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--neon-cyan);
  font-size: 0.85em;
}

.feature-flip__hint {
  margin-top: auto;
  padding-top: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 210, 255, 0.85);
  text-align: center;
}

.feature-flip__note {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-main);
  text-align: center;
  line-height: 1.4;
}

.feature-card--scan {
  position: relative;
  overflow: hidden;
}

.feature-card--scan::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.35), transparent);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.feature-card--scan:hover::before {
  animation: scan-sweep 0.7s ease;
  opacity: 1;
}

.feature-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 210, 255, 0.35);
  background: transparent;
  overflow: visible;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 10px;
}

.feature-icon--launch {
  overflow: visible;
}

.feature-icon--pin {
  overflow: visible;
}

.map-pin {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.map-pin__glyph,
.map-pin__pow {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  width: 82%;
  height: 82%;
  object-fit: contain;
  pointer-events: none;
}

.map-pin__glyph {
  transform-origin: 50% 88%;
  filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.25));
}

.map-pin__pow {
  z-index: 3;
  width: 108%;
  height: 108%;
  opacity: 0;
  transform: scale(0.15);
  transform-origin: 50% 50%;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.55));
  mix-blend-mode: lighten;
}

.map-pin__burst {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 210, 255, 0.95);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.7);
}

.map-pin__burst--2 {
  border-color: rgba(0, 210, 255, 0.7);
}

.map-pin__burst--3 {
  border-color: rgba(0, 210, 255, 0.45);
}

.feature-flip:hover:not(.is-flipped) .feature-icon--pin .map-pin__glyph {
  animation: pin-pop-away 1.15s ease-out forwards;
}

.feature-flip:hover:not(.is-flipped) .feature-icon--pin .map-pin__pow {
  animation: pow-explode 1.15s ease-out forwards;
}

.feature-flip:hover:not(.is-flipped) .feature-icon--pin .map-pin__burst {
  animation: pin-burst 0.85s ease-out forwards;
}

.feature-flip:hover:not(.is-flipped) .feature-icon--pin .map-pin__burst--2 {
  animation-delay: 0.06s;
}

.feature-flip:hover:not(.is-flipped) .feature-icon--pin .map-pin__burst--3 {
  animation-delay: 0.12s;
}

@keyframes pin-pop-away {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  32% {
    opacity: 1;
    transform: scale(1.55) translateY(0);
    filter: drop-shadow(0 0 16px rgba(0, 210, 255, 0.95));
  }
  42% {
    opacity: 0;
    transform: scale(1.85) translateY(0);
  }
  88% {
    opacity: 0;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.25));
  }
}

@keyframes pow-explode {
  0%,
  38% {
    opacity: 0;
    transform: scale(0.12);
  }
  46% {
    opacity: 1;
    transform: scale(0.55);
  }
  64% {
    opacity: 1;
    transform: scale(1.35);
  }
  78% {
    opacity: 1;
    transform: scale(1.15);
  }
  92%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes pin-burst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.25);
  }
  70% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5.5);
  }
}

.feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.35s ease;
}

.feature-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* —— Micro-interactions (Showcase 09) —— */
.micro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.micro-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--metal-border);
  background: rgba(10, 13, 20, 0.55);
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.micro-chip img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.micro-scan {
  position: relative;
  overflow: hidden;
}

.micro-scan::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.35), transparent);
  opacity: 0;
  pointer-events: none;
}

.micro-scan:hover::before {
  animation: scan-sweep 0.7s ease;
  opacity: 1;
}

@keyframes scan-sweep {
  from { left: -40%; }
  to { left: 110%; }
}

.micro-pulse:hover {
  color: var(--neon-cyan);
  animation: label-pulse 0.9s ease infinite;
}

@keyframes label-pulse {
  50% { text-shadow: 0 0 14px var(--neon-glow); }
}

.micro-gear:hover img,
.feature-card:hover .feature-icon--spin img,
.feature-flip:hover:not(.is-flipped) .feature-icon--spin img {
  animation: spin 0.8s linear;
}

.feature-card:hover .feature-icon--launch img,
.feature-flip:hover:not(.is-flipped) .feature-icon--launch img {
  animation: rocket-launch 0.85s ease-in;
}

.feature-flip.is-flipped .feature-icon--launch img {
  animation: none !important;
  transform: none;
  opacity: 1;
  filter: none;
}

@keyframes rocket-launch {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: none;
  }
  35% {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 0 8px rgba(0, 210, 255, 0.55));
  }
  100% {
    transform: translateY(-120%) scale(0.85);
    opacity: 0;
    filter: drop-shadow(0 0 16px rgba(0, 210, 255, 0.8));
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.micro-eye {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(0, 210, 255, 0.5);
  background:
    radial-gradient(circle at 50% 50%, #fff 0 18%, var(--neon-cyan) 19% 42%, #041018 43%);
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.35);
  cursor: pointer;
  flex-shrink: 0;
}

.micro-eye:hover {
  animation: eye-flicker 0.45s steps(2) 2;
}

@keyframes eye-flicker {
  50% { filter: brightness(0.35); }
}

h2.micro-scan {
  display: inline-block;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.media-slot {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px dashed rgba(0, 210, 255, 0.35);
  background:
    linear-gradient(135deg, rgba(0, 210, 255, 0.04), transparent 50%),
    rgba(10, 13, 20, 0.7);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-slot-copy {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
  max-width: 28ch;
  line-height: 1.4;
}

.process-steps,
.pipeline {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.pipeline-step,
.process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--metal-border);
  background: rgba(22, 27, 34, 0.5);
}

.pipeline-step {
  opacity: 0.35;
  transform: translateX(-12px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.pipeline-step.is-lit {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(0, 210, 255, 0.55);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.12);
}

.pipeline-node,
.step-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.pipeline-step h3,
.process-steps h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.pipeline-step p,
.process-steps p {
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
}

.about-grid > div:first-child {
  min-width: 0;
  padding: 1.2rem 2rem 1.2rem 1.15rem;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 9, 13, 0.82) 0%,
    rgba(7, 9, 13, 0.55) 38%,
    rgba(7, 9, 13, 0.22) 70%,
    rgba(7, 9, 13, 0) 100%
  );
  box-shadow: none;
}

.about-grid .section-lead {
  max-width: none;
}

.about-body {
  color: var(--text-muted);
  max-width: none;
}

.about-body + .about-body {
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.faq-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  letter-spacing: 0.04em;
  color: var(--text-main);
}

.faq-item .about-body {
  margin: 0;
}


.about-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-mark img {
  width: min(860px, 118%);
  max-width: none;
  margin-inline: auto;
  filter: drop-shadow(0 0 18px rgba(0, 210, 255, 0.25));
  mix-blend-mode: lighten;
}

/* —— Footer —— */
.site-footer {
  position: relative;
  z-index: 2;
  background: #07090d;
  border-top: 1px solid var(--metal-border);
  padding: 0.5rem 1.25rem 2.5rem;
}

.footer-rule {
  position: relative;
  height: 1px;
  background: var(--metal-border);
  margin: 0 auto 2rem;
  max-width: var(--max-w);
}

.footer-rule span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-glow);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.footer-contact h2 {
  font-size: 0.95rem;
  color: var(--neon-cyan);
  margin-bottom: 0.65rem;
}

.footer-contact p {
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.footer-contact .btn {
  margin-top: 0.9rem;
}

.footer-brand {
  justify-self: center;
}

.footer-logo {
  height: auto;
  width: min(340px, 70vw);
  mix-blend-mode: lighten;
}

.footer-logo--anim {
  width: min(420px, 85vw);
  mix-blend-mode: lighten;
}

.footer-copy {
  justify-self: end;
  text-align: right;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-veteran {
  width: min(260px, 70vw);
  height: auto;
  mix-blend-mode: lighten;
  cursor: pointer;
}

/* —— Scroll-linked System HUD —— */
.scroll-hud {
  position: fixed;
  top: calc(var(--header-h) + 1rem);
  right: 0.75rem;
  z-index: 90;
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  pointer-events: none;
}

.scroll-hud__rail {
  width: 3px;
  height: min(42vh, 280px);
  background: rgba(48, 54, 61, 0.8);
  border-radius: 999px;
  overflow: hidden;
}

.scroll-hud__fill {
  display: block;
  width: 100%;
  height: 0%;
  background: var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-glow);
  transition: height 0.1s linear;
}

.scroll-hud__status {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 210, 255, 0.45);
  max-height: 180px;
  overflow: hidden;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  body {
    background-attachment: scroll;
  }

  .cyber-container {
    padding: calc(var(--header-h) + 1rem) 8vw 1.5rem;
  }

  .content-section {
    padding-inline: max(1.25rem, 6vw);
  }

  .page-intro,
  .service-block {
    text-align: left;
  }

  .page-intro .section-inner,
  .service-block {
    margin-inline: auto;
    max-width: min(640px, 100%);
  }

  .page-title {
    max-width: min(20ch, 100%);
  }

  .page-intro__lead,
  .page-intro__body,
  .service-block .about-body,
  .plain-list {
    margin-inline: 0;
    max-width: min(58ch, 100%);
  }

  .service-cta {
    justify-content: flex-start;
  }

  .content-section .section-inner,
  .content-section h2,
  .section-lead {
    text-align: center;
    margin-inline: auto;
  }

  .page-intro .section-inner,
  .page-intro h1,
  .page-intro .section-lead,
  .service-block,
  .service-block h2,
  .service-block .section-lead {
    text-align: left;
  }

  .page-intro .section-inner,
  .service-block {
    margin-inline: auto;
  }

  .section-lead {
    max-width: 42ch;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
    justify-items: center;
    position: relative;
    min-height: 0;
    max-height: calc(100dvh - var(--header-h) - 2.5rem);
    align-items: center;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: min(44rem, 100%);
    text-align: left;
    padding: 0.85rem 0.75rem;
    border-radius: 4px;
    background: linear-gradient(
      180deg,
      rgba(7, 9, 13, 0.28) 0%,
      rgba(7, 9, 13, 0.4) 50%,
      rgba(7, 9, 13, 0.28) 100%
    );
    box-shadow: 0 0 40px rgba(7, 9, 13, 0.25);
  }

  .eyebrow {
    text-align: center;
    margin-bottom: 0.55rem;
  }

  .hero-title {
    text-align: center;
    max-width: none;
    margin-inline: auto;
    font-size: clamp(1.25rem, 2.4vw + 0.7vh, 1.85rem);
    text-shadow: 0 1px 14px rgba(7, 9, 13, 0.9), 0 0 24px rgba(0, 210, 255, 0.25);
  }

  .hero-tagline {
    text-align: center;
    margin-inline: auto;
    max-width: min(48ch, 100%);
    font-size: clamp(0.98rem, 1.8vw + 0.45vh, 1.15rem);
    margin-bottom: 0.55rem;
  }

  .hero-lead {
    margin-inline: auto;
    max-width: min(52ch, 100%);
    text-align: left;
    margin-bottom: 0.9rem;
    text-shadow: 0 1px 10px rgba(7, 9, 13, 0.85);
  }

  .hero-points {
    margin: 0 auto 1.5rem;
    max-width: 36ch;
    width: 100%;
    gap: 0.95rem;
    text-align: left;
  }

  .hero-points li {
    padding-left: 1.35rem;
    display: block;
    text-align: left;
    font-size: clamp(1.05rem, 2.8vw, 1.25rem);
    font-weight: 600;
    line-height: 1.45;
    text-shadow: 0 1px 12px rgba(7, 9, 13, 0.9), 0 0 2px rgba(7, 9, 13, 0.8);
  }

  .hero-points li::before {
    position: absolute;
    left: 0;
    top: 0.08em;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    order: unset;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .raven-head {
    width: min(150%, 820px);
    margin-inline: auto;
    opacity: 0.55;
    filter: drop-shadow(0 0 28px rgba(0, 210, 255, 0.25));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid,
  .about-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .about-grid {
    text-align: center;
  }

  .about-body {
    margin-inline: auto;
  }

  .process-proof {
    margin-inline: auto;
    text-align: left;
  }

  .about-mark {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .pipeline,
  .process-steps {
    justify-items: stretch;
  }

  .pipeline-step,
  .process-steps li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pipeline-node,
  .step-num {
    margin-bottom: 0.25rem;
  }

  .footer-inner {
    text-align: center;
  }

  .footer-contact,
  .footer-brand,
  .footer-copy {
    justify-self: center;
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .footer-copy {
    align-items: center;
  }

  .micro-row {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .header-discount {
    font-size: 0.8rem;
    white-space: normal;
    max-width: 28ch;
  }

  .header-discount__icon {
    width: 20px;
    height: 20px;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav ul {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 104px;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    flex-wrap: nowrap;
    padding-top: 0;
    padding-bottom: 0;
  }

  .header-discount {
    white-space: normal;
    max-width: none;
    font-size: 0.88rem;
    justify-content: flex-start;
  }

  .site-nav__cluster {
    width: 100%;
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-nav.is-open .header-discount {
    display: inline-flex;
    padding-top: 0.35rem;
    border-top: 1px solid var(--metal-border);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(10, 13, 20, 0.97);
    border-bottom: 1px solid var(--metal-border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav li a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--metal-border);
  }

  .site-nav .btn-consult {
    margin-top: 1rem;
    width: 100%;
  }

  .cyber-container {
    padding-inline: 1.25rem;
    padding-block: calc(var(--header-h) + 0.75rem) 1.25rem;
  }

  .hero-content {
    min-height: 0;
    max-height: calc(100dvh - var(--header-h) - 2rem);
  }

  .hero-copy {
    padding: 0.75rem 0.65rem;
    max-width: 100%;
  }

  .raven-head {
    width: min(165%, 720px);
    opacity: 0.52;
  }

  .hero-points {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .scroll-hud {
    display: none;
  }
}

/* Short viewports: keep hero composition fully on-screen */
@media (max-height: 820px) {
  .cyber-container {
    padding-block: calc(var(--header-h) + 0.65rem) 1rem;
  }

  .eyebrow {
    margin-bottom: 0.4rem;
  }

  .hero-title {
    font-size: clamp(1.2rem, 1.5vw + 1vh, 1.75rem);
    margin-bottom: 0.3rem;
  }

  .hero-tagline {
    font-size: clamp(0.95rem, 0.9vw + 0.55vh, 1.1rem);
    margin-bottom: 0.45rem;
  }

  .hero-lead {
    font-size: clamp(0.95rem, 0.7vw + 0.5vh, 1.05rem);
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .raven-head {
    width: min(150%, 820px);
  }
}

@media (max-height: 700px) {
  .hero-title br {
    display: none;
  }

  .raven-head {
    width: min(140%, 720px);
    opacity: 0.45;
  }

  .hero-copy {
    padding-block: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pipeline-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pulse-line,
  .circuit-traces path,
  .raven-head,
  .micro-scan:hover::before,
  .micro-pulse:hover,
  .micro-eye:hover,
  .micro-gear:hover img,
  .feature-card:hover .feature-icon--spin img,
  .feature-card:hover .feature-icon--launch img,
  .feature-flip:hover:not(.is-flipped) .feature-icon--pin .map-pin__glyph,
  .feature-flip:hover:not(.is-flipped) .feature-icon--pin .map-pin__pow,
  .feature-flip:hover:not(.is-flipped) .feature-icon--pin .map-pin__burst {
    animation: none;
  }

  .feature-flip__inner {
    transition: none;
  }
}

/* —— Intake popup —— */
.intake-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(4, 8, 12, 0.86);
  backdrop-filter: blur(8px);
  place-items: center;
  padding: 1.25rem;
  overflow-y: auto;
}

.intake-overlay[hidden] {
  display: none !important;
}

.intake-overlay:not([hidden]) {
  display: grid;
}

.intake-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  margin: auto;
  padding: 1.5rem 1.35rem 1.75rem;
  border: 1px solid rgba(0, 210, 255, 0.35);
  background:
    linear-gradient(160deg, rgba(0, 210, 255, 0.06), transparent 40%),
    rgba(10, 13, 20, 0.97);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(0, 210, 255, 0.08);
}

.intake-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--metal-border);
  background: transparent;
  color: var(--neon-cyan);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.intake-close:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.25);
}

.intake-header {
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

.intake-header h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--neon-cyan);
  margin-bottom: 0.45rem;
}

.intake-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 48ch;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.intake-status {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.intake-status.is-ok {
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.55);
  color: #bbf7d0;
}

.intake-status.is-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fecaca;
}

.intake-form.is-sent fieldset,
.intake-form.is-sent .intake-actions {
  display: none;
}

.intake-form.is-sent .intake-status {
  margin: 1.5rem 0;
  padding: 1.25rem 1rem;
  font-size: 1.15rem;
}

.intake-form {
  display: grid;
  gap: 1rem;
}

.intake-form fieldset {
  border: 1px solid var(--metal-border);
  padding: 1rem 1.1rem;
  background: rgba(10, 13, 20, 0.45);
}

.intake-form legend {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  padding: 0 0.35rem;
}

.intake-form .form-group {
  margin-bottom: 0.85rem;
}

.intake-form .form-group:last-child {
  margin-bottom: 0;
}

.intake-form label,
.intake-form .field-label {
  display: block;
  margin: 0.35rem 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  cursor: pointer;
}

.intake-form .field-label {
  cursor: default;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="url"],
.intake-form input[type="tel"],
.intake-form input[type="file"],
.intake-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--metal-border);
  background: #05070a;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
}

.intake-form input:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: rgba(0, 210, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 210, 255, 0.25);
}

.intake-form .radio-group,
.intake-form .checkbox-group {
  display: grid;
  gap: 0.35rem;
}

.intake-form .field-hint {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  opacity: 0.9;
}

.intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0.35rem;
}

body.intake-open {
  overflow: hidden;
}
