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

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --bg: #050508;
  --bg-card: #08080f;
  --bg-card2: #0d0d16;
  --accent: #6366F1;
  --accent2: #6366f1;
  --accent-rgb: 99, 102, 241;
  --text: #FFFFFF;
  --muted: #8b8b9e;
  --muted-bright: #a1a1b4;
  --border: rgba(255, 255, 255, 0.065);
  --border-blue: rgba(99, 102, 241, 0.2);
  --glow: rgba(99, 102, 241, 0.06);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Syne', var(--font);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.5), 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --shadow-hover: 0 2px 8px rgba(0, 0, 0, 0.6), 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(99, 102, 241, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition:
    background-color .3s ease,
    color .3s ease;
}

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

ul {
  list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.18);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.3);
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  [data-theme="light"] .navbar {
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(255,255,255,.95);
}
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.nav-logo:hover {
  opacity: 0.8;
}

.logo-o {
  color: var(--accent2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.99rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 7px 15px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: -0.005em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 15px;
  right: 15px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.048);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.theme-toggle {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all var(--transition);
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-audit-nav {
  padding: 7px 18px;
  background: #fff;
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.btn-audit-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-audit-nav:hover {
  background: rgba(255, 255, 255, 0.92);
}

.btn-audit-nav:hover::before {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 1px;
  transition: all 0.25s;
}

.mobile-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: calc(100vh - 76px);

    background: rgba(5,5,8,0.98);
    backdrop-filter: blur(25px);

    display: flex;
    flex-direction: column;

    padding: 40px 30px;

    transform: translateX(100%);
    transition: transform 0.4s ease;

    z-index: 999;
}

.mobile-menu.open {
    transform: translateX(0);
}
body.menu-open {
    overflow: hidden;
}

.mobile-link {
  padding: 11px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-link:hover {
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: var(--bg);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  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: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 75% at 50% 40%, black 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 50% 40%, black 10%, transparent 72%);
  animation: gridShift 20s ease-in-out infinite;
}

@keyframes gridShift {

  0%,
  100% {
    background-position: 0 0;
    opacity: 1;
  }

  50% {
    background-position: 4px 4px;
    opacity: 0.7;
  }
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.08;
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite;
  will-change: transform;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #818cf8, #6366f1);
  top: -15%;
  left: -12%;
  animation-delay: 0s;
}

.orb2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #818cf8, #6366f1);
  top: -10%;
  right: -5%;
  animation-delay: -5s;
  opacity: 0.06;
}

.orb3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #6366f1, #4f46e5);
  bottom: 0%;
  left: 32%;
  animation-delay: -10s;
}

@keyframes floatOrb {

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

  33% {
    transform: translateY(-20px) scale(1.02);
  }

  66% {
    transform: translateY(12px) scale(0.98);
  }
}

.hero-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 64px 48px 64px 56px;
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-bottom: 28px;
  padding: 6px 14px 6px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4), 0 0 6px rgba(34, 197, 94, 0.5);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0), 0 0 10px rgba(34, 197, 94, 0.3);
  }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 35%, #c7d2fe 65%, #f0f0ff 100%);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
}

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

  100% {
    background-position: 300% 50%;
  }
}

.hero-sub {
  font-size: 1.025rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero trust strip */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-meta-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Diagram status chips */
.diagram-chips {
  position: absolute;
  top: 6%;
  right: -2%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
  pointer-events: none;
}

.diagram-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 8px;
  background: rgba(8, 8, 16, 0.88);
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}

.diagram-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
}

.diagram-chip-dot.orange {
  background: #f59e0b;
  box-shadow: 0 0 5px rgba(245, 158, 11, 0.5);
  animation-delay: -1.2s;
}

.diagram-chip span {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

.btn-arrow {
  font-size: 0.9rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.015em;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/*  ===========new code start === */

/*====================================
      CORE VARS — matches your site exactly
    =====================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #050508;
  --bg-card: #08080f;
  --accent: #6366F1;
  --accent-rgb: 99, 102, 241;
  --text: #FFFFFF;
  --muted: #8b8b9e;
  --border: rgba(255, 255, 255, 0.065);
  --font: 'DM Sans', sans-serif;
  --font-display: 'Syne', var(--font);
}

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
}

/*====================================
      PREVIEW SHELL (remove in production)
    =====================================*/
.preview-label {
  text-align: center;
  padding: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(99, 102, 241, 0.5);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  font-family: var(--font-display);
}

/*====================================
      HERO SECTION
    =====================================*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: var(--bg);
}

/* Grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  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: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 75% at 50% 40%, black 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 50% 40%, black 10%, transparent 72%);
  animation: gridShift 20s ease-in-out infinite;
}

@keyframes gridShift {

  0%,
  100% {
    background-position: 0 0;
    opacity: 1;
  }

  50% {
    background-position: 4px 4px;
    opacity: 0.7;
  }
}

/* Ambient orbs */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #818cf8, #6366f1);
  top: -15%;
  left: -12%;
  opacity: 0.07;
  animation-delay: 0s;
}

.orb2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #818cf8, #6366f1);
  top: -10%;
  right: -5%;
  opacity: 0.05;
  animation-delay: -5s;
}

.orb3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #6366f1, #4f46e5);
  bottom: 0;
  left: 32%;
  opacity: 0.06;
  animation-delay: -10s;
}

@keyframes floatOrb {

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

  33% {
    transform: translateY(-20px) scale(1.02);
  }

  66% {
    transform: translateY(12px) scale(0.98);
  }
}

/* Layout */
.hero-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 64px 48px 64px 56px;
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/*====================================
      LEFT SIDE — unchanged from your site
    =====================================*/
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-bottom: 28px;
  padding: 6px 14px 6px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: labelPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

@keyframes labelPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4), 0 0 6px rgba(34, 197, 94, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0), 0 0 10px rgba(34, 197, 94, 0.3);
  }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 35%, #c7d2fe 65%, #f0f0ff 100%);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
}

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

  100% {
    background-position: 300% 50%;
  }
}

.hero-sub {
  font-size: 1.025rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-meta-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/*====================================
      RIGHT SIDE — THE NEW PREMIUM GRAPHIC
    =====================================*/
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: -10% -5%;
  background: radial-gradient(ellipse 70% 60% at 55% 50%, rgba(99, 102, 241, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Outer wrapper */
.os-graphic {
  position: relative;
  width: 100%;
  max-width: 660px;
  z-index: 1;
}

/* Status chips — top right */
.diagram-chips {
  position: absolute;
  top: 2%;
  right: 0%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
  pointer-events: none;
}

.diagram-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 8px;
  background: rgba(8, 8, 16, 0.9);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 100px;
  backdrop-filter: blur(16px);
  white-space: nowrap;
}

.chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: chipPulse 2.5s ease-in-out infinite;
}

.chip-dot.green {
  background: #22c55e;
  box-shadow: 0 0 5px rgba(34, 197, 94, 0.6);
}

.chip-dot.amber {
  background: #f59e0b;
  box-shadow: 0 0 5px rgba(245, 158, 11, 0.6);
  animation-delay: -1.2s;
}

@keyframes chipPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.55;
  }
}

.diagram-chip span {
  font-size: 0.63rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font);
}

/* Canvas container */
.os-canvas-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 95%;
  /* aspect ratio ~1:0.95 */
}

/* The main canvas */
#osCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Revenue leak badge */
.leak-badge {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 8, 15, 0.96);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 6px;
  font-family: var(--font-display);
  opacity: 0;
  box-shadow: 0 0 0 rgba(239, 68, 68, 0);
  transition: opacity 0.4s, box-shadow 0.4s;
  pointer-events: none;
  z-index: 8;
  white-space: nowrap;
}

.leak-badge.visible {
  opacity: 1;
  box-shadow: 0 0 24px rgba(239, 68, 68, 0.18);
}

/*====================================
      MOBILE
    =====================================*/
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }

  .hero-right {
    display: none;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-meta {
    display: none;
  }
  
}



/*  ===========new code end === */

/* ===== INDUSTRIES BAR ===== */
.industries-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  background: var(--bg);
}

.industries-label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;

  font-size:.75rem;
  font-weight:600;
  letter-spacing:.2em;
  text-transform:uppercase;

  color: rgba(129,140,248,.75);

  padding:18px 0 12px;
}

.industries-label span{
  width:60px;
  height:1px;

  background:rgba(255,255,255,.15);
}

.industries-track-wrap {
  overflow: hidden;
  padding: 14px 0 18px;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.industries-track {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: scrollTrack 55s linear infinite;
}

.industries-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding-right: 48px;
}

@keyframes scrollTrack {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.industry-item {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;

  border: 1px solid rgba(255,255,255,0.08);

  background: rgba(255,255,255,0.03);

  backdrop-filter: blur(10px);

  border-radius: 999px;

  color: rgba(255,255,255,0.65);

  white-space: nowrap;

  font-size: 0.85rem;

  font-weight: 500;

  transition: all .3s ease;
}

.industry-item:hover {
  color: #fff;

  transform: translateY(-2px);

  border-color: rgba(129,140,248,0.35);

  box-shadow:
    0 0 20px rgba(129,140,248,.15),
    0 0 40px rgba(129,140,248,.08);
}

.industry-sep {
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.4rem;
}

/* ===== SECTIONS COMMON ===== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 112px 32px;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: #fff;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.72;
  max-width: 540px;
  margin: 0 auto 64px;
}

.muted-text {
  color: var(--muted);
}

/* ===== PROBLEM CARDS ===== */
.problem-section {
  background: var(--bg);
}

.problem-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 64px;
  color: #fff;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.problem-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.3s;
  animation-delay: var(--delay);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.problem-card:hover {
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.problem-card:hover::before {
  opacity: 1;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s;
}

.problem-card:hover .card-icon {
  border-color: rgba(99, 102, 241, 0.25);
  color: rgba(99, 102, 241, 0.8);
  background: rgba(99, 102, 241, 0.06);
}

.card-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: -0.05em;
  line-height: 1;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
  color: #fff;
}

.card-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.68;
}

.problem-cta {
  text-align: center;
}

.btn-large {
  padding: 13px 32px;
  font-size: 0.9rem;
}

/* ===== SYSTEMS SECTION ===== */
.systems-section {
  background: var(--bg-card);
}

.systems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 64px;
}

.system-card {
  background: linear-gradient(145deg, #0f0f1a 0%, #0a0a14 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.3s;
  animation-delay: var(--delay);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.system-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.04) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.system-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.system-card:hover::after {
  opacity: 1;
}

.system-card-flagship {
  border-color: rgba(99, 102, 241, 0.18);
}

.system-card-flagship::after {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 65%);
}

.system-card-flagship:hover {
  border-color: rgba(99, 102, 241, 0.32);
}

.system-card-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.system-badge {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.flagship-badge {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.system-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.035em;
  color: #fff;
}

.system-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.system-features-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(139, 139, 158, 0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.system-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.system-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.feature-icon {
  color: var(--accent);
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
}

.more-systems {
  font-size: 0.8rem;
  color: rgba(139, 139, 158, 0.45);
  margin-bottom: 28px;
}

.system-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: auto;
  letter-spacing: -0.03em;
}

.system-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition), gap 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.system-explore:hover {
  gap: 14px;
  color: #fff;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 96px;
  margin-top: 64px;
}

.process-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  animation-delay: var(--delay);
}

.process-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.05em;
}

.process-num-muted {
  color: rgba(255, 255, 255, 0.03);
}

.process-title {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
  color: #fff;
}

.process-title-muted {
  color: rgba(255, 255, 255, 0.25);
}

.process-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.68;
}

.process-text-muted {
  color: rgba(139, 139, 158, 0.38);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(to right, #08080f, #0d0d18, #08080f);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 52px 60px;
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.5vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.055em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
  background: var(--bg);
}

.solutions-heading {
  text-align: center;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.solutions-grid .solution-card:nth-child(4) {
  grid-column: 1;
}

.solutions-grid .solution-card:nth-child(5) {
  grid-column: 2;
}

.solution-card {
  background: linear-gradient(145deg, #0f0f1a 0%, #0a0a14 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.3s;
  animation-delay: var(--delay);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.solution-card:hover {
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.solution-card:hover::before {
  opacity: 1;
}

.sol-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.sol-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: #fff;
}

.sol-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 20px;
}

.sol-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition), gap 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sol-link:hover {
  gap: 10px;
  color: #fff;
}

/* ===== SOLUTIONS CTA BOX ===== */
.solutions-cta-box {
  background: linear-gradient(145deg, #0f0f1a 0%, #0a0a14 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.solutions-cta-box::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.sol-cta-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.035em;
}

.sol-cta-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.pricing-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(139, 139, 158, 0.38);
}

/* ===== WHY SECTION ===== */
.why-section {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  margin-top: 64px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  animation-delay: var(--delay);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.3s;
}

.why-item:hover .why-icon {
  border-color: rgba(99, 102, 241, 0.25);
  color: rgba(99, 102, 241, 0.7);
  background: rgba(99, 102, 241, 0.05);
}

.why-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
  color: #fff;
}

.why-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.68;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--bg);
}

.faq-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active,
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.active {
  border-color: rgba(99, 102, 241, 0.18);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: var(--font);
  font-size: 0.96rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  letter-spacing: -0.015em;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.28s, color 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #fff;
}

.faq-icon,
.faq-icon svg,
.faq-icon polyline {
  pointer-events: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.25s;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.72;
}

.faq-list-inner {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-list-inner li {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-list-inner strong {
  color: rgba(255, 255, 255, 0.78);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-orb {
  position: absolute;
  width: 900px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.07) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaOrbPulse 6s ease-in-out infinite;
}

@keyframes ctaOrbPulse {

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

  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.cta-inner {
  text-align: center;
  position: relative;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 20px;
  color: #fff;
}

.cta-sub {
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.72;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #fff;
  color: #000;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
}

.btn-cta-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.015em;
}

.btn-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.cta-note {
  font-size: 0.8rem;
  color: rgba(139, 139, 158, 0.42);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  letter-spacing: -0.03em;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.78;
}

.footer-nav-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: rgba(139, 139, 158, 0.48);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.875rem;
  padding: 6px 0;
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.25s;
}

.social-btn:hover {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

.footer-email {
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(139, 139, 158, 0.38);
}

.footer-bottom-right {
  letter-spacing: 0.1em;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(28px);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: none;
}

/* ===== SOLUTIONS PAGE SPECIFIC ===== */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-tab {
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.filter-tab:hover {
  border-color: var(--border-blue);
  color: #fff;
  background: rgba(99, 102, 241, 0.05);
}

.filter-tab.active {
  background: var(--accent2);
  border-color: var(--accent2);
  color: #fff;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.accordion-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.acc-item {
  background: linear-gradient(145deg, #0e0e1a 0%, #09090f 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.acc-item:hover,
.acc-item.open {
  border-color: rgba(99, 102, 241, 0.22);
}

.acc-item.open {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(99, 102, 241, 0.1);
}

.acc-header {
  width: 100%;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: var(--font);
}

.acc-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.acc-meta {
  flex: 1;
}

.acc-badge {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent2);
  margin-bottom: 12px;
}

.acc-title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.acc-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.acc-arrow {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.2s;
  margin-top: 4px;
  font-size: 1.2rem;
}

.acc-item.open .acc-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s ease, padding 0.3s;
}

.acc-item.open .acc-body {
  max-height: 800px;
  padding-bottom: 32px;
}

.acc-body-inner {
  padding: 0 32px;
}

.acc-body-inner p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 20px;
}

.acc-features-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.acc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.acc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.acc-features li::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.acc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.acc-price {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.acc-price span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent2);
}

.acc-price-custom {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent2);
}

.revenue-cta-section {
  background: #040409;
  border-top: 1px solid var(--border);
}

.revenue-cta-section .section-eyebrow {
  text-align: left;
}

.revenue-cta-section .section-heading {
  text-align: left;
  max-width: 600px;
}

/* ===== ABOUT PAGE ===== */
.timeline-item {
  position: relative;
  padding-left: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 3.5px;
  top: 20px;
  width: 1px;
  height: calc(100% + 8px);
  background: linear-gradient(to bottom, rgba(99, 102, 241, 0.3), transparent);
}

.timeline-item:last-child::after {
  display: none;
}

/* ===== CONTACT PAGE ===== */
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08);
  background: rgba(99, 102, 241, 0.03);
}

/* ===== REVENUE SYSTEMS PAGE ===== */
.system-highlight-badge {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .problem-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-grid .solution-card:nth-child(4),
  .solutions-grid .solution-card:nth-child(5) {
    grid-column: auto;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 40px;
  }

  .stat-item+.stat-item::before {
    display: none;
  }
}

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

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }

  .hero-right {
    display: none;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-meta {
    display: none;
  }

  .section-container {
    padding: 80px 24px;
  }

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

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .solutions-cta-box {
    padding: 32px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 36px 24px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .nav-container {
    padding: 0 20px;
  }

  .acc-header {
    padding: 22px 20px;
  }

  .acc-body-inner {
    padding: 0 20px;
  }

  .acc-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .process-grid {
    gap: 32px;
  }

  .section-container {
    padding: 64px 20px;
  }

  .hero-heading {
    font-size: 2.3rem;
  }
}

/* ===== STAGGER ANIMATION HELPERS ===== */
.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.revealed>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}

.stagger-children.revealed>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}

.stagger-children.revealed>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.19s;
}

.stagger-children.revealed>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.26s;
}

.stagger-children.revealed>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.33s;
}

.stagger-children.revealed>*:nth-child(n+6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}

/* ===== GLOW BORDER ANIMATION ===== */
@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(99, 102, 241, 0.15);
  }

  50% {
    border-color: rgba(99, 102, 241, 0.35);
  }
}

.glow-border-animate {
  animation: borderGlow 3s ease-in-out infinite;
}

/* ===== MAGNETIC HOVER ZONE ===== */
.magnetic {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
}

.footer-phone,
.footer-email {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-top: 10px;
}

.footer-phone a,
.footer-email a {
  color: inherit;
  text-decoration: none;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: all .3s ease;
}

.footer-whatsapp:hover {
  border-color: rgba(129,140,248,0.4);
  box-shadow: 0 0 20px rgba(129,140,248,0.15);
}

:root {
  --bg: #050508;
  --bg-card: #08080f;
  --bg-card2: #0d0d16;
  --text: #FFFFFF;
  --muted: #8b8b9e;
}

/* LIGHT MODE */

[data-theme="light"] {
  --bg: #ffffff;
  --bg-card: #f8fafc;
  --bg-card2: #f1f5f9;

  --text: #111827;

  --muted: #64748b;
  --muted-bright: #475569;

  --border: rgba(0,0,0,0.08);
  --border-blue: rgba(99,102,241,0.25);

  --glow: rgba(99,102,241,0.08);

  --shadow-card:
      0 4px 20px rgba(0,0,0,0.08);

  --shadow-hover:
      0 10px 30px rgba(0,0,0,0.12);
}


[data-theme="light"] .problem-card,
[data-theme="light"] .solution-card,
[data-theme="light"] .system-card,
[data-theme="light"] .acc-item,
[data-theme="light"] .why-card,
[data-theme="light"] .form-card {

    background: #ffffff;

    border-color:
    rgba(0,0,0,.08);
}


