/* SentryC — Futuristic HUD / Cyberpunk theme overlay */

:root {
  --bg: #030508;
  --bg-soft: #080d14;
  --surface: rgba(0, 16, 32, 0.78);
  --surface-strong: rgba(4, 12, 24, 0.94);
  --line: rgba(0, 212, 255, 0.22);
  --line-strong: rgba(0, 212, 255, 0.48);
  --text: #e8faff;
  --muted: rgba(160, 220, 240, 0.68);
  --primary: #00d4ff;
  --primary-soft: rgba(0, 212, 255, 0.14);
  --neon-cyan: #00ffff;
  --neon-blue: #0080ff;
  --neon-magenta: #c026d3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 212, 255, 0.06);
  --radius-xl: 4px;
  --radius-lg: 4px;
  --radius-md: 3px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.35);
  --glow-text: 0 0 12px rgba(0, 212, 255, 0.4);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 128, 255, 0.12), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(0, 212, 255, 0.08), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(192, 38, 211, 0.06), transparent 28%),
    linear-gradient(180deg, #020306 0%, #050810 45%, #080d14 100%);
}

/* ── Global overlays ── */

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.35;
}

.hud-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.ambient--left {
  background: rgba(0, 128, 255, 0.45);
}

.ambient--right {
  background: rgba(0, 212, 255, 0.28);
}

/* ── HUD status bar ── */

.hud-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.55);
  z-index: 19;
}

.hud-bar__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hud-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
  animation: hudPulse 2s ease-in-out infinite;
}

.hud-bar__clock {
  color: rgba(0, 212, 255, 0.75);
}

/* ── Header ── */

.header {
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  padding-top: 12px;
}

.nav {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  border-radius: 4px;
  border-color: rgba(0, 212, 255, 0.35);
}

/* ── Buttons ── */

.button {
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.button--primary {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.9) 0%, rgba(0, 128, 255, 0.85) 100%);
  color: #020508;
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 255, 255, 0.4);
}

.button--primary:hover {
  box-shadow: 0 0 36px rgba(0, 212, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button--secondary,
.button--ghost {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.04);
  color: var(--neon-cyan);
}

.button--secondary:hover,
.button--ghost:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: var(--glow-cyan);
}

/* ── HUD panel corners ── */

.hud-panel {
  position: relative;
}

.hud-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 3;
  pointer-events: none;
}

.hud-corner::before,
.hud-corner::after {
  content: "";
  position: absolute;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.hud-corner--tl { top: 12px; left: 12px; }
.hud-corner--tl::before { top: 0; left: 0; width: 24px; height: 1px; }
.hud-corner--tl::after { top: 0; left: 0; width: 1px; height: 24px; }

.hud-corner--tr { top: 12px; right: 12px; }
.hud-corner--tr::before { top: 0; right: 0; width: 24px; height: 1px; }
.hud-corner--tr::after { top: 0; right: 0; width: 1px; height: 24px; }

.hud-corner--bl { bottom: 12px; left: 12px; }
.hud-corner--bl::before { bottom: 0; left: 0; width: 24px; height: 1px; }
.hud-corner--bl::after { bottom: 0; left: 0; width: 1px; height: 24px; }

.hud-corner--br { bottom: 12px; right: 12px; }
.hud-corner--br::before { bottom: 0; right: 0; width: 24px; height: 1px; }
.hud-corner--br::after { bottom: 0; right: 0; width: 1px; height: 24px; }

/* ── Hero ── */

.hero__backdrop {
  border-radius: 4px;
  border-color: rgba(0, 212, 255, 0.2);
  background:
    radial-gradient(circle at 50% 65%, rgba(0, 128, 255, 0.22), transparent 38%),
    radial-gradient(circle at 50% 55%, rgba(0, 212, 255, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(2, 6, 12, 0.95), rgba(4, 8, 16, 0.98));
}

.hero__grid {
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
}

.hero__glow--one {
  background: rgba(0, 128, 255, 0.45);
}

.hero__glow--two {
  background: rgba(0, 212, 255, 0.25);
}

.hero__glow--core {
  position: absolute;
  width: 380px;
  height: 380px;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.10) 0%, rgba(0, 128, 255, 0.05) 40%, transparent 70%);
  filter: blur(50px);
  opacity: 0.55;
  animation: corePulse 6s ease-in-out infinite;
}

.hero__ring {
  border-color: rgba(0, 212, 255, 0.12);
}

.hero__beam {
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.45), transparent);
}

.hero-radar {
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.10);
  opacity: 0.28;
  z-index: 1;
  pointer-events: none;
}

.hero-radar::before {
  content: "";
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.hero-radar::after {
  content: "";
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.08);
}

.hero-radar__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 212, 255, 0.12) 30deg, transparent 60deg);
  animation: radarSweep 4s linear infinite;
}

.hero-radar__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 16px var(--neon-cyan);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 6px 16px 6px 6px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 4px;
  background: rgba(0, 212, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.85);
}

.hero__badge-year {
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(0, 128, 255, 0.85));
  color: #020508;
  border-radius: 2px;
  font-weight: 600;
}

.hero h1,
.section-heading h2,
.contact-hub__intro h2,
.proof-copy h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.hero h1 {
  text-shadow: var(--glow-text);
}

.hero__accent {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero {
  position: relative;
  z-index: 2;
}

.hero__backdrop {
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 3;
}

.hero__markers,
.hero-marker {
  display: none !important;
}

.hero__flow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin-bottom: 20px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245, 250, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__flow-step {
  color: rgba(214, 228, 255, 0.72);
}

.hero__flow-arrow {
  color: rgba(0, 212, 255, 0.55);
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ── Typography ── */

.eyebrow {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "// ";
  opacity: 0.5;
}

.direction-card__index {
  display: none;
}

.process-step span:not(.process-step__num) {
  display: none;
}

.process-step__num {
  display: inline-block;
}

/* ── Cards ── */

.glass-card {
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.92), rgba(2, 6, 12, 0.88));
  border: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow: var(--shadow);
  position: relative;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.glass-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: var(--shadow), 0 0 30px rgba(0, 212, 255, 0.08);
}

.direction-card::before {
  background: linear-gradient(90deg, var(--neon-cyan), transparent);
}


.process-step.is-active {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.06);
  box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.process-path__progress span {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

/* ── Contact & form ── */

.contact-hub__marker {
  color: var(--neon-cyan);
  text-shadow: var(--glow-text);
}

.contact-hub__orbit {
  border-color: rgba(0, 212, 255, 0.2);
}

.contact-hub__pulse {
  background: rgba(0, 212, 255, 0.15);
}

.lead-form input,
.lead-form textarea {
  border-radius: 4px;
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.03);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  outline: none;
}

.lead-form label span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.6);
}

/* ── Footer ── */

.footer {
  border-top: 1px solid rgba(0, 212, 255, 0.12);
  font-family: var(--font-body);
}

.footer__contacts a:hover {
  color: var(--neon-cyan);
  text-shadow: var(--glow-text);
}

/* ── Success modal ── */

.success-modal__dialog {
  border: 1px solid rgba(0, 212, 255, 0.3);
}

/* ── Reveal animation ── */

.reveal.is-visible {
  animation: hudReveal 0.7s ease forwards;
}

/* ── Keyframes ── */

@keyframes hudPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes corePulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

@keyframes markerFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hudReveal {
  from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ── Responsive ── */

@media (max-width: 860px) {
  .hud-bar {
    display: none;
  }

  .hero__flow {
    font-size: 0.65rem;
    gap: 4px 8px;
    padding: 7px 14px;
    margin-bottom: 16px;
  }

  .hero-radar {
    width: 160px;
    height: 160px;
    opacity: 0.18;
  }

  .hero__glow--core {
    width: 260px;
    height: 260px;
    opacity: 0.4;
  }
}

@media (max-width: 560px) {
  .hero__backdrop {
    border-radius: 4px;
  }

  .hero__badge {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scanlines {
    display: none;
  }
}

/* ──────────────────────────────────────────────────────────────────────────────
   Cosmic Holo-Glass overrides (tech/space, less cyberpunk)
   Appended last to override earlier rules safely.
   ────────────────────────────────────────────────────────────────────────────── */

:root {
  --bg: #050714;
  --bg-soft: #0b1026;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(180, 210, 255, 0.16);
  --line-strong: rgba(180, 210, 255, 0.28);
  --text: rgba(245, 250, 255, 0.96);
  --muted: rgba(214, 228, 255, 0.68);
  --primary: #22d3ee;
  --primary-soft: rgba(34, 211, 238, 0.14);
  --scene-accent: #22d3ee;
  --scene-accent2: #a78bfa;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

body {
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.10), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(167, 139, 250, 0.08), transparent 24%),
    radial-gradient(circle at 50% 110%, rgba(96, 165, 250, 0.08), transparent 32%),
    linear-gradient(180deg, #040612 0%, #070a18 38%, #0b1026 100%);
}

.scanlines {
  z-index: 2;
  opacity: 0.08;
}

.hud-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 96px 96px;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.10) 0 1px, transparent 2px),
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 22%, rgba(255, 255, 255, 0.10) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 56%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 70%, rgba(255, 255, 255, 0.07) 0 1px, transparent 2px),
    radial-gradient(circle at 52% 78%, rgba(255, 255, 255, 0.09) 0 1px, transparent 2px);
  filter: blur(0.2px);
  transform: translate3d(0, 0, 0);
  animation: starDrift 18s linear infinite;
}

.page-shell::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 30% 35%, color-mix(in srgb, var(--scene-accent) 26%, transparent) 0%, transparent 38%),
    radial-gradient(circle at 70% 25%, color-mix(in srgb, var(--scene-accent2) 22%, transparent) 0%, transparent 44%),
    radial-gradient(circle at 60% 78%, rgba(96, 165, 250, 0.10) 0%, transparent 45%);
  filter: blur(42px);
  opacity: 0.7;
  transition: opacity 600ms ease, transform 900ms ease;
  transform: translate3d(0, calc(var(--scroll-y, 0) * -0.06px), 0);
}

.page-shell.is-scrolling::after {
  opacity: 0.88;
}

.hud-bar {
  color: rgba(214, 228, 255, 0.55);
}

.hud-bar__dot {
  background: var(--scene-accent);
  box-shadow: 0 0 26px color-mix(in srgb, var(--scene-accent) 40%, transparent);
}

.hud-bar__clock {
  color: rgba(245, 250, 255, 0.72);
}

.header {
  border-bottom-color: rgba(180, 210, 255, 0.12);
}

.nav {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.nav a::after {
  background: linear-gradient(90deg, var(--scene-accent), var(--scene-accent2));
  box-shadow: 0 0 26px color-mix(in srgb, var(--scene-accent) 30%, transparent);
}

.nav-toggle {
  border-radius: 16px;
  border-color: rgba(180, 210, 255, 0.22);
}

.button {
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.button--primary {
  background: linear-gradient(135deg, var(--scene-accent) 0%, var(--scene-accent2) 100%);
  color: #050714;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 60px color-mix(in srgb, var(--scene-accent) 26%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button--primary:hover {
  box-shadow:
    0 22px 70px color-mix(in srgb, var(--scene-accent2) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button--secondary,
.button--ghost {
  border-color: rgba(180, 210, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 250, 255, 0.88);
}

.button--secondary:hover,
.button--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 250, 255, 0.22);
  box-shadow:
    0 0 26px color-mix(in srgb, var(--scene-accent) 24%, transparent),
    0 0 26px color-mix(in srgb, var(--scene-accent2) 18%, transparent);
}

.hud-corner::before,
.hud-corner::after {
  background: color-mix(in srgb, var(--scene-accent) 70%, white);
  box-shadow: 0 0 26px color-mix(in srgb, var(--scene-accent) 30%, transparent);
}

.hero__backdrop {
  border-radius: var(--radius-xl);
  border-color: rgba(180, 210, 255, 0.18);
  background:
    radial-gradient(circle at 50% 64%, color-mix(in srgb, var(--scene-accent) 18%, transparent), transparent 42%),
    radial-gradient(circle at 55% 52%, color-mix(in srgb, var(--scene-accent2) 14%, transparent), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.hero__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.hero__glow--one {
  background: color-mix(in srgb, var(--scene-accent2) 40%, transparent);
}

.hero__glow--two {
  background: color-mix(in srgb, var(--scene-accent) 30%, transparent);
}

.hero__glow--core {
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--scene-accent) 16%, transparent) 0%,
    color-mix(in srgb, var(--scene-accent2) 10%, transparent) 42%,
    transparent 72%
  );
  opacity: 0.45;
}

.hero__ring {
  border-color: rgba(245, 250, 255, 0.10);
}

.hero__beam {
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--scene-accent) 40%, transparent), transparent);
}

.hero-radar {
  border-color: rgba(245, 250, 255, 0.08);
  opacity: 0.22;
}

.hero-radar::before {
  border-color: rgba(245, 250, 255, 0.06);
}

.hero-radar::after {
  border-color: rgba(245, 250, 255, 0.04);
}

.hero-radar__sweep {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    color-mix(in srgb, var(--scene-accent) 14%, transparent) 26deg,
    transparent 62deg
  );
}

.hero-radar__core {
  background: var(--scene-accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--scene-accent) 45%, transparent);
}

.hero__badge {
  border-color: rgba(245, 250, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(245, 250, 255, 0.84);
}

.hero__badge-year {
  background: linear-gradient(135deg, var(--scene-accent), var(--scene-accent2));
  color: #050714;
  border-radius: 999px;
}

.hero h1 {
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero__accent {
  background: linear-gradient(90deg, var(--scene-accent), var(--scene-accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__flow {
  border-color: rgba(245, 250, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hero__flow-step {
  color: rgba(214, 228, 255, 0.72);
}

.hero__flow-arrow {
  color: color-mix(in srgb, var(--scene-accent) 70%, white);
}

#hero {
  --hero-scroll: 0;
}

.eyebrow {
  color: rgba(214, 228, 255, 0.72);
  font-size: 0.72rem;
}

.eyebrow::before {
  content: "• ";
  opacity: 0.7;
}

.glass-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 250, 255, 0.10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--scene-accent) 10%, transparent), transparent 45%),
    radial-gradient(circle at 90% 40%, color-mix(in srgb, var(--scene-accent2) 8%, transparent), transparent 55%);
}

.glass-card:not(.direction-card)::before {
  background: linear-gradient(90deg, var(--scene-accent), transparent);
  box-shadow: 0 0 26px color-mix(in srgb, var(--scene-accent) 30%, transparent);
}

.glass-card:hover {
  border-color: rgba(245, 250, 255, 0.16);
  box-shadow:
    var(--shadow),
    0 0 26px color-mix(in srgb, var(--scene-accent) 24%, transparent),
    0 0 26px color-mix(in srgb, var(--scene-accent2) 18%, transparent);
}

.process-step.is-active {
  border-color: rgba(245, 250, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.04);
}

.contact-hub__marker {
  background: linear-gradient(90deg, var(--scene-accent), var(--scene-accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead-form input,
.lead-form textarea {
  border-radius: 16px;
  border-color: rgba(245, 250, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(245, 250, 255, 0.20);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--scene-accent) 18%, transparent);
}

.lead-form label span {
  color: rgba(214, 228, 255, 0.55);
}

.footer__contacts a:hover {
  color: rgba(245, 250, 255, 0.96);
  text-shadow: 0 0 26px color-mix(in srgb, var(--scene-accent) 30%, transparent);
}

.success-modal__dialog {
  border-color: rgba(245, 250, 255, 0.12);
}

@keyframes starDrift {
  0% { transform: translate3d(0, 0, 0); opacity: 0.45; }
  50% { transform: translate3d(-1.5%, 1.5%, 0); opacity: 0.6; }
  100% { transform: translate3d(0, 0, 0); opacity: 0.45; }
}

/* ── Scroll progress ── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--scene-accent), var(--scene-accent2));
  box-shadow: 0 0 18px color-mix(in srgb, var(--scene-accent) 45%, transparent);
  transition: transform 0.12s linear;
}

/* ── Scroll rail ── */

.scroll-rail {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 8px;
  border-radius: 999px;
  border: 1px solid rgba(245, 250, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.scroll-rail__dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(245, 250, 255, 0.22);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.scroll-rail__dot span {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.scroll-rail__dot::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 4px 10px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(245, 250, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 250, 255, 0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-rail__dot:hover::before,
.scroll-rail__dot.is-active::before {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

.scroll-rail__dot.is-active,
.scroll-rail__dot:hover {
  border-color: color-mix(in srgb, var(--scene-accent) 60%, white);
  transform: scale(1.15);
}

.scroll-rail__dot.is-active span,
.scroll-rail__dot:hover span {
  background: linear-gradient(135deg, var(--scene-accent), var(--scene-accent2));
  box-shadow: 0 0 12px color-mix(in srgb, var(--scene-accent) 50%, transparent);
}

/* ── Scene dividers ── */

.scene-divider {
  position: relative;
  height: 72px;
  margin: -20px 0 0;
  pointer-events: none;
  overflow: hidden;
}

.scene-divider__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(680px, 70vw);
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--scene-accent) 55%, transparent),
    color-mix(in srgb, var(--scene-accent2) 55%, transparent),
    transparent
  );
  opacity: 0.55;
}

.scene-divider__line--bright {
  opacity: 0.85;
  box-shadow: 0 0 24px color-mix(in srgb, var(--scene-accent) 35%, transparent);
}

.scene-divider__arc {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 64px;
  object-fit: cover;
  opacity: 0.55;
  animation: warpPulse 6s ease-in-out infinite;
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.scene-divider__arc--flip {
  transform: scaleY(-1);
  bottom: auto;
  top: 0;
}

.scene-divider__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, color-mix(in srgb, var(--scene-accent) 22%, transparent), transparent 70%);
  filter: blur(24px);
  opacity: 0.7;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scene-divider--warp {
  height: 88px;
}

.scene-divider--cta {
  height: 56px;
  margin-bottom: -8px;
}

.scene-divider.is-warp-active .scene-divider__arc {
  animation: warpBurst 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.scene-divider.is-warp-active .scene-divider__glow {
  animation: warpGlowBurst 1.2s ease forwards;
}

/* ── Section visuals ── */

.about-showcase--visual {
  grid-template-columns: minmax(180px, 0.7fr) 1.15fr 0.85fr;
  align-items: stretch;
}

.section-visual--orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  align-self: center;
}

.section-visual__svg {
  width: min(280px, 100%);
  height: auto;
  opacity: 0.85;
  animation: orbitSpin 48s linear infinite;
}

.section-visual__svg--orbit {
  filter: drop-shadow(0 0 28px color-mix(in srgb, var(--scene-accent) 25%, transparent));
}

.section-visual__glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--scene-accent2) 18%, transparent), transparent 65%);
  filter: blur(18px);
  animation: corePulse 8s ease-in-out infinite;
}

.pipeline-visual {
  margin: 8px 0 28px;
  padding: 0 8px;
  opacity: 0.9;
}

.pipeline-visual__svg {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 8px 32px color-mix(in srgb, var(--scene-accent) 15%, transparent));
}

/* ── Scroll scenes & stagger ── */

.scroll-scene {
  --parallax: 0;
  position: relative;
  scroll-margin-top: 96px;
}

.scroll-scene.is-scene-active .section-heading h2 {
  background: linear-gradient(90deg, var(--text) 0%, color-mix(in srgb, var(--scene-accent) 35%, white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background 0.8s ease;
}

.scroll-scene.is-scene-active .eyebrow {
  color: color-mix(in srgb, var(--scene-accent) 80%, white);
}

.scroll-scene .section-heading,
.scroll-scene .section-visual,
.scroll-scene .pipeline-visual {
  transform: translateY(calc(var(--parallax) * -18px));
  will-change: transform;
}

.scroll-scene.is-scene-enter {
  animation: sceneEnter 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 0.95s ease,
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s ease;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.6s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ── Direction SVG icons ── */

.direction-card__icon--svg {
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--scene-accent) 12%, transparent), transparent 55%);
}

.direction-card__svg {
  width: 52px;
  height: 52px;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: drop-shadow(0 0 14px color-mix(in srgb, var(--scene-accent) 22%, transparent));
}

.direction-card:hover .direction-card__svg {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 0 22px color-mix(in srgb, var(--scene-accent) 38%, transparent));
}

/* ── Format / case / benefit / proof SVG icons ── */

.format-card__icon--svg,
.case-panel__icon--svg {
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--scene-accent) 12%, transparent), transparent 55%);
}

.format-card__icon--svg {
  padding: 12px;
}

.case-panel__icon--svg {
  width: 72px;
  height: 72px;
  margin-bottom: 4px;
}

.format-card__svg,
.case-panel__svg {
  width: 48px;
  height: 48px;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: drop-shadow(0 0 14px color-mix(in srgb, var(--scene-accent) 22%, transparent));
}

.format-card:hover .format-card__svg,
.case-panel:hover .case-panel__svg {
  transform: scale(1.08) translateY(-2px);
  filter: drop-shadow(0 0 22px color-mix(in srgb, var(--scene-accent) 38%, transparent));
}

.benefit-chip__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--scene-accent) 24%, transparent));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.benefit-chip__icon--spotlight {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.benefit-chip:hover .benefit-chip__icon,
.benefit-spotlight:hover .benefit-chip__icon {
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--scene-accent) 36%, transparent));
}

.proof-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.proof-list__icon {
  width: 36px;
  height: 36px;
  margin-top: 2px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--scene-accent) 20%, transparent));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.proof-list article:hover .proof-list__icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--scene-accent) 34%, transparent));
}

.proof-list article > div {
  min-width: 0;
}

/* ── Process scroll timeline ── */

.process-timeline {
  display: grid;
  gap: 18px;
}

.process-timeline__rail {
  position: relative;
  padding: 0 16px;
}

.process-timeline__track {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: rgba(245, 250, 255, 0.08);
}

.process-timeline__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: scaleX(var(--timeline-progress, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--scene-accent), var(--scene-accent2));
  box-shadow: 0 0 18px color-mix(in srgb, var(--scene-accent) 45%, transparent);
  will-change: transform;
}

.process-timeline__orb {
  position: absolute;
  top: 50%;
  left: calc(var(--timeline-progress, 0) * 100%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--scene-accent), var(--scene-accent2));
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.04),
    0 0 22px color-mix(in srgb, var(--scene-accent) 55%, transparent);
  will-change: left;
}

.process-timeline__dots {
  display: none;
}

.process-path--scroll {
  position: relative;
}

.process-step.is-complete {
  opacity: 0.78;
}

/* ── Process path line (desktop hidden, mobile vertical) ── */

.process-path__line {
  display: none;
}

/* ── Scroll WOW effects ── */

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.15s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  animation: hudReveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal.is-visible .glass-card,
.reveal-stagger.is-visible .glass-card {
  animation: glassCardEnter 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.reveal-stagger.is-visible > *:nth-child(1) .glass-card { animation-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(2) .glass-card { animation-delay: 0.22s; }
.reveal-stagger.is-visible > *:nth-child(3) .glass-card { animation-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(4) .glass-card { animation-delay: 0.42s; }

@keyframes warpPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.75; }
}

@keyframes warpBurst {
  0% { opacity: 0.25; transform: scaleX(0.88); filter: blur(3px); }
  45% { opacity: 1; transform: scaleX(1.04); filter: blur(0); }
  100% { opacity: 0.55; transform: scaleX(1); filter: blur(0); }
}

@keyframes warpGlowBurst {
  0% { opacity: 0.15; transform: translate(-50%, -50%) scale(0.75); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.35); }
  100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes sceneEnter {
  from {
    opacity: 0.65;
    filter: blur(8px);
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes glassCardEnter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .scroll-rail {
    display: none;
  }

  .about-showcase--visual {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .section-visual--orbit {
    grid-column: 1 / -1;
    min-height: 200px;
    order: -1;
  }

  .section-visual__svg {
    width: min(220px, 70vw);
  }
}

@media (max-width: 860px) {
  .page-shell {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .header {
    padding-top: env(safe-area-inset-top);
  }

  .scroll-progress {
    top: env(safe-area-inset-top);
  }

  .page-shell::after {
    opacity: 0.45;
    filter: blur(56px);
  }

  .scanlines {
    opacity: 0.08;
  }

  .section {
    padding-top: 72px;
  }

  .section-heading--split {
    gap: 12px;
  }

  .section-heading--split p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .scene-divider {
    height: 48px;
    margin-top: -8px;
  }

  .scene-divider--warp {
    height: 56px;
  }

  .about-showcase--visual {
    grid-template-columns: 1fr;
  }

  .section-visual--orbit {
    min-height: 160px;
  }

  .pipeline-visual {
    margin: 0 -4px 8px;
    overflow: hidden;
  }

  .pipeline-visual__svg {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .benefits-rail {
    gap: 14px;
  }

  .benefit-spotlight,
  .benefit-chip {
    padding: 20px;
  }

  .case-panel {
    min-height: auto;
  }

  .contact-hub {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-hub__visual {
    min-height: 140px;
  }

  .process-timeline__rail {
    display: none;
  }

  .process-path--scroll {
    padding: 22px 20px 22px 56px;
  }

  .process-path__line {
    display: block;
    position: absolute;
    left: 27px;
    top: 36px;
    bottom: 36px;
    width: 3px;
    border-radius: 999px;
    background: rgba(245, 250, 255, 0.08);
    z-index: 0;
  }

  .process-path__line-fill {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transform: scaleY(var(--timeline-progress, 0));
    transform-origin: top center;
    background: linear-gradient(180deg, var(--scene-accent), var(--scene-accent2));
    box-shadow: 0 0 18px color-mix(in srgb, var(--scene-accent) 45%, transparent);
    will-change: transform;
  }

  .process-step {
    position: relative;
    padding: 18px 16px;
    margin-bottom: 10px;
    transform: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .process-step:last-child {
    margin-bottom: 0;
  }

  .process-step::before {
    content: "";
    position: absolute;
    left: -37px;
    top: 26px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(245, 250, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    z-index: 2;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  .process-step.is-complete::before {
    background: color-mix(in srgb, var(--scene-accent) 35%, transparent);
    border-color: color-mix(in srgb, var(--scene-accent) 45%, transparent);
  }

  .process-step.is-active::before {
    transform: scale(1.25);
    border-color: color-mix(in srgb, var(--scene-accent) 70%, white);
    background: linear-gradient(135deg, var(--scene-accent), var(--scene-accent2));
    box-shadow: 0 0 16px color-mix(in srgb, var(--scene-accent) 50%, transparent);
  }

  .process-step.is-active {
    transform: none;
    box-shadow: 0 16px 40px color-mix(in srgb, var(--scene-accent) 14%, transparent);
  }

  .process-step:not(.is-active) {
    opacity: 0.72;
  }

  .process-step h3 {
    font-size: 1.05rem;
  }

  .process-step p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .proof-list article {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .button {
    min-height: 48px;
    padding-inline: 20px;
  }

  .process-timeline__rail {
    padding: 0 8px;
  }

  .direction-card__icon--svg {
    padding: 18px;
  }

  .direction-card__svg {
    width: 44px;
    height: 44px;
  }

  .format-card__svg,
  .case-panel__svg {
    width: 40px;
    height: 40px;
  }

  .proof-list article {
    gap: 12px;
  }

  .proof-list__icon {
    width: 32px;
    height: 32px;
  }

  .hero__flow {
    font-size: 0.62rem;
    padding: 6px 12px;
  }
}

@media (max-width: 560px) {
  .hero__backdrop {
    border-radius: 20px;
  }

  .hero__badge {
    font-size: 0.68rem;
  }

  .hero__flow {
    gap: 4px 6px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .hero__kicker {
    font-size: 0.92rem;
  }

  .section {
    padding-top: 64px;
  }

  .section-heading h2,
  .proof-copy h2,
  .contact-hub__intro h2 {
    font-size: clamp(1.65rem, 8.5vw, 2.2rem);
  }

  .scene-divider,
  .scene-divider--warp {
    height: 40px;
    margin-top: -6px;
  }

  .section-visual__svg {
    width: min(180px, 62vw);
  }

  .process-path--scroll {
    padding-left: 50px;
  }

  .process-path__line {
    left: 23px;
  }

  .process-step::before {
    left: -33px;
    width: 12px;
    height: 12px;
  }

  .direction-card__icon--svg {
    padding: 16px;
  }

  .format-card__icon--svg,
  .case-panel__icon--svg {
    width: 64px;
    height: 64px;
  }

  .footer {
    gap: 20px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-visual__svg,
  .scene-divider__arc,
  .page-shell::before,
  .scroll-scene.is-scene-enter {
    animation: none;
  }

  .scroll-scene .section-heading,
  .scroll-scene .section-visual,
  .scroll-scene .pipeline-visual,
  #hero .hero__content,
  #hero .hero__backdrop,
  #hero.hero-cinematic .hero__content,
  #hero.hero-cinematic .hero__backdrop {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .page-shell::after {
    transform: none;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .reveal.is-visible .glass-card,
  .reveal-stagger.is-visible .glass-card {
    animation: none;
  }

  .process-timeline__fill,
  .process-timeline__orb,
  .process-path__line-fill {
    transition: none;
  }

  .scroll-cue {
    animation: none;
  }

  #hero .hero__content,
  #hero .hero__backdrop {
    transform: none;
    opacity: 1;
    transition: none;
  }
}

/* ──────────────────────────────────────────────────────────────────────────────
   Visual polish — keep cosmic theme clean
   ────────────────────────────────────────────────────────────────────────────── */

.scanlines--off {
  display: none !important;
}

#hero .hero__content {
  opacity: calc(1 - var(--hero-scroll, 0) * 0.32);
  transform: translateY(calc(var(--hero-scroll, 0) * -20px));
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

#hero .hero__backdrop {
  opacity: calc(1 - var(--hero-scroll, 0) * 0.18);
  transform: scale(calc(1 - var(--hero-scroll, 0) * 0.02));
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

.eyebrow::before {
  content: none;
}

.glass-card::before {
  width: 48px;
  opacity: 0.55;
}

.section--cases .proof-list {
  margin-top: 1.25rem;
}

.process-meta {
  margin: 0.35rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(214, 228, 255, 0.5);
}

.process-step__num {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(214, 228, 255, 0.4);
}

.process-step.is-active .process-step__num {
  color: var(--scene-accent);
}

.process-step.is-active {
  border-color: rgba(245, 250, 255, 0.18);
  box-shadow: inset 0 0 20px color-mix(in srgb, var(--scene-accent) 8%, transparent);
}

.contact-hub__orbit--two,
.contact-hub__pulse--two {
  display: none;
}

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

.contact-chip__icon svg {
  display: block;
}

.section-heading .section-heading__subline {
  margin-top: 0.5rem;
  padding-left: 0;
  border-left: none;
  line-height: 1.65;
}
