/* ============================================================
   ORBIT INTELLIGENCE — Mission Control Design System
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors */
  --bg-void: #0A0A0F;
  --bg-panel: #12121A;
  --bg-elevated: #1A1A24;
  --chrome: #C0C0CC;
  --chrome-dim: #8A8A95;
  --steel-blue: #4A6FA5;
  --cyan-glow: #00D4FF;
  --white: #FFFFFF;
  --border-subtle: rgba(192, 192, 204, 0.08);
  --border-active: rgba(0, 212, 255, 0.4);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing scale (4px base) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-12: 48px;
  --s-16: 64px;
  --s-24: 96px;
  --s-32: 128px;
  --s-48: 192px;

  /* Geometry */
  --radius: 2px;
  --max-width: 1280px;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-void);
  color: var(--chrome);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--cyan-glow);
  color: var(--bg-void);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-void);
}
::-webkit-scrollbar-thumb {
  background: var(--chrome-dim);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--chrome);
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--chrome-dim) var(--bg-void);
}

/* ---------- TYPOGRAPHY PRIMITIVES ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--chrome);
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--steel-blue);
  display: inline-block;
  margin-bottom: var(--s-4);
}

.mono {
  font-family: var(--font-mono);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

section {
  position: relative;
}

.section-pad {
  padding: var(--s-24) 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--bg-void);
}
.btn-primary:hover {
  background: var(--cyan-glow);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--chrome);
  border-color: var(--chrome-dim);
}
.btn-secondary:hover {
  border-color: var(--cyan-glow);
  color: var(--cyan-glow);
}

.btn-cyan {
  background: transparent;
  color: var(--cyan-glow);
  border-color: var(--border-active);
}
.btn-cyan:hover {
  background: var(--cyan-glow);
  color: var(--bg-void);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.nav-brand img {
  height: 40px;
  width: auto;
}
.nav-brand .wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--chrome);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}
.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--chrome);
  padding: 4px 0;
  transition: color 200ms ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--cyan-glow);
  transition: width 200ms ease;
}
.nav-links a:hover {
  color: var(--cyan-glow);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--chrome);
  transition: transform 250ms ease, opacity 250ms ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile slide-in panel — mission-control nav drawer */
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(88vw, 380px);
  background:
    radial-gradient(135% 55% at 100% 0%, rgba(0, 212, 255, 0.12), transparent 62%),
    linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-void) 100%);
  border-left: 1px solid var(--border-active);
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.55);
  transform: translateX(105%);
  transition: transform 440ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  padding: 84px var(--s-7) var(--s-7);
  display: flex;
  flex-direction: column;
  counter-reset: navi;
  overflow-y: auto;
}
.mobile-panel.open {
  transform: translateX(0);
}
/* branded header label */
.mobile-panel::before {
  content: "NAVIGATION // ORBIT";
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-blue);
  padding-bottom: var(--s-4);
  margin-bottom: var(--s-2);
  border-bottom: 1px solid var(--border-subtle);
}
/* staggered entrance */
.mobile-panel a {
  opacity: 0;
  transform: translateX(18px);
}
.mobile-panel.open a {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease, color 220ms ease, padding-left 220ms ease;
}
.mobile-panel.open a:nth-of-type(1) { transition-delay: 90ms; }
.mobile-panel.open a:nth-of-type(2) { transition-delay: 140ms; }
.mobile-panel.open a:nth-of-type(3) { transition-delay: 190ms; }
.mobile-panel.open a:nth-of-type(4) { transition-delay: 240ms; }
.mobile-panel.open a:nth-of-type(5) { transition-delay: 290ms; }
.mobile-panel.open a:nth-of-type(6) { transition-delay: 340ms; }
.mobile-panel.open a:nth-of-type(7) { transition-delay: 390ms; }
.mobile-panel.open a:nth-of-type(8) { transition-delay: 440ms; }
/* nav links with index numbers + arrow */
.mobile-panel a:not(.btn) {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--chrome);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-panel a:not(.btn)::before {
  counter-increment: navi;
  content: counter(navi, decimal-leading-zero);
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  color: var(--steel-blue);
  min-width: 20px;
  transition: color 220ms ease;
}
.mobile-panel a:not(.btn)::after {
  content: "→";
  margin-left: auto;
  font-size: 15px;
  color: var(--steel-blue);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}
.mobile-panel a:not(.btn):hover,
.mobile-panel a:not(.btn):focus-visible {
  color: var(--cyan-glow);
  padding-left: var(--s-3);
}
.mobile-panel a:not(.btn):hover::before,
.mobile-panel a:not(.btn):focus-visible::before { color: var(--cyan-glow); }
.mobile-panel a:not(.btn):hover::after,
.mobile-panel a:not(.btn):focus-visible::after {
  opacity: 1;
  transform: none;
  color: var(--cyan-glow);
}
.mobile-panel .btn {
  margin-top: var(--s-7);
  width: 100%;
  justify-content: center;
}
/* signature footer */
.mobile-panel::after {
  content: "AI EMPLOYEES · NAGPUR, INDIA · 24/7";
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--chrome-dim);
  text-align: center;
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border-subtle);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 11, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(74, 111, 165, 0.18),
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  gap: var(--s-12);
  width: 100%;
  padding-top: 72px;
}

.hero-content {
  max-width: 700px;
}
.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--chrome);
  max-width: 700px;
  margin-bottom: var(--s-6);
}
.hero-sub {
  font-size: 18px;
  color: var(--chrome-dim);
  max-width: 600px;
  margin-bottom: var(--s-8);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.hero-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chrome-dim);
  letter-spacing: 0.02em;
}

/* Orbit ring */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit {
  width: 380px;
  height: 380px;
  position: relative;
}
.orbit svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.orbit-rotor {
  transform-origin: 200px 200px;
  animation: orbit-spin 30s linear infinite;
}
.orbit-rotor-rev {
  transform-origin: 200px 200px;
  animation: orbit-spin 45s linear infinite reverse;
}
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.orbit-dot {
  fill: var(--cyan-glow);
  filter: drop-shadow(0 0 6px var(--cyan-glow));
}
.orbit-ring {
  fill: none;
  stroke: var(--border-subtle);
  stroke-width: 1;
}
.orbit-ring-active {
  fill: none;
  stroke: rgba(0, 212, 255, 0.25);
  stroke-width: 1;
}
.orbit-core {
  fill: rgba(74, 111, 165, 0.15);
  stroke: var(--steel-blue);
  stroke-width: 1;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--s-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}
.scroll-track {
  position: relative;
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
  overflow: hidden;
}
.scroll-track::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 12px;
  background: var(--cyan-glow);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: translateY(-12px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(48px); opacity: 0; }
}
.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--chrome-dim);
  text-transform: uppercase;
}

/* ============================================================
   PROBLEM STRIP
   ============================================================ */
.problem-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-panel);
  padding: var(--s-16) 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.problem-col {
  text-align: center;
  padding: 0 var(--s-8);
  position: relative;
}
.problem-col + .problem-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 64px;
  width: 1px;
  background: var(--steel-blue);
  opacity: 0.5;
}
.problem-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  color: var(--chrome);
  line-height: 1;
  margin-bottom: var(--s-3);
}
.problem-col.is-cyan .problem-num {
  color: var(--cyan-glow);
}
.problem-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--chrome-dim);
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-head {
  margin-bottom: var(--s-16);
  max-width: 640px;
}
.section-head h2 {
  font-size: 42px;
  line-height: 1.1;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.service-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}
.service-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-active);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: var(--s-6);
  color: var(--cyan-glow);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: var(--s-4);
}
.service-card p {
  font-size: 15px;
  color: var(--chrome-dim);
  flex-grow: 1;
  margin-bottom: var(--s-6);
}
.card-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan-glow);
  letter-spacing: 0.05em;
  transition: gap 200ms ease, opacity 200ms ease;
  display: inline-flex;
  gap: var(--s-1);
}
.card-link:hover {
  opacity: 0.8;
  gap: var(--s-2);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  position: relative;
}
.step {
  position: relative;
  padding-top: var(--s-8);
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
}
.step::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--cyan-glow);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--cyan-glow);
  margin-bottom: var(--s-3);
  display: block;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: var(--s-3);
}
.step p {
  font-size: 14px;
  color: var(--chrome-dim);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--s-12) 0;
  text-align: center;
}
.trust-strip .eyebrow {
  margin-bottom: var(--s-8);
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-12);
}
.trust-logos span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--chrome-dim);
  transition: color 200ms ease;
}
.trust-logos span:hover {
  color: var(--chrome);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  text-align: center;
  padding: var(--s-32) 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(0, 212, 255, 0.1),
    transparent 70%
  );
  pointer-events: none;
}
.cta-banner .inner {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: 52px;
  margin-bottom: var(--s-4);
}
.cta-banner p {
  font-size: 18px;
  color: var(--chrome-dim);
  margin-bottom: var(--s-8);
}
.cta-banner .hero-cta {
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--s-24);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-12);
  padding-bottom: var(--s-16);
}
.footer-brand .nav-brand {
  margin-bottom: var(--s-6);
}
.footer-brand p {
  font-size: 14px;
  color: var(--chrome-dim);
  max-width: 280px;
}
.footer-brand .addr {
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: var(--s-4);
  line-height: 1.8;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--steel-blue);
  margin-bottom: var(--s-6);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer-col a {
  font-size: 14px;
  color: var(--chrome-dim);
  transition: color 200ms ease;
}
.footer-col a:hover {
  color: var(--cyan-glow);
}
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: var(--s-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome-dim);
}
.footer-bottom .version {
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius);
  color: var(--steel-blue);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PLACEHOLDER PAGES
   ============================================================ */
.placeholder-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--s-6) var(--s-16);
}
.placeholder-wrap .eyebrow {
  margin-bottom: var(--s-6);
}
.placeholder-wrap h1 {
  font-size: 56px;
  margin-bottom: var(--s-4);
}
.placeholder-wrap p {
  color: var(--chrome-dim);
  max-width: 480px;
  margin-bottom: var(--s-8);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 52px; }
  .section-head h2 { font-size: 36px; }
  .cta-banner h2 { font-size: 42px; }
  .orbit { width: 320px; height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* more specific than .container so its padding shorthand can't reset padding-top */
  .hero .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-8);
    padding-top: 104px;
    padding-bottom: var(--s-8);
  }
  .hero { min-height: auto; padding-bottom: var(--s-6); }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero h1 { font-size: 38px; line-height: 1.1; margin: 0 auto var(--s-5); }
  .hero-sub { font-size: 16px; margin-left: auto; margin-right: auto; margin-bottom: var(--s-6); }
  .hero-cta { justify-content: center; }
  .hero-visual { order: 2; }
  .orbit { width: 240px; height: 240px; }
  .scroll-indicator { display: none; }

  .problem-grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .problem-col { padding: 0; }
  .problem-col + .problem-col::before {
    left: 50%;
    top: -24px;
    transform: translateX(-50%);
    height: 1px;
    width: 64px;
  }

  .services-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; gap: 0; padding-left: var(--s-8); }
  .step {
    padding-top: var(--s-6);
    padding-bottom: var(--s-8);
    padding-left: var(--s-8);
    border-left: 1px solid var(--border-subtle);
  }
  .step::before { display: none; }
  .step::after {
    top: var(--s-6);
    left: -2px;
    width: 3px;
    height: 32px;
  }
  .step:last-child { border-left-color: transparent; }

  .section-head h2 { font-size: 32px; }
  .cta-banner h2 { font-size: 34px; }
  .cta-banner { padding: var(--s-24) 0; }

  .trust-logos { gap: var(--s-8); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer-bottom { flex-direction: column; gap: var(--s-4); text-align: center; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 30px; line-height: 1.12; }
  /* keep the hero clear of the fixed navbar — .hero specificity beats .container */
  .hero .hero-inner { padding-top: 100px; padding-left: var(--s-4); padding-right: var(--s-4); }
  .hero .orbit { width: 210px; height: 210px; }
  .section-head h2 { font-size: 28px; }
  .problem-num { font-size: 44px; }
  .cta-banner h2 { font-size: 28px; }
  .placeholder-wrap h1 { font-size: 38px; }
  .container { padding: 0 var(--s-4); }
  .btn { width: 100%; justify-content: center; }
  .hero-cta { width: 100%; }
  .nav-brand .wordmark { font-size: 14px; letter-spacing: 0.02em; }
}

/* ============================================================
   ============================================================
   INTERIOR PAGE COMPONENTS  (about · services · blog)
   ============================================================
   ============================================================ */

/* ---------- SUB-HERO ---------- */
.subhero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 var(--s-16);
}
.subhero-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  pointer-events: none;
}
.subhero-orbit .orbit {
  width: 620px;
  height: 620px;
}
.subhero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.subhero h1 {
  font-size: 52px;
  line-height: 1.08;
  margin-bottom: var(--s-6);
}
.subhero p {
  font-size: 18px;
  color: var(--chrome-dim);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- MISSION (two columns) ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}
.mission-left h2 {
  font-size: 38px;
}
.mission-body p {
  font-size: 17px;
  color: var(--chrome-dim);
}
.mission-body p + p {
  margin-top: var(--s-4);
}

/* ---------- NUMBERS BAND (reuses .problem-* tokens) ---------- */
.problem-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- METHODOLOGY (alternating rows) ---------- */
.method-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--s-12);
  align-items: center;
  padding: var(--s-12) 0;
  border-top: 1px solid var(--border-subtle);
}
.method-row:last-child {
  border-bottom: 1px solid var(--border-subtle);
}
.method-row.reverse {
  grid-template-columns: 1fr 260px;
}
.method-row.reverse .method-num {
  order: 2;
  text-align: right;
}
.method-row.reverse .method-content {
  order: 1;
}
.method-num {
  font-family: var(--font-mono);
  font-size: 80px;
  font-weight: 400;
  color: var(--steel-blue);
  line-height: 1;
}
.method-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
}
.method-content p {
  font-size: 16px;
  color: var(--chrome-dim);
  max-width: 560px;
}

/* ---------- FOUNDER STRIP ---------- */
.founder {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.founder h3 {
  font-size: 28px;
  margin-bottom: var(--s-2);
}
.founder .role {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--steel-blue);
  text-transform: uppercase;
}
.founder p {
  max-width: 640px;
  margin: var(--s-6) auto var(--s-8);
  color: var(--chrome-dim);
  font-size: 16px;
}
.founder-links {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- SERVICE DETAIL ---------- */
.service-detail {
  padding: var(--s-24) 0;
  border-top: 1px solid var(--border-subtle);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.service-detail-grid.mirror .sd-info {
  order: 2;
}
.service-detail-grid.mirror .sd-visual {
  order: 1;
}
.sd-info h2 {
  font-size: 32px;
  line-height: 1.15;
  margin: var(--s-4) 0 var(--s-6);
}
.sd-info > p {
  color: var(--chrome-dim);
  font-size: 16px;
  margin-bottom: var(--s-6);
}
.sd-builtfor {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: var(--s-4);
}
.sd-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.sd-list li {
  display: flex;
  gap: var(--s-3);
  font-size: 15px;
  color: var(--chrome);
}
.sd-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 8px;
  flex-shrink: 0;
  background: var(--cyan-glow);
  transform: rotate(45deg);
}
.sd-price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--chrome-dim);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 8px 14px;
  margin-bottom: var(--s-6);
}
.sd-price strong {
  color: var(--chrome);
  font-weight: 500;
  font-size: 18px;
}
.sd-cta {
  display: block;
}
.sd-cta a {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--cyan-glow);
  letter-spacing: 0.04em;
  transition: opacity 200ms ease;
}
.sd-cta a:hover {
  opacity: 0.75;
}

/* ---------- TERMINAL MOCKUP ---------- */
.terminal {
  background: var(--bg-void);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
}
.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--chrome-dim);
  opacity: 0.5;
}
.terminal-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome-dim);
  margin-left: var(--s-2);
}
.terminal-body {
  padding: var(--s-6);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
}
.terminal-body .t-line {
  white-space: pre-wrap;
}
.t-prompt { color: var(--cyan-glow); }
.t-cmd { color: var(--chrome); }
.t-out { color: var(--chrome-dim); }
.t-ok { color: var(--steel-blue); }
.t-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--cyan-glow);
  vertical-align: text-bottom;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ---------- PRICING TIERS ---------- */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  align-items: start;
}
.tier {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-8);
  transition: transform 300ms ease, border-color 300ms ease;
}
.tier:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}
.tier.featured {
  border-color: var(--border-active);
  box-shadow: 0 0 48px rgba(0, 212, 255, 0.14);
}
.tier-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan-glow);
  color: var(--bg-void);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.tier-name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-bottom: var(--s-4);
}
.tier-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--chrome);
  line-height: 1;
}
.tier-setup {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chrome-dim);
  margin-top: var(--s-2);
  margin-bottom: var(--s-6);
}
.tier-features {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--s-6);
  margin-bottom: var(--s-8);
}
.tier-features li {
  display: flex;
  gap: var(--s-3);
  font-size: 14px;
  color: var(--chrome-dim);
  line-height: 1.5;
}
.tier-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  margin-top: 7px;
  flex-shrink: 0;
  background: var(--cyan-glow);
  transform: rotate(45deg);
}
.tier .btn {
  width: 100%;
  justify-content: center;
}
.tiers-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chrome-dim);
  max-width: 640px;
  margin: var(--s-12) auto 0;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  text-align: left;
  padding: var(--s-6) 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--chrome);
  transition: color 200ms ease;
}
.faq-q:hover {
  color: var(--cyan-glow);
}
.faq-item.open .faq-q {
  color: var(--cyan-glow);
}
.faq-icon {
  flex-shrink: 0;
  color: var(--steel-blue);
  transition: transform 250ms ease, color 250ms ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--cyan-glow);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-item.open .faq-a {
  max-height: 260px;
}
.faq-a-inner {
  padding-bottom: var(--s-6);
  font-size: 15px;
  color: var(--chrome-dim);
  max-width: 720px;
}

/* ---------- BLOG: FEATURED POST ---------- */
.featured-post {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-12);
  align-items: center;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-8);
  transition: border-color 300ms ease;
}
.featured-post:hover {
  border-color: var(--border-active);
}
.post-img {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 300ms ease;
}
.post-img:hover img {
  transform: scale(1.03);
}
.featured-post .post-img {
  min-height: 300px;
}
.post-cat {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cyan-glow);
}
.featured-post h2 {
  font-size: 30px;
  line-height: 1.2;
  margin: var(--s-4) 0;
}
.post-excerpt {
  color: var(--chrome-dim);
  font-size: 15px;
  margin-bottom: var(--s-6);
}
.post-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome-dim);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.post-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--steel-blue);
}
.read-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan-glow);
  display: inline-flex;
  gap: var(--s-1);
  transition: gap 200ms ease;
}
.read-link:hover {
  gap: var(--s-2);
}

/* ---------- BLOG: POST GRID ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.post-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 300ms ease, border-color 300ms ease;
}
.post-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
}
.post-card .post-img {
  aspect-ratio: 16 / 9;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 0;
}
.post-card-body {
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex-grow: 1;
}
.post-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
}
.post-card .post-excerpt {
  margin-bottom: 0;
  flex-grow: 1;
}

/* ---------- NEWSLETTER STRIP ---------- */
.newsletter {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}
.newsletter h2 {
  font-size: 34px;
  margin-bottom: var(--s-8);
}
.news-form {
  display: flex;
  gap: var(--s-3);
  max-width: 480px;
  margin: 0 auto;
}
.news-form input {
  flex: 1;
  background: var(--bg-void);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--chrome);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 200ms ease;
}
.news-form input:focus {
  outline: none;
  border-color: var(--border-active);
}
.news-form input::placeholder {
  color: var(--chrome-dim);
}
.news-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome-dim);
  margin-top: var(--s-4);
}

/* ============================================================
   INTERIOR RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .subhero h1 { font-size: 42px; }
  .mission-left h2 { font-size: 32px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .subhero {
    min-height: auto;
    padding: 120px 0 var(--s-12);
  }
  .subhero h1 { font-size: 34px; }
  .subhero-orbit .orbit { width: 400px; height: 400px; }

  .mission-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .mission-left h2 { font-size: 30px; }

  .problem-grid.four { grid-template-columns: 1fr; }

  .method-row,
  .method-row.reverse {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    padding: var(--s-8) 0;
  }
  .method-row.reverse .method-num,
  .method-row.reverse .method-content {
    order: 0;
    text-align: left;
  }
  .method-num { font-size: 56px; }

  .service-detail { padding: var(--s-16) 0; }
  .service-detail-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .service-detail-grid.mirror .sd-info,
  .service-detail-grid.mirror .sd-visual {
    order: 0;
  }
  .sd-info h2 { font-size: 28px; }

  .tiers-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .tier.featured { order: -1; }

  .faq-q { font-size: 16px; }

  .featured-post { grid-template-columns: 1fr; gap: var(--s-6); }
  .featured-post .post-img { min-height: 200px; order: -1; }
  .featured-post h2 { font-size: 24px; }

  .post-grid { grid-template-columns: 1fr; }

  .newsletter h2 { font-size: 28px; }
  .news-form { flex-direction: column; }
  .news-form .btn { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .subhero h1 { font-size: 28px; }
  .method-num { font-size: 48px; }
  .tier-price { font-size: 34px; }
  .founder p { font-size: 15px; }
}

/* ============================================================
   ============================================================
   CONTACT PAGE
   ============================================================
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-12);
  align-items: start;
}

/* ---------- FORM PANEL ---------- */
.contact-form-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-8);
}
.form-field {
  margin-bottom: var(--s-6);
}
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-blue);
  margin-bottom: var(--s-2);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--bg-elevated);
  color: var(--chrome);
  border: none;
  border-bottom: 1px solid var(--chrome-dim);
  border-radius: 0;
  padding: 12px 12px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A8A95' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-field select option {
  background: var(--bg-panel);
  color: var(--chrome);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--chrome-dim);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--cyan-glow);
  box-shadow: 0 2px 12px -6px var(--cyan-glow);
}
.form-field .field-error {
  display: none;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #FF5C6C;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.form-field.error input,
.form-field.error textarea,
.form-field.error select {
  border-bottom-color: #FF5C6C;
}
.form-field.error .field-error {
  display: block;
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome-dim);
  text-align: center;
  margin-top: var(--s-4);
}

/* ---------- FORM SUCCESS STATE ---------- */
.form-success {
  display: none;
  text-align: center;
  padding: var(--s-12) var(--s-4);
}
.contact-form-panel.sent .contact-form {
  display: none;
}
.contact-form-panel.sent .form-success {
  display: block;
}
.success-check {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--s-6);
}
.success-check .sc-circle {
  fill: none;
  stroke: var(--cyan-glow);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: sc-draw 0.6s ease forwards;
}
.success-check .sc-mark {
  fill: none;
  stroke: var(--cyan-glow);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: sc-draw 0.35s 0.5s ease forwards;
}
@keyframes sc-draw {
  to { stroke-dashoffset: 0; }
}
.form-success h3 {
  font-size: 24px;
  margin-bottom: var(--s-3);
}
.form-success p {
  color: var(--chrome-dim);
  max-width: 360px;
  margin: 0 auto var(--s-6);
}

/* ---------- DIRECT CHANNELS ---------- */
.channels-head {
  margin-bottom: var(--s-6);
}
.channels {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.channel-card {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-6);
  transition: transform 300ms ease, border-color 300ms ease;
}
.channel-card:hover {
  border-color: var(--border-active);
  transform: scale(1.02);
}
.channel-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--cyan-glow);
}
.channel-icon svg {
  width: 20px;
  height: 20px;
}
.channel-body {
  flex: 1;
}
.channel-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 4px;
}
.channel-body .val {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--chrome);
  margin-bottom: 2px;
}
.channel-body .sub {
  font-size: 13px;
  color: var(--chrome-dim);
}
.channel-body .btn {
  margin-top: var(--s-3);
  padding: 8px 16px;
  font-size: 13px;
}
.channel-card .channel-icon.address-pin {
  color: var(--steel-blue);
}
.channel-coords {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome-dim);
  margin-top: 2px;
}

/* ---------- FAQ SHORTCUT ---------- */
.faq-shortcut {
  text-align: center;
}
.faq-shortcut p {
  color: var(--chrome-dim);
  margin-bottom: var(--s-4);
}
.faq-shortcut .read-link {
  font-size: 14px;
}

/* ============================================================
   CONTACT RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .contact-form-panel { padding: var(--s-6); }
}

/* ============================================================
   ============================================================
   GEO / SEO / BLOG / A11Y ADDITIONS  (v1.2)
   ============================================================
   ============================================================ */

/* ---------- ACCESSIBILITY: skip link + focus ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--cyan-glow);
  color: var(--bg-void);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius);
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.faq-q:focus-visible {
  outline: 2px solid var(--cyan-glow);
  outline-offset: 3px;
}

/* ---------- QUOTABLE DATA CALLOUT (GEO) ---------- */
.data-band {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-panel);
  padding: var(--s-12) 0;
}
.data-callout {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.85;
  color: var(--chrome);
  border-left: 2px solid var(--cyan-glow);
  padding-left: var(--s-6);
  max-width: 880px;
}
.data-callout strong {
  color: var(--white);
  font-weight: 500;
}

/* ---------- KEY FACTS / SPEC SHEET (GEO) ---------- */
.glance-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-16);
  align-items: center;
}
.glance-intro h2 {
  font-size: 38px;
}
.glance-intro p {
  color: var(--chrome-dim);
  font-size: 17px;
  margin-top: var(--s-4);
}
.spec-sheet {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-8);
  position: relative;
}
.spec-sheet::before {
  content: 'SYS // ORBIT-INTEL';
  position: absolute;
  top: -10px;
  left: var(--s-6);
  background: var(--bg-panel);
  padding: 0 var(--s-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--steel-blue);
}
.spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: var(--s-6);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--border-subtle);
  align-items: baseline;
}
.spec-row:first-child {
  border-top: none;
}
.spec-key {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-blue);
}
.spec-val {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--chrome);
  line-height: 1.5;
}

/* ---------- 4-UP PACKAGE TIERS ---------- */
.tiers-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.tier-price .per {
  font-size: 15px;
  color: var(--chrome-dim);
  font-family: var(--font-body);
  font-weight: 400;
}
.tier-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome-dim);
  margin-top: var(--s-2);
  margin-bottom: var(--s-6);
  min-height: 18px;
}

/* ---------- ARTICLE / BLOG POST ---------- */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 1500;
}
.read-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--cyan-glow);
  box-shadow: 0 0 8px var(--cyan-glow);
}
.article-hero {
  position: relative;
  padding: 140px 0 var(--s-12);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.article-hero .subhero-orbit {
  opacity: 0.08;
}
.article-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--chrome-dim);
  margin-bottom: var(--s-6);
}
.breadcrumb a:hover {
  color: var(--cyan-glow);
}
.breadcrumb .sep {
  color: var(--steel-blue);
  padding: 0 var(--s-2);
}
.article-hero h1 {
  font-size: 44px;
  line-height: 1.12;
  margin-bottom: var(--s-6);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chrome-dim);
}
.article-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--steel-blue);
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--s-16) 0 var(--s-12);
}
.article-figure {
  margin-bottom: var(--s-12);
}
.article-body > p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--chrome);
  margin-bottom: var(--s-6);
}
.article-body .lead {
  font-size: 19px;
  color: var(--chrome);
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: var(--s-12) 0 var(--s-4);
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: var(--s-8) 0 var(--s-3);
}
.article-body ul,
.article-body ol {
  margin: 0 0 var(--s-6) 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.article-body li {
  position: relative;
  padding-left: var(--s-6);
  color: var(--chrome);
  font-size: 16px;
  line-height: 1.6;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--cyan-glow);
  transform: rotate(45deg);
}
.article-body ol {
  counter-reset: oli;
}
.article-body ol li::before {
  counter-increment: oli;
  content: counter(oli, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--steel-blue);
}
.article-body a {
  color: var(--cyan-glow);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-active);
  transition: text-decoration-color 200ms ease;
}
.article-body a:hover {
  text-decoration-color: var(--cyan-glow);
}
.article-body strong {
  color: var(--white);
  font-weight: 600;
}
.pull-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--chrome);
  border-left: 3px solid var(--cyan-glow);
  padding: var(--s-2) 0 var(--s-2) var(--s-6);
  margin: var(--s-12) 0;
}

/* ---------- COMPARISON TABLE ---------- */
.table-scroll {
  overflow-x: auto;
  margin: var(--s-8) 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}
.cmp-table th,
.cmp-table td {
  border-bottom: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
  padding: var(--s-3) var(--s-4);
  text-align: left;
  vertical-align: top;
}
.cmp-table th:last-child,
.cmp-table td:last-child {
  border-right: none;
}
.cmp-table tr:last-child td {
  border-bottom: none;
}
.cmp-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--steel-blue);
  background: var(--bg-panel);
}
.cmp-table td {
  color: var(--chrome-dim);
}
.cmp-table tbody td:first-child {
  color: var(--chrome);
  font-weight: 500;
}

/* ---------- AUTHOR BIO + POST NAV ---------- */
.author-strip {
  display: flex;
  gap: var(--s-6);
  align-items: center;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-6);
  margin-top: var(--s-12);
}
.author-avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--steel-blue);
}
.author-strip h4 {
  font-size: 16px;
  margin-bottom: 2px;
}
.author-strip p {
  font-size: 14px;
  color: var(--chrome-dim);
}
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-top: var(--s-12);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--s-8);
}
.post-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chrome);
  transition: color 200ms ease;
}
.post-nav a:hover {
  color: var(--cyan-glow);
}
.post-nav .pn-label {
  display: block;
  color: var(--steel-blue);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

/* ---------- BLOG CATEGORY FILTER ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
  margin-bottom: var(--s-12);
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: transparent;
  color: var(--chrome-dim);
  cursor: pointer;
  transition: all 200ms ease;
}
.filter-btn:hover {
  border-color: var(--border-active);
  color: var(--chrome);
}
.filter-btn.active {
  background: var(--cyan-glow);
  border-color: var(--cyan-glow);
  color: var(--bg-void);
}
.post-card.is-hidden {
  display: none;
}

/* ---------- 404 ---------- */
.error-code {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.3em;
  color: var(--cyan-glow);
  margin-bottom: var(--s-4);
}
.placeholder-wrap .glitch {
  font-size: 72px;
  letter-spacing: 0.05em;
}

/* ============================================================
   v1.2 RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tiers-grid.four { grid-template-columns: repeat(2, 1fr); }
  .glance-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .article-hero h1 { font-size: 36px; }
}
@media (max-width: 768px) {
  .tiers-grid.four { grid-template-columns: 1fr; }
  .glance-intro h2 { font-size: 30px; }
  .spec-row { grid-template-columns: 1fr; gap: 2px; padding: var(--s-3) 0; }
  .data-callout { font-size: 15px; padding-left: var(--s-4); }
  .article-hero { padding: 120px 0 var(--s-8); }
  .article-hero h1 { font-size: 30px; }
  .pull-quote { font-size: 22px; }
  .author-strip { flex-direction: column; text-align: center; }
  .post-nav { flex-direction: column; }
}
@media (max-width: 420px) {
  .article-hero h1 { font-size: 26px; }
  .placeholder-wrap .glitch { font-size: 52px; }
}

/* ============================================================
   ============================================================
   v1.3 — EXPLORE · PRICING · SALE · 4th SERVICE
   ============================================================
   ============================================================ */

/* ---------- LOGO MARK polish (cropped square on dark) ---------- */
.nav-brand img {
  border-radius: var(--radius);
  object-fit: cover;
}

/* ---------- HOMEPAGE SERVICES: 4-up ---------- */
.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- SALE BANNER ---------- */
.sale-banner {
  border-top: 1px solid var(--border-active);
  border-bottom: 1px solid var(--border-active);
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.06), rgba(74, 111, 165, 0.04));
  padding: var(--s-4) 0;
}
.sale-banner .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-3) var(--s-6);
  text-align: center;
}
.sale-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cyan-glow);
  color: var(--bg-void);
  padding: 5px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.sale-banner .sale-text {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--chrome);
}
.sale-banner .live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-glow);
  box-shadow: 0 0 8px var(--cyan-glow);
  margin-right: 6px;
  animation: blink 1.4s steps(1) infinite;
}

/* ---------- SALE PRICING (strikethrough + off badge) ---------- */
.price-was {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--chrome-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 92, 108, 0.7);
  margin-right: var(--s-2);
}
.price-off {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  background: var(--cyan-glow);
  color: var(--bg-void);
  padding: 3px 8px;
  border-radius: var(--radius);
  margin-left: var(--s-3);
}
.demo-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--cyan-glow);
  border: 1px solid var(--border-active);
  border-radius: var(--radius);
  padding: 6px 12px;
}

/* ---------- EXPLORE: EMPLOYEE CARDS ---------- */
.emp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  align-items: stretch;
}
.emp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-8);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  overflow: hidden;
}
.emp-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-glow), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}
.emp-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45);
}
.emp-card:hover::before {
  opacity: 1;
}
.emp-card.featured {
  border-color: var(--border-active);
  box-shadow: 0 0 48px rgba(0, 212, 255, 0.12);
}
.emp-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.emp-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--cyan-glow);
}
.emp-icon svg { width: 22px; height: 22px; }
.emp-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-blue);
}
.emp-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: var(--s-3);
}
.emp-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--s-1);
  margin-bottom: 4px;
}
.emp-price .now {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  color: var(--chrome);
}
.emp-price .unit {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chrome-dim);
}
.emp-support {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome-dim);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--border-subtle);
}
.emp-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
  flex-grow: 1;
}
.emp-list li {
  display: flex;
  gap: var(--s-3);
  font-size: 14px;
  color: var(--chrome);
  line-height: 1.5;
}
.emp-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 7px;
  flex-shrink: 0;
  background: var(--cyan-glow);
  transform: rotate(45deg);
}
.emp-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.emp-actions .demo-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan-glow);
  text-align: center;
  transition: opacity 200ms ease;
}
.emp-actions .demo-link:hover { opacity: 0.75; }

/* ---------- v1.3 RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .emp-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FLOATING CHAT ASSISTANT (injected on every page)
   ============================================================ */
.chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 980;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cyan-glow);
  color: var(--bg-void);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(0, 212, 255, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.chat-launcher:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 40px rgba(0, 212, 255, 0.5);
}
.chat-launcher svg { width: 26px; height: 26px; }
.chat-launcher .ico-close { display: none; }
.chat-launcher.open .ico-open { display: none; }
.chat-launcher.open .ico-close { display: block; }
.chat-launcher .notif {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--steel-blue);
  border: 2px solid var(--bg-void);
}
.chat-launcher.open .notif { display: none; }

.whatsapp-launcher {
  position: fixed;
  right: 24px;
  bottom: 94px;
  z-index: 980;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.3);
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}
.whatsapp-launcher:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
}
.whatsapp-launcher svg {
  width: 28px;
  height: 28px;
}

.meet-launcher {
  position: fixed;
  right: 24px;
  bottom: 164px;
  z-index: 980;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006BFF 0%, #004ecc 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(0, 107, 255, 0.3);
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}
.meet-launcher:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 40px rgba(0, 107, 255, 0.4);
}
.meet-launcher svg {
  width: 24px;
  height: 24px;
}

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 94px;
  z-index: 981;
  width: 372px;
  max-width: calc(100vw - 32px);
  height: 540px;
  max-height: calc(100vh - 132px);
  background: var(--bg-panel);
  border: 1px solid var(--border-active);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.chat-panel.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.chat-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
}
.chat-head .ai-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-glow);
  box-shadow: 0 0 8px var(--cyan-glow);
  flex-shrink: 0;
}
.chat-head .col { display: flex; flex-direction: column; gap: 1px; }
.chat-head .ttl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome);
}
.chat-head .sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--chrome-dim);
}
.chat-head .x {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--chrome-dim);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 4px;
}
.chat-head .x:hover { color: var(--cyan-glow); }
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.chat-msg {
  max-width: 86%;
  font-size: 14px;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 12px;
}
.chat-msg.bot {
  align-self: flex-start;
  background: var(--bg-elevated);
  color: var(--chrome);
  border: 1px solid var(--border-subtle);
  border-bottom-left-radius: 2px;
}
.chat-msg.user {
  align-self: flex-end;
  background: var(--cyan-glow);
  color: var(--bg-void);
  font-weight: 500;
  border-bottom-right-radius: 2px;
}
.chat-msg b { color: var(--white); font-weight: 600; }
.chat-msg.user b { color: var(--bg-void); }
.chat-msg a { color: var(--cyan-glow); text-decoration: underline; }
.chat-msg .msg-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: var(--s-3);
}
.chat-act {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  padding: 9px 12px;
  border: 1px solid var(--border-active);
  border-radius: 6px;
  color: var(--cyan-glow);
  text-decoration: none !important;
  transition: all 180ms ease;
}
.chat-act:hover { background: var(--cyan-glow); color: var(--bg-void); }
.chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 13px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  border-bottom-left-radius: 2px;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--chrome-dim);
  animation: chatdot 1s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatdot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 var(--s-5) var(--s-3);
}
.chat-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan-glow);
  background: transparent;
  border: 1px solid var(--border-active);
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
  transition: all 180ms ease;
}
.chat-chip:hover { background: var(--cyan-glow); color: var(--bg-void); }
.chat-input {
  display: flex;
  gap: 8px;
  padding: var(--s-3) var(--s-4);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
}
.chat-input input {
  flex: 1;
  background: var(--bg-void);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--chrome);
  font-family: var(--font-body);
  font-size: 14px;
}
.chat-input input:focus { outline: none; border-color: var(--border-active); }
.chat-input input::placeholder { color: var(--chrome-dim); }
.chat-input button {
  background: var(--cyan-glow);
  color: var(--bg-void);
  border: none;
  border-radius: 6px;
  width: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.chat-input button svg { width: 18px; height: 18px; }
.chat-foot {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--chrome-dim);
  padding: 6px;
  background: var(--bg-elevated);
}
@media (max-width: 480px) {
  .chat-launcher { right: 14px; bottom: 14px; width: 44px; height: 44px; }
  .chat-launcher svg { width: 20px; height: 20px; }
  .chat-launcher .notif { width: 11px; height: 11px; }

  .whatsapp-launcher { right: 14px; bottom: 66px; width: 44px; height: 44px; }
  .whatsapp-launcher svg { width: 22px; height: 22px; }

  .meet-launcher { right: 14px; bottom: 118px; width: 44px; height: 44px; }
  .meet-launcher svg { width: 19px; height: 19px; }

  .chat-panel {
    right: 14px;
    left: 14px;
    width: auto;
    bottom: 66px;
    height: auto;
    max-height: calc(100dvh - 90px);
  }
  .chat-head { padding: var(--s-3) var(--s-4); }
  .chat-body { padding: var(--s-4); gap: var(--s-2); }
  .chat-msg { font-size: 13.5px; }
}

/* ============================================================
   ============================================================
   v2.0 — AI CONSULTING REPOSITIONING
   Ticker · Leak Finder · Savings Counter · Audit CTAs
   ============================================================
   ============================================================ */

/* ---------- NAVBAR: AUDIT CTA GROUP ---------- */
.audit-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.limited-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--border-active);
  color: var(--cyan-glow);
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
  animation: pill-pulse 2.6s ease-in-out infinite;
}
@keyframes pill-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 8px rgba(0, 212, 255, 0.3); }
}

/* update mobile panel footer signature */
.mobile-panel::after {
  content: "AI CONSULTING · NAGPUR, INDIA · FREE AUDIT";
}

/* ---------- TICKER STRIP (ELEMENT 3) ---------- */
.ticker-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-panel);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-track {
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ticker-inner {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 48s linear infinite;
  will-change: transform;
}
.ticker-track:hover .ticker-inner {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--chrome-dim);
  white-space: nowrap;
  padding: 0 var(--s-6);
  flex-shrink: 0;
  transition: color 200ms ease;
}
.ticker-track:hover .ticker-item {
  color: var(--chrome);
}
.ticker-sep {
  color: var(--cyan-glow);
  font-size: 14px;
  flex-shrink: 0;
  opacity: 0.5;
  line-height: 1;
}

/* ---------- LEAK FINDER (ELEMENT 1) ---------- */
.leak-finder {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.leak-finder .section-head {
  max-width: 780px;
}
.leak-finder .section-head h2 {
  font-size: 38px;
}
.br-desktop { display: inline; }

.leak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}
.leak-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-6) var(--s-6) var(--s-6) var(--s-6);
  cursor: pointer;
  text-align: left;
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease, background 250ms ease;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  outline: none;
}
.leak-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.leak-card:focus-visible {
  outline: 2px solid var(--cyan-glow);
  outline-offset: 3px;
}
.leak-card.selected {
  border-color: var(--cyan-glow);
  background: rgba(0, 212, 255, 0.06);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.14), 0 0 0 1px var(--border-active);
  transform: translateY(-3px);
}

/* check circle */
.leak-check {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(192, 192, 204, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 250ms ease, border-color 250ms ease;
  flex-shrink: 0;
}
.leak-check svg {
  width: 11px;
  height: 11px;
  stroke: transparent;
  transition: stroke 250ms ease;
}
.leak-card.selected .leak-check {
  background: var(--cyan-glow);
  border-color: var(--cyan-glow);
}
.leak-card.selected .leak-check svg {
  stroke: var(--bg-void);
}

/* icon */
.leak-icon {
  color: var(--steel-blue);
  transition: color 250ms ease;
  display: flex;
  align-items: center;
}
.leak-icon svg {
  width: 22px;
  height: 22px;
}
.leak-card.selected .leak-icon {
  color: var(--cyan-glow);
}

/* label */
.leak-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--chrome);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

/* result area */
.leak-result {
  text-align: center;
  padding-top: var(--s-8);
}
.leak-counter-wrap {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--chrome-dim);
  margin-bottom: var(--s-6);
  min-height: 22px;
  letter-spacing: 0.03em;
}
.leak-counter-wrap strong {
  color: var(--chrome);
}
.leak-zero-state {
  color: var(--chrome-dim);
}
.leak-active-state {
  color: var(--chrome-dim);
}
.leak-hours {
  color: var(--cyan-glow) !important;
  font-size: 16px;
}
.leak-cta-wrap {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 380ms ease, transform 380ms ease;
  pointer-events: none;
}
.leak-cta-wrap.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ---------- PROCESS: 3-STEP VARIANT ---------- */
.steps-grid.steps-3 {
  grid-template-columns: repeat(3, 1fr);
}
.process-cta {
  text-align: center;
  margin-top: var(--s-16);
}

/* ---------- OUTCOME CARDS (What We Do — 3-col) ---------- */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

/* ---------- SAVINGS COUNTER: animate the numbers ---------- */
[data-count-to] {
  display: block;
}

/* ---------- v2.0 RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .leak-finder .section-head h2 { font-size: 30px; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid.steps-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .leak-grid { grid-template-columns: repeat(2, 1fr); }
  .leak-finder .section-head h2 { font-size: 24px; }
  .br-desktop { display: none; }
  .steps-grid.steps-3 { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .audit-cta-group {
    flex-direction: row;
    align-items: center;
    gap: var(--s-2);
  }
  .limited-pill { font-size: 8px; }
}
@media (max-width: 420px) {
  .leak-grid { grid-template-columns: 1fr; }
  .leak-finder .section-head h2 { font-size: 22px; }
}

/* ============================================================
   ============================================================
   v2.0 — SERVICES & ABOUT REPOSITIONING
   ============================================================
   ============================================================ */

/* ---------- SHARED UTILITIES ---------- */
.section-sub {
  color: var(--chrome-dim);
  font-size: 16px;
  max-width: 640px;
  margin: var(--s-4) auto 0;
}

/* ---------- AUDIT HERO PANEL ---------- */
.audit-hero-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-active);
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.07);
  overflow: hidden;
  position: relative;
}
.audit-hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-glow), transparent);
  opacity: 0.8;
}
.audit-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  padding: var(--s-12);
  align-items: center;
}
.audit-panel-header {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}
.audit-panel-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--cyan-glow);
  color: var(--bg-void);
  padding: 4px 12px;
  border-radius: var(--radius);
  font-weight: 600;
}
.audit-panel-info h2 {
  font-size: 40px;
  margin-bottom: var(--s-8);
}
.audit-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.audit-includes li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 15px;
  color: var(--chrome);
  line-height: 1.55;
}
.audit-includes li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 8px;
  flex-shrink: 0;
  background: var(--cyan-glow);
  transform: rotate(45deg);
}
.audit-pricing-line {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}
.audit-price-was {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--chrome-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 92, 108, 0.6);
}
.audit-price-free {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan-glow);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--border-active);
  padding: 3px 10px;
  border-radius: var(--radius);
}
.audit-scarcity {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome-dim);
  margin-top: var(--s-4);
  letter-spacing: 0.02em;
}

/* ---------- BEFORE/AFTER SLIDER ---------- */
.ba-section {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.ba-slider {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  border: 1px solid rgba(0, 212, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(0, 212, 255, 0.02);
  max-width: 900px;
  margin: 0 auto var(--s-4);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}
.ba-slider:hover {
  border-color: var(--border-active);
  box-shadow: 0 20px 48px rgba(0, 212, 255, 0.08), 0 20px 40px rgba(0, 0, 0, 0.5);
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  padding: var(--s-8) var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.ba-before {
  background-color: var(--bg-void);
  background-image: 
    linear-gradient(rgba(255, 92, 108, 0.03) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255, 92, 108, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.ba-after {
  background-color: #0d0d14;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  clip-path: inset(0 50% 0 0);
}
.ba-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius);
  display: inline-block;
  width: fit-content;
  flex-shrink: 0;
}
.ba-badge-before {
  background: rgba(255, 92, 108, 0.12);
  border: 1px solid rgba(255, 92, 108, 0.3);
  color: #FF8A8A;
  box-shadow: 0 0 15px rgba(255, 92, 108, 0.15);
}
.ba-badge-after {
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid var(--border-active);
  color: var(--cyan-glow);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}
.ba-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  flex-grow: 1;
  align-content: center;
}
.ba-list li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  padding: var(--s-3) var(--s-4);
  background: rgba(26, 26, 36, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  height: 54px; /* match heights exactly for clean slide transition */
}
.ba-before .ba-list li { 
  color: var(--chrome-dim); 
  border-left: 3px solid rgba(255, 92, 108, 0.4);
}
.ba-after .ba-list li { 
  color: var(--chrome); 
  border-left: 3px solid var(--cyan-glow);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.03);
}
.ba-x,
.ba-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
}
.ba-x {
  background: rgba(255, 92, 108, 0.15);
  color: #FF8A8A;
  border: 1px solid rgba(255, 92, 108, 0.3);
}
.ba-x::after { content: '✕'; }
.ba-check {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan-glow);
  border: 1px solid var(--border-active);
}
.ba-check::after { content: '✓'; }
.ba-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--chrome-dim);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: auto;
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  transition: left 100ms ease-out;
}
.ba-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--cyan-glow) 50%, transparent);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.8), 0 0 30px var(--cyan-glow);
}
.ba-knob {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-void);
  border: 2px solid var(--cyan-glow);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-glow);
  transition: transform 200ms ease, border-color 200ms ease;
  animation: knobBreathing 2.5s infinite;
}
@keyframes knobBreathing {
  0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4), 0 0 16px rgba(0, 212, 255, 0.35); }
  70% { box-shadow: 0 0 0 8px rgba(0, 212, 255, 0), 0 0 16px rgba(0, 212, 255, 0.35); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0), 0 0 16px rgba(0, 212, 255, 0.35); }
}
.ba-slider:hover .ba-knob {
  transform: scale(1.1);
  border-color: #ffffff;
}
.ba-knob svg { width: 18px; height: 18px; }
.ba-hint {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--chrome-dim);
  margin-bottom: var(--s-8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.ba-cta { text-align: center; }

/* ---------- AUTOMATE CARDS ---------- */
.automate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-10);
}
.automate-card {
  display: flex;
  flex-direction: column;
}
.automate-stats {
  margin-top: auto;
  padding-top: var(--s-6);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.automate-stat {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--s-3);
  align-items: baseline;
}
.automate-stat dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-blue);
}
.automate-stat dd {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--chrome-dim);
  line-height: 1.45;
}
.automate-stat-highlight dd {
  color: var(--cyan-glow);
  font-family: var(--font-mono);
}
.automate-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}
.automate-cta p {
  color: var(--chrome-dim);
  font-size: 15px;
  max-width: 520px;
}

/* ---------- COMPACT AI EMPLOYEE CARDS ---------- */
.emp-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-8);
}
.emp-compact-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: border-color 250ms ease, transform 250ms ease;
}
.emp-compact-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
}
.emp-compact-featured {
  border-color: var(--border-active);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
}
.emp-compact-head {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}
.emp-compact-head .service-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}
.emp-compact-head .emp-tag {
  display: block;
  margin-bottom: var(--s-1);
}
.emp-compact-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.emp-compact-card > p {
  font-size: 14px;
  color: var(--chrome-dim);
  line-height: 1.55;
}
.emp-compact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex-grow: 1;
}
.emp-compact-list li {
  display: flex;
  gap: var(--s-2);
  font-size: 13px;
  color: var(--chrome-dim);
  line-height: 1.4;
}
.emp-compact-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  margin-top: 6px;
  flex-shrink: 0;
  background: var(--steel-blue);
  transform: rotate(45deg);
}
.emp-compact-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border-subtle);
}
.emp-compact-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--chrome-dim);
}
.emp-compact-price strong {
  color: var(--chrome);
  font-weight: 500;
}

/* ---------- TIER ADDITIONS ---------- */
.tier-from {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  margin-bottom: var(--s-1);
}
.tier-sub {
  font-size: 14px;
  color: var(--chrome-dim);
  line-height: 1.5;
  margin-top: var(--s-3);
}

/* ---------- v2.0 SERVICES RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .audit-panel-inner { grid-template-columns: 1fr; gap: var(--s-8); }
  .audit-panel-visual { display: none; }
  .audit-panel-info h2 { font-size: 32px; }
  .emp-compact-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .ba-slider { height: 460px; touch-action: none; }
  .ba-before, .ba-after { padding: var(--s-6); }
  .automate-grid { grid-template-columns: 1fr; }
  .audit-panel-info h2 { font-size: 28px; }
}
@media (max-width: 420px) {
  .ba-slider { height: 500px; }
  .ba-list li { font-size: 12px; }
}

/* ============================================================
   ============================================================
   v2.1 — AUDIT FUNNEL · ANNOUNCE BAR · SCROLL CARD
   ============================================================
   ============================================================ */

.container-narrow {
  max-width: 820px;
}

/* ---------- ANNOUNCEMENT BAR (all pages, above navbar) ---------- */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  z-index: 1100;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.16), rgba(74, 111, 165, 0.12));
  border-bottom: 1px solid var(--border-active);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.announce-bar.in { transform: none; }
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  position: relative;
}
.announce-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--chrome);
  white-space: nowrap;
  transition: color 200ms ease;
}
.announce-link:hover { color: var(--cyan-glow); }
.announce-link strong { color: var(--cyan-glow); font-weight: 600; }
.announce-icon { font-size: 13px; line-height: 1; }
.announce-short { display: none; }
.announce-cta {
  color: var(--cyan-glow);
  font-weight: 600;
}
.announce-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--chrome-dim);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 200ms ease;
}
.announce-close:hover { color: var(--chrome); }

/* push the fixed navbar (and page) down when the bar is present */
body.has-announce { padding-top: 38px; }
body.has-announce .navbar { top: 38px; }

@media (max-width: 600px) {
  .announce-full { display: none; }
  .announce-short { display: inline; }
  .announce-link { font-size: 11px; gap: 6px; }
  .announce-cta { display: none; }
  .announce-inner { justify-content: flex-start; padding-right: 34px; }
}

/* ---------- SCROLL-DEPTH CORNER CARD (homepage, desktop) ---------- */
.scroll-card {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 970;
  width: 280px;
  max-width: calc(100vw - 48px);
  background: var(--bg-panel);
  border: 1px solid var(--border-active);
  border-radius: var(--radius);
  padding: var(--s-6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.08);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 360ms ease, transform 360ms ease;
}
.scroll-card.in {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scroll-card .sc-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-glow);
  display: block;
  margin-bottom: var(--s-2);
}
.scroll-card p {
  font-size: 14px;
  color: var(--chrome);
  line-height: 1.5;
  margin-bottom: var(--s-4);
}
.scroll-card .btn { width: 100%; justify-content: center; }
.scroll-card-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--chrome-dim);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 200ms ease;
}
.scroll-card-close:hover { color: var(--chrome); }
@media (max-width: 980px) { .scroll-card { display: none; } }

/* ---------- LIMITED PILL — large hero variant ---------- */
.limited-pill.lg {
  font-size: 11px;
  padding: 5px 14px;
  margin-bottom: var(--s-5);
  display: inline-block;
}

/* ---------- AUDIT INTAKE WIZARD ---------- */
.audit-wizard {
  background: var(--bg-panel);
  border: 1px solid var(--border-active);
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.07);
  padding: var(--s-10);
  position: relative;
  overflow: hidden;
}
.audit-wizard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-glow), transparent);
}
.aw-progress {
  height: 4px;
  background: var(--bg-void);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: var(--s-5);
}
.aw-progress span {
  display: block;
  height: 100%;
  background: var(--cyan-glow);
  box-shadow: 0 0 10px var(--cyan-glow);
  transition: width 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.aw-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}
.aw-step-count {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-blue);
}
.aw-step-count strong { color: var(--cyan-glow); }
.aw-step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--chrome);
}
.aw-step { display: none; }
.aw-step.is-active {
  display: block;
  animation: aw-in 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes aw-in {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: none; }
}
.aw-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
}
.aw-q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--chrome);
  margin-bottom: var(--s-6);
}
.aw-q span {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--chrome-dim);
  margin-top: var(--s-1);
}
.aw-step .leak-grid { margin-bottom: var(--s-4); }
.aw-step .leak-result { padding-top: var(--s-2); }
.aw-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-top: var(--s-8);
}
.aw-actions-end { justify-content: flex-end; }
.aw-success {
  text-align: center;
  padding: var(--s-8) var(--s-4) var(--s-4);
}
.aw-success h2 { font-size: 26px; margin-bottom: var(--s-3); }
.aw-success p {
  color: var(--chrome-dim);
  max-width: 420px;
  margin: 0 auto var(--s-8);
}

/* ---------- AUDIT DELIVERABLES GRID ---------- */
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.deliver-grid .service-card p { margin-bottom: 0; }

/* ---------- WHY FREE / SLOT READOUT ---------- */
.why-free {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.why-free-text h2 { font-size: 30px; margin: var(--s-3) 0 var(--s-4); }
.why-free-text p { color: var(--chrome-dim); font-size: 15px; line-height: 1.7; }
.slot-readout {
  background: var(--bg-void);
  border: 1px solid var(--border-active);
  border-radius: var(--radius);
  padding: var(--s-8);
  text-align: center;
  box-shadow: inset 0 0 30px rgba(0, 212, 255, 0.05);
}
.slot-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  margin-bottom: var(--s-3);
}
.slot-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: var(--cyan-glow);
  text-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
}
.slot-foot {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--chrome-dim);
  margin-top: var(--s-3);
}

/* ---------- v2.1 RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .deliver-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .audit-wizard { padding: var(--s-6); }
  .aw-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .aw-meta { flex-direction: column; align-items: flex-start; gap: var(--s-1); }
  .why-free { grid-template-columns: 1fr; gap: var(--s-8); }
  .slot-number { font-size: 60px; }
}
@media (max-width: 520px) {
  .deliver-grid { grid-template-columns: 1fr; }
  .aw-actions { flex-direction: column-reverse; }
  .aw-actions .btn { width: 100%; justify-content: center; }
  .aw-actions-end { flex-direction: column; }
}

/* ---------- CONTACT PAGE: AUDIT CALLOUT ---------- */
.contact-audit-callout {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid var(--border-active);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-5);
  margin-bottom: var(--s-6);
  transition: background 200ms ease, transform 200ms ease;
}
.contact-audit-callout:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}
.cac-badge {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  background: var(--cyan-glow);
  color: var(--bg-void);
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
.cac-text {
  flex: 1;
  font-size: 13.5px;
  color: var(--chrome-dim);
  line-height: 1.45;
}
.cac-text strong { color: var(--chrome); font-weight: 600; }
.cac-arrow {
  flex-shrink: 0;
  color: var(--cyan-glow);
  font-size: 18px;
  transition: transform 200ms ease;
}
.contact-audit-callout:hover .cac-arrow { transform: translateX(4px); }
.contact-or {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  margin-bottom: var(--s-6);
}

/* ---------- COMPARISON TABLE ---------- */
.comparison-section {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-void);
  padding-bottom: var(--s-16);
}
.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}
.comparison-table th,
.comparison-table td {
  padding: var(--s-4) var(--s-6);
  font-size: 14px;
  border-bottom: 1px solid var(--border-subtle);
}
.comparison-table th {
  font-family: var(--font-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--chrome);
  background: rgba(26, 26, 36, 0.8);
  font-size: 13px;
  position: relative;
}
.comparison-table th .col-price {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cyan-glow);
  text-transform: none;
  letter-spacing: normal;
  margin-top: var(--s-1);
}
.comparison-table .feature-col {
  width: 25%;
}
.comparison-table .feature-name {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--chrome);
}
.comparison-table tbody tr {
  transition: background 150ms ease;
}
.comparison-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.comparison-table td {
  color: var(--chrome-dim);
}
.comparison-table .featured-col-header {
  background: rgba(0, 212, 255, 0.05) !important;
  border-bottom: 2px solid var(--cyan-glow);
}
.comparison-table .featured-col-cell {
  background: rgba(0, 212, 255, 0.02);
  color: var(--chrome);
}
.comparison-table .pop-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cyan-glow);
  color: var(--bg-void);
  padding: 2px 8px;
  border-radius: var(--radius);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}
.comp-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan-glow);
  border: 1px solid var(--border-active);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}
.comp-check::after {
  content: '✓';
}

/* ============================================================
   v2.2 — INDUSTRY VERTICAL · SPECIALTY CLINICS & HOSPITALS
   ============================================================ */

/* ---------- VERTICAL SWITCHER ---------- */
.vertical-nav {
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-void);
}
.vn-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  padding-top: var(--s-4);
  padding-bottom: var(--s-4);
}
.vn-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-blue);
  margin-right: var(--s-2);
}
.vn-pill {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  color: var(--chrome);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 8px 16px;
  transition: border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
.vn-pill:hover {
  border-color: var(--border-active);
  color: var(--cyan-glow);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}

#ai-employees,
#clinics-hospitals {
  scroll-margin-top: 88px;
}

/* ---------- SECTION HEADER ---------- */
.clinic-vertical {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-void);
  overflow: hidden;
}
.clinic-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
  margin-top: var(--s-4);
}
.cyan-word {
  color: var(--cyan-glow);
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.35);
}

/* ---------- ORBITAL DIAGRAM ---------- */
.clinic-orbit {
  margin-bottom: var(--s-16);
}
.co-stage {
  position: relative;
  max-width: 900px;
  height: 560px;
  margin: 0 auto;
}
.co-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.co-rings ellipse {
  fill: none;
  stroke: rgba(192, 192, 204, 0.12);
  stroke-width: 1;
}
.co-rings ellipse:nth-child(2) { stroke: rgba(74, 111, 165, 0.18); }
.co-rings ellipse:nth-child(3) { stroke: rgba(192, 192, 204, 0.08); }
.co-rot {
  transform-origin: 400px 260px;
  animation: coSpin 80s linear infinite;
}
@keyframes coSpin {
  to { transform: rotate(360deg); }
}

.co-star {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--chrome);
  opacity: 0.15;
  animation: coTwinkle 3.2s ease-in-out infinite;
}
@keyframes coTwinkle {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.45; }
}

.co-center,
.co-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-3);
  width: 180px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 500ms ease, transform 500ms ease;
}
.clinic-orbit.visible .co-center,
.clinic-orbit.visible .co-node {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.co-center       { left: 50%; top: 50%; }
.co-n1           { left: 22%; top: 12%; transition-delay: 100ms; }
.co-n2           { left: 78%; top: 12%; transition-delay: 200ms; }
.co-n3           { left: 7%;  top: 54%; transition-delay: 300ms; }
.co-n4           { left: 93%; top: 54%; transition-delay: 400ms; }
.co-n5           { left: 28%; top: 88%; transition-delay: 500ms; }

.co-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid var(--border-active);
  color: var(--cyan-glow);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2), inset 0 0 12px rgba(0, 212, 255, 0.08);
}
.co-icon svg {
  width: 24px;
  height: 24px;
}
.co-icon-lg {
  width: 84px;
  height: 84px;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.35), inset 0 0 18px rgba(0, 212, 255, 0.12);
}
.co-icon-lg svg {
  width: 38px;
  height: 38px;
}

.co-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.co-label strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.25;
}
.co-label em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--chrome-dim);
}
.co-center .co-label strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

/* ---------- GROWTH ENGINE PANEL ---------- */
.growth-engine {
  background: var(--bg-panel);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 6px;
  box-shadow: 0 0 48px rgba(0, 212, 255, 0.06), inset 0 0 32px rgba(0, 212, 255, 0.02);
  padding: var(--s-12) var(--s-8);
  max-width: 1080px;
  margin: 0 auto;
}
.ge-head {
  text-align: center;
  margin-bottom: var(--s-12);
}
.ge-head h3 {
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: var(--s-3);
}
.ge-grad {
  background: linear-gradient(90deg, var(--cyan-glow), var(--steel-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ge-head p {
  color: var(--chrome-dim);
  font-size: 15px;
}

.ge-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--s-8);
  margin-bottom: var(--s-12);
}
.ge-col li {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--chrome);
}
.ge-col li + li {
  border-top: 1px solid var(--border-subtle);
}
.ge-ic {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan-glow);
}
.ge-ic svg {
  width: 17px;
  height: 17px;
}

/* ---------- PRICING BOX ---------- */
.ge-pricing {
  position: relative;
  border: 1px solid var(--border-active);
  border-radius: 6px;
  background: var(--bg-elevated);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.1);
  padding: var(--s-8);
  text-align: center;
}
.ge-pill {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--cyan-glow);
  color: var(--bg-void);
  padding: 3px 14px;
  border-radius: var(--radius);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.4);
}
.ge-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-8);
  padding-top: var(--s-4);
}
.ge-price {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.ge-price .num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 24px rgba(0, 212, 255, 0.35);
}
.ge-price .per {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--chrome-dim);
}
.ge-plus {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--cyan-glow);
}

/* ---------- CLINIC CTA ---------- */
.clinic-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  max-width: 1080px;
  margin: var(--s-8) auto 0;
  padding: var(--s-6);
  border: 1px solid var(--border-active);
  border-radius: 6px;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.clinic-cta em {
  font-style: normal;
  color: var(--cyan-glow);
}
.clinic-cta svg {
  width: 22px;
  height: 22px;
  color: var(--cyan-glow);
}
.clinic-cta:hover {
  transform: translateY(-3px);
  background: rgba(0, 212, 255, 0.06);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.25);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .co-stage { height: 500px; }
  .co-center, .co-node { width: 150px; }
  .co-n3 { left: 10%; }
  .co-n4 { left: 90%; }
}

@media (max-width: 768px) {
  .co-stage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8) var(--s-4);
    padding: var(--s-4) 0;
  }
  .co-rings, .co-star { display: none; }
  .co-center, .co-node {
    position: static;
    width: auto;
    transform: scale(0.9);
  }
  .clinic-orbit.visible .co-center,
  .clinic-orbit.visible .co-node {
    transform: scale(1);
  }
  .co-center { grid-column: 1 / -1; }
  .ge-cols { grid-template-columns: 1fr; gap: 0; }
  .ge-cols .ge-col + .ge-col li:first-child { border-top: 1px solid var(--border-subtle); }
  .growth-engine { padding: var(--s-8) var(--s-6); }
  .ge-head h3 { font-size: 26px; }
}

@media (max-width: 480px) {
  .ge-price-row {
    flex-direction: column;
    gap: var(--s-4);
  }
  .ge-price .num { font-size: 38px; }
  .clinic-cta { font-size: 15px; flex-wrap: wrap; text-align: center; }
  .clinic-sub { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .co-rot { animation: none; }
  .co-star { animation: none; opacity: 0.2; }
  .co-center, .co-node { transition: none; }
}
