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

:root {
  --bg: #06061a;
  --bg-card: rgba(15, 20, 45, 0.75);
  --border: rgba(99, 102, 241, 0.25);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --gradient: linear-gradient(135deg, #6366f1, #a855f7);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -150px;
  right: 10%;
  background: #6366f1;
}

.bg-glow-2 {
  bottom: 20%;
  left: -100px;
  background: #a855f7;
  opacity: 0.15;
}

.page {
  position: relative;
  z-index: 1;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 6, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.15);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-login {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-login:hover {
  color: #fff;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-get-started {
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--gradient);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-get-started:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.55);
}

/* Burger → Cross */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 200;
  padding: 0;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 6px;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 10px;
}

.menu-toggle span:nth-child(2) {
  top: 17px;
}

.menu-toggle span:nth-child(3) {
  top: 24px;
}

.menu-toggle.active span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

/* Full-screen mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 6, 26, 0.98);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.mobile-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: #a78bfa;
}

.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
  width: 200px;
}

.mobile-menu .btn-login,
.mobile-menu .btn-get-started {
  width: 100%;
  text-align: center;
  padding: 0.75rem;
}

/* HIGH-FIDELITY SAAS HERO SECTION (OpenDesign & Stripe/Linear benchmark) */
.hero-wrapper {
  position: relative;
  background: radial-gradient(circle at 65% 35%, rgba(30, 27, 75, 0.45) 0%, rgba(15, 23, 42, 0.15) 50%, transparent 85%);
  overflow: hidden;
}

.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 5rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero V3: Multi-Layer Cinematic Atmospheric Ecosystem (OpenDesign) */
.hero-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.dust-dot {
  position: absolute;
  border-radius: 50%;
  animation: floatDust var(--duration, 20s) cubic-bezier(0.35, 0.1, 0.25, 1) infinite alternate var(--delay, 0s);
  will-change: transform, opacity, filter;
}

/* V3 5-Tier Atmospheric Behavior Architecture */
.p-dust {
  width: 1.5px;
  height: 1.5px;
  background: rgba(148, 163, 184, 0.35);
  box-shadow: none;
}

.p-cloud {
  width: 5px;
  height: 5px;
  background: rgba(129, 140, 248, 0.5);
  box-shadow: 0 0 16px 4px rgba(129, 140, 248, 0.45);
  filter: blur(2px);
  animation-name: floatCloud !important;
}

.p-star {
  width: 2.2px;
  height: 2.2px;
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff, 0 0 14px #38bdf8;
  animation-name: twinkleStar !important;
}

.p-haze {
  width: 3px;
  height: 3px;
  background: rgba(168, 85, 247, 0.65);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
  animation-name: floatHaze !important;
}

.p-spark {
  width: 2.5px;
  height: 2.5px;
  background: #22d3ee;
  box-shadow: 0 0 10px #22d3ee, 0 0 4px #ffffff;
  animation-name: orbitalSpark !important;
}

/* Backward compatibility fallback */
.dust-l1 {
  width: 1.5px;
  height: 1.5px;
  background: rgba(148, 163, 184, 0.25);
}

.dust-l2 {
  width: 2.5px;
  height: 2.5px;
  background: rgba(129, 140, 248, 0.6);
  box-shadow: 0 0 5px rgba(129, 140, 248, 0.5);
}

.dust-l3 {
  width: 3.5px;
  height: 3.5px;
  background: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.8), 0 0 3px #ffffff;
}

.dust-l4 {
  width: 5px;
  height: 5px;
  background: rgba(192, 132, 252, 0.85);
  box-shadow: 0 0 16px 2px rgba(168, 85, 247, 0.75);
  filter: blur(0.8px);
}

@keyframes floatDust {
  0% {
    transform: translate3d(0, 0, 0) scale(0.7);
    opacity: 0.15;
  }

  50% {
    opacity: var(--max-alpha, 0.75);
    transform: translate3d(var(--dx, 20px), var(--dy, -30px), 0) scale(1.15);
  }

  100% {
    transform: translate3d(var(--dx2, -20px), var(--dy2, 25px), 0) scale(0.85);
    opacity: 0.25;
  }
}

@keyframes floatCloud {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.20;
    filter: blur(2px);
  }

  50% {
    opacity: var(--max-alpha, 0.60);
    transform: translate3d(var(--dx, 45px), var(--dy, -15px), 0) scale(1.4);
    filter: blur(2.5px);
  }

  100% {
    transform: translate3d(var(--dx2, -40px), var(--dy2, 10px), 0) scale(0.9);
    opacity: 0.20;
    filter: blur(1.8px);
  }
}

@keyframes twinkleStar {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.6);
    opacity: 0.18;
  }

  30%,
  70% {
    transform: translate3d(var(--dx, 8px), var(--dy, -8px), 0) scale(1.35);
    opacity: 0.95;
  }

  50% {
    transform: translate3d(var(--dx, 8px), var(--dy, -8px), 0) scale(0.5);
    opacity: 0.30;
  }
}

@keyframes floatHaze {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.22;
  }

  100% {
    transform: translate3d(var(--dx, -50px), var(--dy, -50px), 0);
    opacity: var(--max-alpha, 0.70);
  }
}

@keyframes orbitalSpark {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0.30;
  }

  50% {
    transform: translate3d(var(--dx, 35px), var(--dy, -25px), 0) scale(1.3);
    opacity: 0.90;
  }

  100% {
    transform: translate3d(var(--dx2, -30px), var(--dy2, 30px), 0) scale(0.75);
    opacity: 0.25;
  }
}

/* Left Column Typography & Interactive Components */
.hero-left {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e0e7ff;
  background: rgba(30, 27, 75, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.45);
  border-radius: 999px;
  margin-bottom: 1.75rem;
  width: fit-content;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.2), inset 0 0 12px rgba(139, 92, 246, 0.15);
  backdrop-filter: blur(12px);
  letter-spacing: 0.03em;
}

.hero-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  animation: badgePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero h1 .grad-possibilities {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 45%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.85rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.35);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(99, 102, 241, 0.75), inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

.btn-primary-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30px;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  transform: rotate(30deg);
  transition: 0.7s;
  opacity: 0;
}

.btn-primary-hero:hover::after {
  left: 130%;
  opacity: 1;
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.75rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(148, 163, 184, 0.65);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Truthful Industry Capabilities Section (Spanning full bottom width) */
.trusted-section {
  grid-column: 1 / -1;
  margin: 1.5rem auto 0;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(99, 102, 241, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1150px;
}

.trusted-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 2rem;
  display: block;
  text-align: center;
}

/* Grouped vertical container ensuring concluding statement remains attached to badges rather than detaching across page width */
.industries-content,
.industry-badges-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.industry-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(10px);
  cursor: pointer;
  user-select: none;
}

.badge-item svg.badge-ico {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  opacity: 0.7;
  transition: opacity 0.25s, stroke 0.25s;
}

.badge-item:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(139, 92, 246, 0.55);
  color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.badge-item:hover svg.badge-ico {
  opacity: 1;
  stroke: #a78bfa;
}

/* Universal Concluding Statement for Industries Section (Desktop, Laptop, Tablet, Mobile) */
.industry-more,
.trusted-more {
  display: block;
  margin-top: 22px;
  /* Exactly 20-24px below the final badge row */
  margin-bottom: 0;
  text-align: center;
  font-family: inherit;
  font-size: 0.84rem;
  /* Slightly smaller than badge text (0.90rem) */
  font-weight: 500;
  /* Medium weight, no bold styling */
  color: rgba(209, 213, 219, 0.74);
  /* Muted gray at ~74% opacity */
  letter-spacing: 0.08em;
  text-transform: none;
  /* Sentence case */
  animation: trustedMoreFadeIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes trustedMoreFadeIn {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

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

/* Right Column: Interactive V3 Cinematic Digital Network Operating System */
.hero-visual-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  width: 100%;
  z-index: 5;
  overflow: visible;
}

/* Volumetric Studio Light Sweep (Sweeps every 10s without crossing typography) */
.studio-light-sweep {
  position: absolute;
  top: -5%;
  left: 10%;
  width: 120%;
  height: 110%;
  background: linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.04) 48%, rgba(56, 189, 248, 0.14) 50%, rgba(168, 85, 247, 0.08) 53%, transparent 60%);
  filter: blur(18px);
  -webkit-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  z-index: 8;
  animation: studioLightSweep 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes studioLightSweep {

  0%,
  72% {
    transform: translate3d(-65%, -65%, 0);
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate3d(65%, 65%, 0);
    opacity: 0;
  }
}

/* Virtual Camera Drift Container (No DOM Layout Shifts) */
.network-container {
  position: relative;
  width: 480px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: translate3d(var(--cam-x, 0px), var(--cam-y, 0px), 0px) rotate(var(--cam-rot, 0deg));
  will-change: transform;
}

/* Layer 1: Background Neural Grid System with Parallax Depth Drift */
.neural-layer {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  z-index: 1;
  animation: neuralDrift 24s ease-in-out infinite alternate;
}

@keyframes neuralDrift {
  0% {
    transform: scale(1) rotate(0deg) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.05) rotate(1.8deg) translate3d(-6px, 6px, 0);
  }
}

.neural-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.neural-line {
  stroke: rgba(129, 140, 248, 0.26);
  stroke-width: 1px;
  transition: stroke-opacity 0.25s;
}

.neural-node {
  fill: #818cf8;
  filter: drop-shadow(0 0 6px rgba(129, 140, 248, 0.9));
}

/* Layer 2 & 3: Atmospheric Fog & Holographic Operating Core */
.hub-aura-group {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

/* Localized Moving Atmospheric Fog Clouds */
.atmospheric-fog {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(35px);
  -webkit-filter: blur(35px);
  will-change: transform, opacity;
}

.fog-1 {
  width: 440px;
  height: 410px;
  background: radial-gradient(circle at center, rgba(99, 102, 241, 0.24) 0%, rgba(139, 92, 246, 0.12) 55%, transparent 82%);
  animation: fogDriftA 16s ease-in-out infinite alternate;
}

.fog-2 {
  width: 500px;
  height: 460px;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.16) 0%, rgba(30, 27, 75, 0.20) 65%, transparent 88%);
  animation: fogDriftB 22s ease-in-out infinite alternate;
}

@keyframes fogDriftA {
  0% {
    transform: translate3d(-12px, -8px, 0) scale(0.94);
    opacity: 0.65;
  }

  100% {
    transform: translate3d(14px, 10px, 0) scale(1.06);
    opacity: 0.95;
  }
}

@keyframes fogDriftB {
  0% {
    transform: translate3d(15px, -12px, 0) scale(1.04);
    opacity: 0.70;
  }

  100% {
    transform: translate3d(-10px, 15px, 0) scale(0.95);
    opacity: 0.90;
  }
}

/* 5-Layer Volumetric Glow & Environmental Illumination */
.ambient-light-diffusion {
  position: absolute;
  width: 500px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.24) 0%, rgba(56, 189, 248, 0.15) 42%, rgba(30, 27, 75, 0.06) 68%, transparent 88%);
  filter: blur(28px);
  -webkit-filter: blur(28px);
  animation: coreRespiration 8s ease-in-out infinite alternate;
}

.plasma-halo {
  position: absolute;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.55) 0%, rgba(99, 102, 241, 0.70) 55%, transparent 100%);
  filter: blur(12px);
  -webkit-filter: blur(12px);
  animation: coreRespiration 8s ease-in-out infinite 0.4s;
}

.energy-shell {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(224, 231, 255, 0.45);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.48), inset 0 0 16px rgba(168, 85, 247, 0.35);
  animation: spinCounter 32s linear infinite;
}

@keyframes coreRespiration {
  0% {
    transform: scale(0.92);
    opacity: 0.65;
  }

  100% {
    transform: scale(1.09);
    opacity: 1;
  }
}

/* Expanding Volumetric Energy Pulses (Linked to Master Respiration) */
.hub-pulse-wave {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(129, 140, 248, 0.60);
  box-shadow: 0 0 25px rgba(129, 140, 248, 0.40), inset 0 0 16px rgba(168, 85, 247, 0.30);
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity, filter;
}

.wave-1 {
  animation: energyPulseWave 8s cubic-bezier(0.1, 0.65, 0.25, 1) infinite 0s;
}

.wave-2 {
  animation: energyPulseWave 8s cubic-bezier(0.1, 0.65, 0.25, 1) infinite 4s;
}

@keyframes energyPulseWave {
  0% {
    transform: scale(0.25);
    opacity: 0.85;
    filter: blur(0px);
  }

  50% {
    opacity: 0.45;
    filter: blur(2px);
  }

  100% {
    transform: scale(1.20);
    opacity: 0;
    filter: blur(6px);
  }
}

/* 4 Independent Holographic Rings (Non-Synchronized Velocities) */
.holo-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: border-color 0.5s ease;
}

/* Ring 1: Arc Scanner (18s Clockwise) */
.ring-1 {
  width: 205px;
  height: 205px;
  border: 1.5px dashed rgba(129, 140, 248, 0.38);
  border-top: 2px solid rgba(255, 255, 255, 0.95);
  border-left: 2px solid rgba(56, 189, 248, 0.80);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
  animation: spinClockwise 18s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.arc-scanner {
  position: absolute;
  top: 8px;
  right: 25px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8, 0 0 4px #ffffff;
}

/* Ring 2: Scan Tick Circuit (28s Counter-Clockwise) */
.ring-2 {
  width: 310px;
  height: 310px;
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-bottom: 2px dashed rgba(168, 85, 247, 0.85);
  border-right: 2.5px solid #38bdf8;
  box-shadow: 0 0 38px rgba(99, 102, 241, 0.16);
  animation: spinCounter 28s linear infinite;
}

.scan-tick {
  position: absolute;
  bottom: 12px;
  left: 40px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 8px #a855f7;
}

/* Ring 3: Orbital Perimeter (45s Clockwise) */
.ring-3 {
  width: 415px;
  height: 415px;
  border: 1px dotted rgba(168, 85, 247, 0.28);
  border-top: 1.5px solid rgba(192, 132, 252, 0.75);
  border-left: 1px solid rgba(99, 102, 241, 0.22);
  animation: spinClockwise 45s linear infinite;
}

/* Ring 4: Outer Enterprise Horizon (65s Counter-Clockwise) */
.ring-4 {
  width: 468px;
  height: 468px;
  border: 1px dashed rgba(56, 189, 248, 0.22);
  border-left: 2px solid rgba(56, 189, 248, 0.65);
  animation: spinCounter 65s linear infinite;
}

.orbital-dot {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 6px #60a5fa;
}

@keyframes spinClockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinCounter {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* Layer 5: Volumetric 5-Tier Operating Hub Core */
.hub-center-group {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.hub-orb {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(216, 180, 254, 0.98) 0%, rgba(99, 102, 241, 0.94) 52%, rgba(26, 20, 75, 0.98) 95%);
  border: 2px solid rgba(224, 231, 255, 0.90);
  box-shadow:
    0 0 0 3px rgba(224, 231, 255, 0.45),
    0 0 25px 8px rgba(99, 102, 241, 0.90),
    0 0 60px 22px rgba(129, 140, 248, 0.72),
    0 0 115px 42px rgba(168, 85, 247, 0.50),
    0 0 190px 75px rgba(56, 189, 248, 0.26),
    inset 0 0 35px rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hubOrbResonate 8s ease-in-out infinite;
}

.hub-orb-inner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 6px #38bdf8;
}

.hub-text {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(129, 140, 248, 0.95);
  background: linear-gradient(90deg, #e0e7ff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes hubOrbResonate {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(224, 231, 255, 0.40), 0 0 22px 6px rgba(99, 102, 241, 0.80), 0 0 52px 18px rgba(129, 140, 248, 0.60), 0 0 100px 35px rgba(168, 85, 247, 0.40), 0 0 170px 65px rgba(56, 189, 248, 0.20), inset 0 0 28px rgba(255, 255, 255, 0.55);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 4.5px rgba(224, 231, 255, 0.65), 0 0 32px 10px rgba(99, 102, 241, 0.98), 0 0 75px 26px rgba(129, 140, 248, 0.82), 0 0 135px 50px rgba(168, 85, 247, 0.62), 0 0 215px 88px rgba(56, 189, 248, 0.35), inset 0 0 40px rgba(255, 255, 255, 0.80);
  }
}

/* Quartz-Grade Glassmorphic Product Nodes with Unique Kinematics & Tilt */
.product-node {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.15rem 0.65rem 0.75rem;
  background: linear-gradient(135deg, rgba(20, 26, 62, 0.88) 0%, rgba(11, 15, 38, 0.92) 100%);
  border: 1px solid var(--node-border, rgba(255, 255, 255, 0.22));
  border-radius: 16px;
  box-shadow: 0 14px 38px -6px rgba(4, 6, 20, 0.80), 0 0 24px -4px var(--accent-glow, rgba(129, 140, 248, 0.40)), inset 0 1px 2px rgba(255, 255, 255, 0.25), inset 0 -1px 2px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0px) rotate(var(--trot, 0deg));
}

.product-node:hover {
  transform: scale(1.07) translateY(-4px) rotate(0deg) !important;
  border-color: var(--accent-color, #818cf8);
  background: linear-gradient(135deg, rgba(28, 36, 82, 0.94) 0%, rgba(16, 22, 54, 0.96) 100%);
  box-shadow: 0 18px 48px -4px rgba(2, 4, 15, 0.90), 0 0 40px var(--accent-glow, rgba(99, 102, 241, 0.75)), inset 0 1px 3px rgba(255, 255, 255, 0.45);
  z-index: 20;
}

.node-hex-icon {
  width: 44px;
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  filter: drop-shadow(0 0 12px var(--accent-glow, rgba(99, 102, 241, 0.80)));
}

.node-hex-icon svg.hex-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: rgba(18, 24, 54, 0.95);
  stroke: var(--accent-color, #818cf8);
  stroke-width: 2;
  transition: stroke-width 0.35s, fill 0.35s;
}

.product-node:hover .node-hex-icon svg.hex-bg {
  stroke-width: 2.8;
  fill: var(--accent-bg, rgba(99, 102, 241, 0.3));
}

.node-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.node-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.2;
}

.node-sub {
  font-size: 0.74rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.3;
}

/* Specific Node Accents & Exact Radial Positions (Desktop Untouched) */
.node-pos {
  top: -15px;
  left: 50%;
  transform: translateX(-50%) translate3d(var(--tx, 0px), var(--ty, 0px), 0px) rotate(var(--trot, 0deg));
  --accent-color: #60a5fa;
  --accent-glow: rgba(96, 165, 250, 0.70);
  --accent-bg: rgba(59, 130, 246, 0.30);
  --node-border: rgba(96, 165, 250, 0.45);
}

.node-crm {
  top: 85px;
  right: -25px;
  --accent-color: #34d399;
  --accent-glow: rgba(52, 211, 153, 0.70);
  --accent-bg: rgba(16, 185, 129, 0.30);
  --node-border: rgba(52, 211, 153, 0.45);
}

.node-hr {
  bottom: 85px;
  right: -25px;
  --accent-color: #fb923c;
  --accent-glow: rgba(251, 146, 60, 0.70);
  --accent-bg: rgba(249, 115, 22, 0.30);
  --node-border: rgba(251, 146, 60, 0.45);
}

.node-ana {
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) translate3d(var(--tx, 0px), var(--ty, 0px), 0px) rotate(var(--trot, 0deg));
  --accent-color: #f472b6;
  --accent-glow: rgba(244, 114, 182, 0.70);
  --accent-bg: rgba(236, 72, 153, 0.30);
  --node-border: rgba(244, 114, 182, 0.45);
}

.node-inv {
  bottom: 85px;
  left: -25px;
  --accent-color: #22d3ee;
  --accent-glow: rgba(34, 211, 238, 0.70);
  --accent-bg: rgba(6, 182, 212, 0.30);
  --node-border: rgba(34, 211, 238, 0.45);
}

.node-erp {
  top: 85px;
  left: -25px;
  --accent-color: #a78bfa;
  --accent-glow: rgba(167, 139, 250, 0.70);
  --accent-bg: rgba(139, 92, 246, 0.30);
  --node-border: rgba(167, 139, 250, 0.45);
}

/* Layer 4: SVG Connection Network & Dynamic Randomized Data Packets */
.connections-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.connections-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.connection-base {
  stroke: rgba(129, 140, 248, 0.30);
  stroke-width: 1.5;
  fill: none;
  filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.40));
}

.connection-pulse {
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 50 320;
  animation: connectionDash 3.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.p-1 {
  animation-duration: 4.2s;
  animation-delay: 0s;
  stroke: #60a5fa;
  filter: drop-shadow(0 0 8px #60a5fa);
}

.p-2 {
  animation-duration: 3.5s;
  animation-delay: -1.3s;
  stroke: #34d399;
  filter: drop-shadow(0 0 8px #34d399);
}

.p-3 {
  animation-duration: 4.6s;
  animation-delay: -2.8s;
  stroke: #fb923c;
  filter: drop-shadow(0 0 8px #fb923c);
}

.p-4 {
  animation-duration: 3.9s;
  animation-delay: -0.7s;
  stroke: #f472b6;
  filter: drop-shadow(0 0 8px #f472b6);
}

.p-5 {
  animation-duration: 4.4s;
  animation-delay: -2.1s;
  stroke: #22d3ee;
  filter: drop-shadow(0 0 8px #22d3ee);
}

.p-6 {
  animation-duration: 3.7s;
  animation-delay: -3.4s;
  stroke: #a78bfa;
  filter: drop-shadow(0 0 8px #a78bfa);
}

/* V3 Live Dynamic Data Packet Styles */
.data-packet {
  fill: #38bdf8;
  filter: drop-shadow(0 0 8px #38bdf8);
  transition: opacity 0.25s ease;
  will-change: transform, opacity;
}

@keyframes connectionDash {
  0% {
    stroke-dashoffset: 370;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

/* Polished Glass Floor Horizon & Synchronized Mirror Reflection */
.floor-stage {
  position: relative;
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  z-index: 4;
}

.floor-horizon {
  position: relative;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.35) 15%, rgba(139, 92, 246, 0.95) 50%, rgba(99, 102, 241, 0.35) 85%, transparent 100%);
  box-shadow: 0 0 18px 2px rgba(99, 102, 241, 0.8), 0 0 45px 12px rgba(139, 92, 246, 0.50);
  overflow: visible;
}

.floor-shimmer-light {
  position: absolute;
  top: -2px;
  left: 0;
  width: 180px;
  height: 5px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 1) 0%, rgba(99, 102, 241, 0.5) 45%, transparent 80%);
  filter: blur(2px);
  animation: floorShimmerWave 7s ease-in-out infinite alternate;
}

@keyframes floorShimmerWave {
  0% {
    transform: translateX(-10%);
    opacity: 0.25;
  }

  50% {
    transform: translateX(200%);
    opacity: 0.95;
  }

  100% {
    transform: translateX(350%);
    opacity: 0.25;
  }
}

.floor-mirror {
  position: relative;
  width: 480px;
  height: 250px;
  transform: scaleY(-1) translateY(10px) translate3d(var(--cam-x, 0px), calc(-1 * var(--cam-y, 0px)), 0px) rotate(calc(-1 * var(--cam-rot, 0deg)));
  transform-origin: top center;
  filter: blur(6.5px) brightness(0.32) contrast(1.15);
  opacity: 0.44;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.22) 45%, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.22) 45%, transparent 78%);
  animation: mirrorResonate 8s ease-in-out infinite;
  will-change: transform, filter, opacity;
}

@keyframes mirrorResonate {

  0%,
  100% {
    opacity: 0.44;
    filter: blur(6.5px) brightness(0.32);
  }

  50% {
    opacity: 0.35;
    filter: blur(7px) brightness(0.28);
  }
}




/* ABOUT */
.about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 6rem;
  text-align: center;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #a78bfa;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.4rem;
  text-align: left;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.12);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* PRODUCTS */
.products {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.products-slider {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.products-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scroll-padding: 0.5rem;
}

.products-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  text-align: left;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.product-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
  transform: translateY(-4px);
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.product-icon.blue {
  background: rgba(59, 130, 246, 0.2);
}

.product-icon.purple {
  background: rgba(139, 92, 246, 0.25);
}

.product-icon.green {
  background: rgba(34, 197, 94, 0.2);
}

.product-icon.cyan {
  background: rgba(6, 182, 212, 0.2);
}

.product-icon.orange {
  background: rgba(249, 115, 22, 0.2);
}

.product-icon.pink {
  background: rgba(236, 72, 153, 0.2);
}

.product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.product-card .tagline {
  font-size: 0.85rem;
  color: #a5b4fc;
  margin-bottom: 0.7rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.product-card .learn {
  font-size: 0.9rem;
  font-weight: 600;
  color: #a78bfa;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 44px;
}

.product-card .learn:hover {
  gap: 0.5rem;
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.slider-btn:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
}

.dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-height: 44px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.dot.active {
  background: #818cf8;
  transform: scale(1.25);
}

/* INDUSTRIES / SOLUTIONS (Responsive touch slider preserved) */
.industries {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.industries-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1.5rem 0.25rem;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  scroll-padding: 0.5rem;
}

.industries-track::-webkit-scrollbar {
  display: none;
}

.industry-card {
  flex: 0 0 140px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
  min-height: 44px;
}

.industry-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-3px);
}

.industry-card .ico {
  font-size: 1.6rem;
}

.industry-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* CTA */
.cta {
  max-width: 1100px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
}

.cta-inner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 20px;
  padding: 2.5rem 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.cta-text p {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* High-Fidelity QuickWrks SaaS CTA Buttons (OpenDesign Standard) */
.cta-btns .btn-primary,
.cta-btns .btn-outline {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  height: 56px;
  padding: 0 2.2rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Primary CTA: Contact Us */
.cta-btns .btn-primary {
  background: linear-gradient(135deg, #4F8BFF 0%, #6F6CFF 50%, #A855F7 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 25px rgba(111, 108, 255, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.35);
}

.cta-btns .btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 32px rgba(111, 108, 255, 0.75), inset 0 1px 3px rgba(255, 255, 255, 0.5);
}

/* Secondary CTA: FAQ */
.cta-btns .btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 0 rgba(139, 92, 246, 0);
}

.cta-btns .btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

/* Accessible Keyboard Focus States */
.cta-btns button:focus-visible {
  outline: 2px solid #38bdf8 !important;
  outline-offset: 3px;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.65) !important;
}

/* Animated Arrow Icons */
.cta-btns .cta-arrow {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
  flex-shrink: 0;
}

.cta-btns button:hover .cta-arrow {
  transform: translateX(3px);
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(99, 102, 241, 0.15);
  padding: 6rem 1.5rem 2.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 240px;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}

.socials a:hover {
  color: #fff;
  border-color: rgba(148, 163, 184, 0.5);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.65rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s;
  display: inline-block;
  padding: 0.2rem 0;
  min-height: 32px;
}

.footer-col a:hover {
  color: #a78bfa;
}

.footer-bottom {
  max-width: 1100px;
  margin: 3.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
       FLUID MOBILE & RESPONSIVE ARCHITECTURE (OpenDesign SaaS Standard)
       Content-driven auto-resizing | Zero hardcoded heights | No negative margins
       ========================================================================== */

/* Large Laptops / Desktop Edge (1200px - 1440px) */
@media (max-width: 1440px) {
  .hero {
    max-width: 1200px;
    gap: 2rem;
    padding: 4.5rem 1.5rem 1.5rem;
  }

  .hero-visual-stage {
    transform: scale(0.96);
    transform-origin: center center;
  }
}

@media (max-width: 1200px) {
  .hero {
    gap: 1.5rem;
    padding: 4rem 1.5rem 1.5rem;
  }

  .hero-visual-stage {
    transform: scale(0.90);
  }

  .footer-inner {
    gap: 1.75rem;
  }
}

/* Tablet Standard (769px - 1024px) */
@media (max-width: 1024px) {

  .about,
  .products,
  .industries {
    padding: 4.5rem 1.5rem;
  }

  .cta {
    margin: 0 auto 4.5rem;
  }

  footer {
    padding: 4.5rem 1.5rem 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
    text-align: center;
  }

  .hero-left {
    align-items: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
  }

  .hero-btns {
    justify-content: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    gap: 1rem;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
    flex: 1;
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .hero-visual-stage {
    transform: scale(0.85);
    min-height: 560px;
    margin: 0 auto;
  }

  .trusted-section {
    align-items: center;
    padding-top: 2.5rem;
    margin-top: 1rem;
  }

  .industry-badges {
    justify-content: center;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    max-width: 768px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
       DEDICATED MOBILE HERO COMPOSITION (≤768px)
       True single-column flex flow | Fluid aspect-ratio resizing | Zero hacks
       ========================================================================== */
@media (max-width: 768px) {

  .about,
  .products,
  .industries {
    padding: 3.5rem 1.25rem;
  }

  .cta {
    margin: 0 auto 3.5rem;
    padding: 0 1.25rem;
  }

  footer {
    padding: 3.5rem 1.25rem 2rem;
  }

  /* Responsive Navbar */
  .nav {
    padding: 0.75rem 1.25rem;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .nav-actions {
    gap: 0.75rem;
  }

  .nav-actions .btn-login {
    display: none;
  }

  .btn-get-started {
    padding: 0.55rem 1.2rem;
    font-size: clamp(0.78rem, 2.2vw, 0.88rem);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* 1. Single-Column Flex Composition with Layered Background Integration */
  .hero-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .hero {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 2rem 1.25rem 2.5rem !important;
    gap: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  /* Layer 3: Hero Content (Always sits above Layer 2 illustration; Desktop Untouched) */
  .hero-left {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-right {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Soft radial readability gradient diffusion overlay guaranteed behind hero typography & CTAs */
  .hero-left::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 145%;
    height: 155%;
    /* Slightly softened radial darkness (~15% reduction) allowing more illustration vibrancy to show through while maintaining 100% typographic legibility */
    background: radial-gradient(circle at center, rgba(10, 15, 30, 0.72) 0%, rgba(10, 15, 30, 0.46) 55%, transparent 88%);
    pointer-events: none;
    z-index: -1;
    /* Attached directly below hero copy and buttons within Layer 3 */
  }

  /* 2. Fluid Mobile Typography & Button Stack with Text Contrast Shadow */
  .hero h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.65rem);
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75) !important;
    /* Maximizes readability over glowing background */
  }

  .hero-desc {
    font-size: clamp(0.92rem, 3vw, 1.08rem);
    line-height: 1.6;
    max-width: min(92%, 500px);
    margin: 0 auto clamp(1.5rem, 4vw, 2.25rem);
    color: #d1d5db !important;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65) !important;
  }

  .hero-btns {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    gap: 0.85rem !important;
    position: relative;
    z-index: 12 !important;
    /* Guaranteed interaction layer */
  }

  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100% !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 3. Content-Driven Animation Stage (Zero vertical whitespace waste; hosts reflection at bottom of hero) */
  .hero-visual-stage {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: clamp(1.5rem, 5vw, 2.25rem) 0 0 !important;
    /* Natural sequential spacing after CTA buttons before floor reflection */
    padding: 0 !important;
    transform: none !important;
    overflow: visible !important;
    z-index: 4 !important;
  }

  /* Layer 2: Animated Background Network (≤768px only; Desktop Untouched) */
  #liveNetworkStage {
    position: absolute !important;
    top: var(--network-bg-top, clamp(16%, 21%, 26%)) !important;
    /* Dynamically computed to fall directly between H1 and paragraph */
    left: 50% !important;
    transform: translateX(-50%) translate3d(var(--cam-x, 0px), var(--cam-y, 0px), 0px) rotate(var(--cam-rot, 0deg)) !important;
    width: clamp(290px, 95vw, 480px) !important;
    height: clamp(350px, 105vw, 470px) !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2 !important;
    pointer-events: none !important;
    /* Ensures touch events pass cleanly to buttons and copy */
    opacity: 0.74 !important;
    /* 15-20% presence enhancement for richer atmosphere */
    filter: blur(0.9px) !important;
    /* Refined definition while preserving spatial depth */
  }

  /* Attenuating background line, particle, and dot brightness for rich supportive presence */
  #liveNetworkStage .neural-line {
    stroke: rgba(129, 140, 248, 0.22) !important;
  }

  #liveNetworkStage .neural-node {
    fill: rgba(165, 180, 252, 0.75) !important;
    filter: drop-shadow(0 0 4px rgba(129, 140, 248, 0.7)) !important;
  }

  #liveNetworkStage .connection-base {
    stroke: rgba(99, 102, 241, 0.24) !important;
    stroke-width: 1.4px !important;
  }

  #liveNetworkStage .connection-pulse {
    stroke: rgba(192, 132, 252, 0.72) !important;
    filter: drop-shadow(0 0 5px rgba(168, 85, 247, 0.8)) !important;
  }

  /* Container-Driven Center Hub Resizing with Expanded Bloom Anchor (Desktop Untouched) */
  #liveNetworkStage .hub-center-group,
  #liveNetworkStage .hub-aura-group {
    --hub-scale: clamp(0.62, calc(0.52 + 0.3vw), 0.78);
    transform: scale(var(--hub-scale)) !important;
    margin: 0 auto !important;
  }

  #liveNetworkStage .hub-orb {
    width: 82px !important;
    height: 82px !important;
    box-shadow: 0 0 35px rgba(99, 102, 241, 0.52), 0 0 65px rgba(168, 85, 247, 0.30), inset 0 0 22px rgba(168, 85, 247, 0.60) !important;
    /* Multi-tier bloom creating visual anchor */
  }

  #liveNetworkStage .hub-orb-inner {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.55rem !important;
  }

  #liveNetworkStage .hub-text {
    margin-top: 0.5rem !important;
    font-size: 0.84rem !important;
    letter-spacing: 0.06em !important;
  }

  #liveNetworkStage .ring-1 {
    width: 140px !important;
    height: 140px !important;
    border-color: rgba(129, 140, 248, 0.24) !important;
    box-shadow: 0 0 12px rgba(129, 140, 248, 0.15) !important;
  }

  #liveNetworkStage .ring-2 {
    width: 235px !important;
    height: 235px !important;
    border-color: rgba(99, 102, 241, 0.16) !important;
    box-shadow: none !important;
  }

  #liveNetworkStage .ring-3 {
    width: 340px !important;
    height: 340px !important;
    border-color: rgba(168, 85, 247, 0.18) !important;
  }

  #liveNetworkStage .ring-4 {
    width: 380px !important;
    height: 380px !important;
    border-color: rgba(56, 189, 248, 0.16) !important;
  }

  #liveNetworkStage .plasma-halo {
    width: 120px !important;
    height: 120px !important;
  }

  #liveNetworkStage .energy-shell {
    width: 100px !important;
    height: 100px !important;
  }

  /* Proportional Mobile Card Scaling & Enhanced Glassmorphic Presence (≤768px) */
  .product-node {
    --node-scale: var(--computed-card-scale, clamp(0.70, calc(0.62 + 0.2vw), 0.82));
    padding: calc(0.45rem * var(--node-scale)) calc(0.80rem * var(--node-scale)) calc(0.45rem * var(--node-scale)) calc(0.56rem * var(--node-scale)) !important;
    gap: calc(0.58rem * var(--node-scale)) !important;
    border-radius: calc(14px * var(--node-scale)) !important;
    /* Preserves desktop glassmorphic rounded card language */
    width: auto !important;
    max-width: calc(185px * var(--node-scale)) !important;
    opacity: 0.88 !important;
    /* ~15% visibility lift for richer atmosphere */
    background: rgba(30, 41, 59, 0.65) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(168, 85, 247, 0.35) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 14px rgba(139, 92, 246, 0.26), inset 0 1px 2px rgba(255, 255, 255, 0.22) !important;
    /* Anchored precisely by center point from data-driven radial calculations with V3 tilt */
    transform: translate(-50%, -50%) translate3d(var(--tx, 0px), var(--ty, 0px), 0px) rotate(var(--trot, 0deg)) !important;
  }

  .node-hex-icon {
    width: calc(36px * var(--node-scale)) !important;
    height: calc(36px * var(--node-scale)) !important;
    font-size: calc(1.05rem * var(--node-scale)) !important;
    flex-shrink: 0;
  }

  #liveNetworkStage .node-hex-icon span {
    filter: brightness(1.15) drop-shadow(0 0 3px rgba(255, 255, 255, 0.35)) !important;
    /* Elevated icon brightness */
  }

  .node-title {
    font-size: clamp(0.74rem, calc(0.88rem * var(--node-scale)), 0.86rem) !important;
    line-height: 1.15 !important;
  }

  .node-sub {
    font-size: clamp(0.60rem, calc(0.74rem * var(--node-scale)), 0.73rem) !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }

  /* 4. Fluid Floor Reflection (Sits exclusively at bottom of hero in natural DOM flow beneath CTAs) */
  .floor-stage {
    position: relative !important;
    width: clamp(260px, 85vw, 480px) !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    height: auto !important;
    z-index: 4 !important;
  }

  .floor-mirror {
    width: 100% !important;
    aspect-ratio: 16 / 3.5 !important;
    height: auto !important;
    max-height: clamp(65px, 20vw, 110px) !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }

  /* Ensure reflection mirror container reflects only the visible lower portion of illustration with balanced definition */
  #mirrorStage .network-container {
    position: relative !important;
    top: -62% !important;
    left: 50% !important;
    transform: translateX(-50%) translate3d(var(--cam-x, 0px), calc(-1 * var(--cam-y, 0px)), 0px) rotate(calc(-1 * var(--cam-rot, 0deg))) !important;
    width: clamp(290px, 95vw, 480px) !important;
    height: clamp(350px, 105vw, 470px) !important;
    opacity: 0.44 !important;
    filter: blur(1.6px) !important;
    pointer-events: none !important;
  }

  /* 5. Trusted Section immediately follows reflection in natural DOM flow */
  .trusted-section {
    width: 100% !important;
    margin: 0 !important;
    padding-top: clamp(2rem, 6vw, 3rem) !important;
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .industry-badges {
    justify-content: center;
    gap: clamp(0.6rem, 2vw, 0.85rem);
    width: 100%;
  }

  .badge-item {
    font-size: clamp(0.78rem, 2.2vw, 0.85rem);
    padding: 0.45rem clamp(0.8rem, 2.5vw, 1.1rem);
  }

  /* Preserve mobile container and concluding statement styling exactly as approved (≤768px) */
  .industries-content,
  .industry-badges-container {
    width: 100% !important;
    align-items: center !important;
  }

  .industry-more,
  .trusted-more {
    width: 100% !important;
    text-align: center !important;
    margin: clamp(0.95rem, 3vw, 1.25rem) auto 0 !important;
    font-size: clamp(0.85rem, 2.5vw, 0.90rem) !important;
    letter-spacing: 0.08em !important;
  }

  /* General components mobile adaptation */
  .features {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .product-card {
    flex: 0 0 calc(100vw - 3.5rem);
    max-width: 320px;
  }

  .industry-card {
    flex: 0 0 clamp(120px, 35vw, 135px);
    padding: 1.25rem 0.85rem;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 1.25rem;
    gap: 1.75rem;
  }

  .cta-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1rem;
  }

  .cta-btns a,
  .cta-btns button,
  .cta-btns .btn-primary,
  .cta-btns .btn-outline {
    width: 100% !important;
    max-width: 340px !important;
    height: 56px !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }

  /* Centered Vertical Footer Stacking */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(2rem, 6vw, 2.5rem);
    justify-items: center;
  }

  .footer-brand p {
    margin: 0 auto 1.25rem;
    max-width: 280px;
  }

  .socials {
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .footer-col ul {
    padding: 0;
  }

  .footer-col li {
    margin-bottom: 0.6rem;
  }

  .footer-bottom {
    margin-top: 2.5rem;
  }
}

/* Graceful Subtitle Hiding for Very Small Phone Displays (≤480px only) */
@media (max-width: 480px) {
  .node-sub {
    display: none !important;
  }

  .product-node {
    padding: 0.42rem 0.78rem 0.42rem 0.55rem !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
}

/* Ultra-Compact Safety Adjustments (<360px) */
@media (max-width: 360px) {
  .nav {
    padding: 0.6rem 0.65rem;
    gap: 0.25rem;
  }

  .logo {
    font-size: 1.05rem;
    gap: 0.35rem;
  }

  .logo-icon {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
  }

  .btn-get-started {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    min-height: 44px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-btns {
    max-width: 280px !important;
  }
}

/* video */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 60px auto;
  padding: 0 20px;
}

.video-container video {
  display: block;
  width: min(900px, 100%);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  background: #080b14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(96, 165, 250, 0.08);
}