/* ============================================================
   Webflow Premium Layer v2
   Pure visual enhancements + scroll-driven extras.
   Works WITH app.js reveal system, never fights it.
   ============================================================ */

/* ----- GLOBAL POLISH ----- */
*{ -webkit-tap-highlight-color:transparent }

/* Enhanced background atmosphere */
body::before {
  background:
    radial-gradient(1400px 700px at 72% -6%, rgba(249,115,22,0.16), transparent 52%),
    radial-gradient(1100px 700px at -6% 10%, rgba(124,58,237,0.09), transparent 52%),
    radial-gradient(900px 500px at 50% 85%, rgba(16,185,129,0.04), transparent 48%),
    linear-gradient(180deg, #09090E 0%, #0B0B12 100%) !important;
}

/* ----- NAV GLASS ----- */
.nav {
  background: rgba(11,11,16,0.55) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-color: rgba(255,255,255,0.06) !important;
}
.nav.is-scrolled {
  background: rgba(10,10,14,0.85) !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6) !important;
}
.nav__links a::after {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1) !important;
  height: 2px !important;
  border-radius: 1px;
}

/* ----- HERO FIXES ----- */

/* Force hero content visible and above background layers */
.hero .hero__copy {
  position: relative;
  z-index: 10;
}
/* Add a dark scrim behind hero text for guaranteed readability */
.hero .hero__copy::before {
  content: "";
  position: absolute;
  inset: -40px -60px -40px -40px;
  background: radial-gradient(ellipse at 30% 50%, rgba(11,11,15,0.6), transparent 75%);
  pointer-events: none;
  z-index: -1;
  border-radius: 40px;
}
.hero__grid {
  position: relative;
  z-index: 5 !important;
}
/* Push background canvases below text */
.hero__bg .mesh-canvas,
.hero__bg .particles-canvas {
  z-index: 1 !important;
  opacity: 0.5;
}
.hero__bg {
  z-index: 0;
}
.hero .hero__copy .eyebrow,
.hero .hero__copy .partner-badge,
.hero .hero__copy .hero-brand-burst,
.hero .hero__copy .display,
.hero .hero__copy .display > span,
.hero .hero__copy .display > span > *,
.hero .hero__copy .lead,
.hero .hero__copy .hero__cta,
.hero .hero__copy .hero__cta > *,
.hero .hero__copy .hero__meta {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Override the reveal-up hidden initial state for hero */
.hero .reveal-up {
  opacity: 1 !important;
  transform: none !important;
}
.hero .reveal-lines > span > * {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero heading: bright white, readable, proper spacing */
.hero .display {
  font-size: clamp(42px, 3vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #FFFFFF !important;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 0 60px rgba(0,0,0,0.3);
}
.hero .display > span {
  display: block;
  overflow: visible;
  color: #FFFFFF;
}
.hero .display > span > * {
  color: #FFFFFF;
}
.hero .reveal-lines > span {
  overflow: visible;
}

/* Dashboard entrance */
.hero__visual {
  animation: heroDashIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
@keyframes heroDashIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Make lead text clearly readable */
.hero .lead {
  color: #d8d8e2 !important;
  font-size: clamp(16px, 1vw, 19px);
  text-shadow: 0 1px 20px rgba(0,0,0,0.4);
}

/* Hero meta text visible */
.hero .hero__meta-text {
  color: #b0b0ba !important;
}
.hero .hero__meta-text b {
  color: #e8e8ee !important;
}

/* Eyebrow clearly visible */
.hero .eyebrow {
  color: #d0d0da !important;
}

/* Darken the left side of hero for text readability */
.hero-video__shade {
  background:
    linear-gradient(90deg, rgba(11,11,15,0.94) 0%, rgba(11,11,15,0.7) 45%, rgba(11,11,15,0.6) 100%),
    linear-gradient(180deg, rgba(11,11,15,0.3) 0%, #0b0b0f 94%) !important;
}

/* Reduce hero video brightness */
.hero-video {
  opacity: 0.25 !important;
}

/* Tone down orbs behind text area */
.hero__bg .orb--1,
.hero__bg .orb--2,
.hero__bg .orb--3 {
  opacity: 0.35 !important;
}
.display em {
  background: linear-gradient(135deg, #FDBA74 0%, #F97316 35%, #EA580C 65%, #FB923C 100%) !important;
  background-size: 250% 250% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  animation: gradShift 5s ease infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero grid alignment */
.hero__grid {
  align-items: center;
}

/* Partner badge pulse */
.partner-badge {
  animation: badgePulse 3.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 14px 40px -24px rgba(249,115,22,0.5); }
  50% { box-shadow: 0 20px 55px -18px rgba(249,115,22,0.7); }
}

/* Eyebrow glow */
.eyebrow {
  background: rgba(249,115,22,0.05) !important;
  border: 1px solid rgba(249,115,22,0.18) !important;
}

/* ----- SECTION REVEAL ENHANCEMENT ----- */
/* Add a soft clip + scale to sections as they enter viewport */
.section {
  transition: none;
}

/* ----- CARD HOVER SPRINGS ----- */
.service,
.why__card,
.feature,
.tcard,
.industry {
  transition: transform 0.65s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.4s ease,
              box-shadow 0.5s ease !important;
  will-change: transform, opacity;
}
.service:hover {
  transform: translateY(-8px) scale(1.015) !important;
  box-shadow: 0 30px 80px -25px rgba(249,115,22,0.25),
              0 0 0 1px rgba(249,115,22,0.12) inset !important;
}
.why__card:hover,
.tcard:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 28px 70px -22px rgba(249,115,22,0.2),
              0 0 0 1px rgba(249,115,22,0.1) inset !important;
}
.feature:hover {
  transform: translateY(-6px) scale(1.01) !important;
}
.industry:hover {
  transform: translateY(-6px) scale(1.03) !important;
  box-shadow: 0 24px 60px -20px rgba(249,115,22,0.28),
              0 0 0 1px rgba(249,115,22,0.15) inset !important;
}

/* Card glass backdrop */
.service, .why__card, .feature, .tcard, .industry {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ----- BUTTON UPGRADES ----- */
.btn--primary {
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.4s ease !important;
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset,
              0 22px 50px -8px rgba(249,115,22,0.6) !important;
}
.btn--primary:active {
  transform: translateY(0) scale(0.97) !important;
  transition-duration: 0.15s !important;
}
.btn--ghost {
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
              background 0.35s ease,
              border-color 0.35s ease !important;
}
.btn--ghost:hover {
  transform: translateY(-2px) !important;
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(249,115,22,0.35) !important;
}

/* ----- SCROLL PROGRESS ----- */
.scroll-progress {
  height: 3px !important;
  box-shadow: 0 0 14px rgba(249,115,22,0.5);
}

/* ----- PINNED TIMELINE ----- */
.timeline-pinned .step {
  opacity: 0.3;
  transform: translateY(6px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.timeline-pinned .step.is-active {
  opacity: 1;
  transform: translateY(0);
}
.timeline-pinned .step.is-active h4 {
  color: var(--orange);
}
.timeline-pinned .step.is-active .step__dot {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(249,115,22,0.4);
}
.timeline-pinned .step.is-active .step__dot::after {
  transform: scale(1.4);
  box-shadow: 0 0 16px var(--orange-glow), 0 0 40px rgba(249,115,22,0.2);
}
.timeline__progress {
  position: absolute;
  top: 24px;
  left: 0;
  height: 2px;
  background: var(--grad-orange);
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(249,115,22,0.5);
  z-index: 2;
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}

/* ----- HERO STAT TICK ANIMATION ----- */
.hero__stats-grid b {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              color 0.35s ease;
}
.hero__stats-grid b.is-tick {
  transform: scale(1.08);
  color: var(--orange) !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  background: none !important;
}
.footer__cta {
  position: relative;
}
.footer__cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 550px; height: 280px;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(249,115,22,0.1), transparent 68%);
  animation: ctaGlow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes ctaGlow {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%,-50%) scale(1.12); opacity: 0.85; }
}

/* ----- LOADER POLISH ----- */
.loader { background: #08080C !important; }
.loader__inner { gap: 22px !important; }
.loader__bar { width: 200px !important; height: 3px !important; background: rgba(255,255,255,0.05) !important; }

/* ----- ORB UPGRADES ----- */
.orb--1 { width: 580px !important; height: 580px !important; filter: blur(100px) !important; }
.orb--2 { width: 660px !important; height: 660px !important; filter: blur(110px) !important; }
.orb--3 { width: 420px !important; height: 420px !important; filter: blur(90px) !important; }

/* ----- FAQ POLISH ----- */
.faq__q i {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s ease;
}
.faq__item.is-open .faq__q i {
  transform: rotate(45deg);
}
.faq__a {
  transition: max-height 0.55s cubic-bezier(0.16,1,0.3,1) !important;
}

/* ----- MARQUEE HOVER ----- */
.marquee__item {
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.marquee__item:hover {
  transform: scale(1.06) !important;
  opacity: 1 !important;
}

/* ----- CONTACT FORM GLASS ----- */
.contact__form {
  backdrop-filter: blur(28px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(150%) !important;
}
.field .line {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.field input:focus ~ .line,
.field select:focus ~ .line,
.field textarea:focus ~ .line {
  transform: scaleX(1);
}

/* ----- FOOTER ----- */
.footer {
  background: linear-gradient(180deg, transparent, rgba(249,115,22,0.02) 40%, rgba(11,11,15,0.96)) !important;
}

/* ----- HERO FEED PANEL ----- */
.hero-feed {
  border-radius: 22px !important;
  box-shadow: 0 36px 90px -36px rgba(249,115,22,0.4),
              0 0 0 1px rgba(255,255,255,0.04) inset !important;
}

/* ----- SCROLL INDICATOR ----- */
.scroll-indicator {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 50;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.scroll-indicator svg {
  opacity: 0.5;
}
.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}
.scroll-indicator .sdot {
  animation: scrollDot 2s ease-in-out infinite;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .hero .display { font-size: clamp(36px, 8vw, 56px); }
  .services { grid-template-columns: 1fr 1fr !important; }
  .industries { grid-template-columns: repeat(3,1fr) !important; }
  .why { grid-template-columns: 1fr 1fr !important; }
  .features { grid-template-columns: 1fr 1fr !important; }
  .timeline { grid-template-columns: repeat(4,1fr) !important; }
}
@media (max-width: 600px) {
  .hero .display { font-size: clamp(32px, 9vw, 44px); }
  .services { grid-template-columns: 1fr !important; }
  .industries { grid-template-columns: 1fr 1fr !important; }
  .why { grid-template-columns: 1fr !important; }
  .features { grid-template-columns: 1fr 1fr !important; }
  .timeline { grid-template-columns: 1fr 1fr !important; }
  .testimonials { grid-template-columns: 1fr !important; }
  .hero__stats-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
  .timeline-pinned .step { opacity: 1; transform: none; }
}


/* ==========================================================
   MEGA ORBIT — merged tech + modules in one diagram
   ========================================================== */
.mega-orbit {
  position: relative;
  width: 580px;
  height: 580px;
  margin: 70px auto 0;
}
.mega-orbit__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: grid; place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 18px;
  color: #fff; letter-spacing: -0.02em;
  box-shadow: 0 0 80px rgba(249,115,22,0.6), 0 0 160px rgba(249,115,22,0.2);
  z-index: 3;
  animation: megaCenterPulse 4s ease-in-out infinite;
}
@keyframes megaCenterPulse {
  0%, 100% { box-shadow: 0 0 80px rgba(249,115,22,0.6), 0 0 160px rgba(249,115,22,0.2); transform: translate(-50%,-50%) scale(1); }
  50% { box-shadow: 0 0 100px rgba(249,115,22,0.8), 0 0 200px rgba(249,115,22,0.3); transform: translate(-50%,-50%) scale(1.05); }
}
.mega-orbit__ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.mega-orbit__ring--1 {
  width: 280px; height: 280px;
  transform: translate(-50%, -50%);
  border-style: dashed;
  border-color: rgba(249,115,22,0.22);
  animation: orbitSpin 28s linear infinite;
}
.mega-orbit__ring--2 {
  width: 440px; height: 440px;
  transform: translate(-50%, -50%);
  border-color: rgba(255,255,255,0.07);
  animation: orbitSpin 50s linear infinite reverse;
}
.mega-orbit__ring--3 {
  width: 560px; height: 560px;
  transform: translate(-50%, -50%);
  border-color: rgba(255,255,255,0.04);
  animation: orbitSpin 70s linear infinite;
}
.mega-orbit__node {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%)
    rotate(var(--angle)) translateX(var(--dist)) rotate(calc(-1 * var(--angle)));
  z-index: 2;
  will-change: transform, opacity;
}
/* Module nodes (inner) — orange accent */
.mega-orbit__node--mod span {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(249,115,22,0.08);
  border: 1.5px solid rgba(249,115,22,0.35);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--orange-2);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
}
.mega-orbit__node--mod span:hover {
  transform: scale(1.2);
  border-color: var(--orange);
  background: rgba(249,115,22,0.18);
  box-shadow: 0 0 28px rgba(249,115,22,0.4);
  color: #fff;
}
/* Tech nodes (outer) — subtle */
.mega-orbit__node--tech span {
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 600;
  color: var(--ink-2);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
}
.mega-orbit__node--tech span:hover {
  transform: scale(1.15);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 22px rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: #fff;
}
/* Ambient glow behind center */
.mega-orbit::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 200px; height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.1), transparent 70%);
  animation: megaGlow 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes megaGlow {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.8); opacity: 0.2; }
}

/* Responsive */
@media (max-width: 640px) {
  .mega-orbit { width: 340px; height: 340px; }
  .mega-orbit__center { width: 80px; height: 80px; font-size: 14px; }
  .mega-orbit__node--mod span { width: 38px; height: 38px; font-size: 9px; }
  .mega-orbit__node--tech span { width: 42px; height: 42px; font-size: 8px; }
  .mega-orbit__node--mod { --dist: 80px !important; }
  .mega-orbit__node--tech { --dist: 150px !important; }
  .mega-orbit__ring--1 { width: 170px; height: 170px; }
  .mega-orbit__ring--2 { width: 260px; height: 260px; }
  .mega-orbit__ring--3 { width: 320px; height: 320px; }
}
.tech-orbit {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 60px auto 0;
}
.tech-orbit__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: grid; place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 14px;
  text-align: center; color: #fff;
  line-height: 1.3;
  box-shadow: 0 0 60px rgba(249,115,22,0.5), 0 0 120px rgba(249,115,22,0.2);
  z-index: 3;
}
.tech-orbit__ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.tech-orbit__ring--1 {
  width: 240px; height: 240px;
  transform: translate(-50%, -50%);
  border-style: dashed;
  border-color: rgba(249,115,22,0.2);
}
.tech-orbit__ring--2 {
  width: 340px; height: 340px;
  transform: translate(-50%, -50%);
  border-color: rgba(255,255,255,0.06);
}
.tech-orbit__node {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%)
    rotate(var(--angle)) translateX(var(--distance)) rotate(calc(-1 * var(--angle)));
  z-index: 2;
}
.tech-orbit__node span {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  color: var(--ink-2);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              background 0.4s ease;
}
.tech-orbit__node span:hover {
  transform: scale(1.15);
  border-color: var(--orange);
  box-shadow: 0 0 24px rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.1);
  color: #fff;
}

/* Slow rotation animation */
@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.tech-orbit__ring--1 {
  animation: orbitSpin 30s linear infinite;
}
.tech-orbit__ring--2 {
  animation: orbitSpin 45s linear infinite reverse;
}

/* Center pulse glow */
@keyframes centerPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(249,115,22,0.5), 0 0 120px rgba(249,115,22,0.2); }
  50% { box-shadow: 0 0 80px rgba(249,115,22,0.7), 0 0 160px rgba(249,115,22,0.3); }
}
.tech-orbit__center {
  animation: centerPulse 3s ease-in-out infinite;
}

/* Node entry animation class */
.tech-orbit__node,
.erp-orbit__node {
  will-change: transform, opacity;
}

/* Connection lines that appear on hover */
.tech-orbit::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    80px -60px 0 rgba(249,115,22,0.15),
    -70px 50px 0 rgba(249,115,22,0.1),
    40px 80px 0 rgba(249,115,22,0.12),
    -90px -30px 0 rgba(249,115,22,0.08);
  pointer-events: none;
  animation: dotPulse 4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ==========================================================
   VERTICAL TIMELINE — process steps
   ========================================================== */
.vtimeline {
  position: relative;
  max-width: 620px;
  margin: 60px auto 0;
  padding-left: 40px;
}
.vtimeline__line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.vtimeline__progress {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: var(--grad-orange);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(249,115,22,0.5);
  transition: height 0.3s ease;
}
.vtimeline__item {
  position: relative;
  padding: 0 0 40px 30px;
}
.vtimeline__item:last-child {
  padding-bottom: 0;
}
.vtimeline__dot {
  position: absolute;
  left: -25px;
  top: 4px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  z-index: 2;
  transition: border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}
.vtimeline__dot span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--ink-3);
  transition: color 0.4s ease;
}
.vtimeline__item.is-active .vtimeline__dot {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 20px rgba(249,115,22,0.5);
}
.vtimeline__item.is-active .vtimeline__dot span {
  color: #fff;
}
.vtimeline__card {
  padding: 22px 28px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.5s ease;
}
.vtimeline__item.is-active .vtimeline__card {
  border-color: rgba(249,115,22,0.3);
  transform: translateX(8px);
  box-shadow: 0 20px 50px -20px rgba(249,115,22,0.2);
}
/* Card hover effect */
.vtimeline__card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateX(4px) translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.4);
}
/* Line glow when active */
.vtimeline__item.is-active .vtimeline__dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(249,115,22,0.2);
  animation: dotRing 2s ease-in-out infinite;
}
@keyframes dotRing {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0; }
}
.vtimeline__card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 16px;
  margin: 0 0 8px; color: var(--ink);
  letter-spacing: -0.01em;
}
.vtimeline__card p {
  margin: 0;
  font-size: 13.5px; color: var(--ink-3);
  line-height: 1.6;
}

/* ==========================================================
   ERP ORBIT — solar system with modules
   ========================================================== */
.erp-orbit {
  position: relative;
  width: 560px;
  height: 560px;
  margin: 60px auto 0;
}
.erp-orbit__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: grid; place-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 28px;
  color: #fff; letter-spacing: -0.02em;
  box-shadow: 0 0 80px rgba(249,115,22,0.55), 0 0 160px rgba(249,115,22,0.2);
  z-index: 3;
}
.erp-orbit__ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.erp-orbit__ring--1 {
  width: 240px; height: 240px;
  transform: translate(-50%, -50%);
  border-style: dashed;
  border-color: rgba(249,115,22,0.18);
  animation: orbitSpin 25s linear infinite;
}
.erp-orbit__ring--2 {
  width: 380px; height: 380px;
  transform: translate(-50%, -50%);
  border-color: rgba(255,255,255,0.06);
  animation: orbitSpin 40s linear infinite reverse;
}
.erp-orbit__ring--3 {
  width: 520px; height: 520px;
  transform: translate(-50%, -50%);
  border-color: rgba(255,255,255,0.04);
  animation: orbitSpin 55s linear infinite;
}

/* ERP center pulse */
.erp-orbit__center {
  animation: erpCenterPulse 4s ease-in-out infinite;
}
@keyframes erpCenterPulse {
  0%, 100% { box-shadow: 0 0 80px rgba(249,115,22,0.55), 0 0 160px rgba(249,115,22,0.2); transform: translate(-50%,-50%) scale(1); }
  50% { box-shadow: 0 0 100px rgba(249,115,22,0.75), 0 0 200px rgba(249,115,22,0.3); transform: translate(-50%,-50%) scale(1.04); }
}

/* ERP floating particles around center */
.erp-orbit::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 180px; height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.08), transparent 70%);
  animation: erpGlow 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes erpGlow {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.5); opacity: 0.3; }
}
.erp-orbit__node {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%)
    rotate(var(--angle)) translateX(var(--dist)) rotate(calc(-1 * var(--angle)));
  z-index: 2;
}
.erp-orbit__node span {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(20,20,28,0.8);
  border: 1px solid rgba(255,255,255,0.14);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--orange-2);
  letter-spacing: 0.02em;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.erp-orbit__node span:hover {
  transform: scale(1.2);
  border-color: var(--orange);
  box-shadow: 0 0 30px rgba(249,115,22,0.35);
  color: #fff;
}

/* Responsive orbit sections */
@media (max-width: 600px) {
  .tech-orbit { width: 300px; height: 300px; }
  .tech-orbit__node { --distance: 100px !important; }
  .tech-orbit__node span { width: 50px; height: 50px; font-size: 9px; }
  .tech-orbit__center { width: 80px; height: 80px; font-size: 11px; }
  .tech-orbit__ring--1 { width: 170px; height: 170px; }
  .tech-orbit__ring--2 { width: 240px; height: 240px; }

  .erp-orbit { width: 320px; height: 320px; }
  .erp-orbit__node { --dist: 80px !important; }
  .erp-orbit__node span { width: 42px; height: 42px; font-size: 9px; }
  .erp-orbit__center { width: 90px; height: 90px; font-size: 22px; }
  .erp-orbit__ring--1 { width: 160px; height: 160px; }
  .erp-orbit__ring--2 { width: 240px; height: 240px; }
  .erp-orbit__ring--3 { width: 300px; height: 300px; }

  .vtimeline { padding-left: 30px; }
}


/* ==========================================================
   VISIBILITY FIX — ensure all content is readable
   ========================================================== */

/* Apple-style word reveal base */
.apple-word {
  display: inline-block;
  will-change: opacity;
}

/* Nav compact mode (Apple shrink on scroll) */
.nav.is-compact {
  height: 52px !important;
  padding: 0 10px 0 14px !important;
  background: rgba(10,10,14,0.88) !important;
  border-color: rgba(255,255,255,0.06) !important;
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.6) !important;
  transition: height 0.4s cubic-bezier(0.16,1,0.3,1),
              padding 0.4s cubic-bezier(0.16,1,0.3,1),
              background 0.35s ease,
              box-shadow 0.35s ease !important;
}
.nav.is-compact .nav__logo--image {
  width: 36px !important;
  height: 36px !important;
}
.nav.is-compact .nav__links a {
  padding: 8px 12px !important;
  font-size: 13px !important;
}
.nav.is-compact .nav__cta .btn {
  padding: 8px 14px !important;
  font-size: 12px !important;
}

/* Ensure card text readability */
.service h3,
.why__card h4,
.feature h4,
.industry__name {
  color: #FFFFFF !important;
}
.service p,
.why__card p,
.feature p {
  color: var(--ink-2) !important;
}
.service__link {
  color: #FDBA74 !important;
}
.tcard__quote {
  color: var(--ink) !important;
}
.tcard__author b {
  color: var(--ink) !important;
}
.faq__q {
  color: var(--ink) !important;
}
.faq__a-inner {
  color: var(--ink-2) !important;
}

/* Section lead text always visible */
.section__lead {
  color: var(--ink-2) !important;
}