/* ============================================================
   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;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
              background 0.4s ease,
              border-color 0.3s ease,
              box-shadow 0.4s ease,
              height 0.4s cubic-bezier(0.16,1,0.3,1),
              padding 0.4s cubic-bezier(0.16,1,0.3,1) !important;
}
.nav.is-scrolled {
  background: rgba(10,10,14,0.88) !important;
  border-color: rgba(255,255,255,0.08) !important;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6) !important;
}
.nav.is-hidden {
  transform: translateX(-50%) translateY(-120%) !important;
  transition: transform 0.4s cubic-bezier(0.7,0,0.3,1) !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: 54px !important;
  padding: 0 12px 0 16px !important;
  background: rgba(10,10,14,0.92) !important;
  border-color: rgba(255,255,255,0.06) !important;
  box-shadow: 0 14px 40px -16px rgba(0,0,0,0.5) !important;
}
.nav.is-compact .nav__logo--image {
  width: 64px !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;
}

/* Nav elements smooth transitions */
.nav__logo--image {
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1), height 0.4s cubic-bezier(0.16,1,0.3,1) !important;
}
.nav__links a {
  transition: padding 0.3s ease, font-size 0.3s ease, color 0.25s ease !important;
}
.nav__cta .btn {
  transition: padding 0.3s ease, font-size 0.3s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease !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;
}


/* ==========================================================
   FRAPPE PRODUCT CARDS in runway
   ========================================================== */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  min-width: 220px;
  border-radius: 18px;
  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);
  margin: 0;
  overflow: visible;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.photo-runway .product-card {
  width: 200px;
  height: auto !important;
  min-height: auto !important;
  aspect-ratio: auto !important;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5);
}
.product-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: rgba(255,255,255,0.03);
  display: block;
}
.product-card figcaption,
.photo-runway .product-card figcaption,
.photo-runway__track .product-card figcaption {
  position: static !important;
  padding: 14px 16px !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  text-align: center !important;
  width: 100% !important;
  display: block !important;
  opacity: 1 !important;
  left: auto !important;
  bottom: auto !important;
  right: auto !important;
  top: auto !important;
}

/* Infinite scrolling marquee for product cards */
.photo-runway .photo-runway__track {
  animation: productMarquee 25s linear infinite !important;
}
@keyframes productMarquee {
  to { transform: translateX(-50%); }
}

/* Override base figure styles for product cards */
.photo-runway figure.product-card {
  width: 200px !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  transform: none !important;
  flex: 0 0 200px !important;
}


/* ==========================================================
   FRAPPEVERSE — scattered pills + orbiting stars
   ========================================================== */
.fverse {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 700px;
  margin: 60px auto 0;
  border-radius: 0;
  background: none;
  border: none;
}

/* Center text */
.fverse__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}
.fverse__title {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  letter-spacing: -0.03em;
}
.fverse__sub {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* Orbit rings (visual guides) */
.fverse__ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.fverse__ring--1 {
  width: 500px; height: 400px;
  transform: translate(-50%, -50%) rotate(-5deg);
  border-color: rgba(255,255,255,0.06);
}
.fverse__ring--2 {
  width: 850px; height: 620px;
  transform: translate(-50%, -50%) rotate(3deg);
  border-style: dashed;
  border-color: rgba(255,255,255,0.04);
}

/* Sparkling stars */
.fverse__star {
  position: absolute;
  font-size: 16px;
  color: #F97316;
  z-index: 4;
  animation: starTwinkle 2.5s ease-in-out infinite, starFloat 6s ease-in-out infinite;
}
.fverse__star--sm {
  font-size: 10px;
  opacity: 0.6;
  animation-duration: 3.5s, 9s;
}
@keyframes starTwinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}
@keyframes starFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-6px) translateX(3px); }
  66% { transform: translateY(3px) translateX(-4px); }
}

/* PLANET — each item orbits around center using rotate+translate+counter-rotate */
.fverse__planet {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  z-index: 3;
  animation: planetOrbit var(--speed) linear infinite;
  animation-delay: calc(var(--start) / 360 * var(--speed) * -1);
}
.fverse__planet span {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%) translateX(calc(var(--orbit-size) / 2));
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  backdrop-filter: blur(4px);
  animation: planetCounterRotate var(--speed) linear infinite;
  animation-delay: calc(var(--start) / 360 * var(--speed) * -1);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.fverse__planet span:hover {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.4);
  color: #fff;
}

@keyframes planetOrbit {
  from { transform: translate(-50%, -50%) rotate(var(--start)); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--start) + 360deg)); }
}
@keyframes planetCounterRotate {
  from { transform: translate(-50%, -50%) translateX(calc(var(--orbit-size) / 2)) rotate(calc(-1 * var(--start))); }
  to { transform: translate(-50%, -50%) translateX(calc(var(--orbit-size) / 2)) rotate(calc(-1 * var(--start) - 360deg)); }
}

/* Responsive */
@media (max-width: 800px) {
  .fverse { height: 550px; }
  .fverse__planet span { font-size: 11px; padding: 6px 12px; }
  .fverse__planet { --orbit-size: 200px !important; }
  .fverse__planet--outer { --orbit-size: 320px !important; }
  .fverse__ring--1 { width: 380px; height: 300px; }
  .fverse__ring--2 { width: 620px; height: 460px; }
}
@media (max-width: 500px) {
  .fverse { height: 440px; }
  .fverse__planet span { font-size: 9px; padding: 5px 9px; }
  .fverse__planet { --orbit-size: 140px !important; }
  .fverse__planet--outer { --orbit-size: 220px !important; }
  .fverse__title { font-size: 22px; }
  .fverse__ring--2 { display: none; }
}


/* ==========================================================
   MOBILE RESPONSIVE — Full mobile-first overrides
   ========================================================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .container { padding: 0 20px !important; }
  .hero { padding: 130px 0 60px !important; }
  .hero__grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .hero__visual { display: none; }
  .hero .display { font-size: clamp(36px, 6vw, 56px) !important; }
  .section { padding: 100px 0 !important; }
  .section__head--split { grid-template-columns: 1fr !important; gap: 20px !important; }
  .services { grid-template-columns: 1fr 1fr !important; }
  .industries { grid-template-columns: repeat(3, 1fr) !important; }
  .why { grid-template-columns: 1fr 1fr !important; }
  .testimonials { grid-template-columns: 1fr 1fr !important; }
  .contact__grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .footer__grid { grid-template-columns: 1fr 1fr !important; gap: 30px !important; }
  .nav__links { display: none !important; }
  .nav__cta .btn--ghost { display: none !important; }
  .nav__burger { display: flex !important; }
}

/* Mobile: below 768px */
@media (max-width: 768px) {
  .container { padding: 0 16px !important; }
  
  /* Hero */
  .hero { padding: 100px 0 40px !important; }
  .hero .display { 
    font-size: clamp(28px, 8vw, 42px) !important;
    line-height: 1.15 !important;
    margin-bottom: 18px !important;
  }
  .hero .lead { font-size: 15px !important; margin-bottom: 24px !important; }
  .hero__cta { flex-direction: column !important; gap: 10px !important; }
  .hero__cta .btn { width: 100% !important; justify-content: center !important; }
  .hero__meta { flex-wrap: wrap !important; }
  .hero__stats-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; padding: 24px 16px !important; }
  .hero__stats-grid > div { padding: 0 12px !important; }
  .hero__stats-grid b { font-size: clamp(28px, 6vw, 40px) !important; }
  .partner-badge { display: none !important; }
  .hero-brand-burst { display: none !important; }
  .hero__visual { display: none !important; }
  
  /* Nav */
  .nav { width: calc(100% - 20px) !important; top: 10px !important; height: 56px !important; padding: 0 12px !important; }
  .nav__links { display: none !important; }
  .nav__cta .btn--ghost { display: none !important; }
  .nav__cta .btn--primary { padding: 8px 14px !important; font-size: 12px !important; }
  .nav__burger { display: flex !important; }
  .nav__wordmark b { font-size: 13px !important; }
  .nav__logo--image { width: 64px !important; height: 34px !important; }
  
  /* Sections */
  .section { padding: 60px 0 !important; }
  .section__head { margin-bottom: 30px !important; }
  .h2 { font-size: clamp(26px, 6vw, 38px) !important; }
  .section__lead { font-size: 14px !important; }
  .eyebrow { font-size: 10px !important; padding: 6px 10px !important; margin-bottom: 30px; }
  
  /* Services */
  .services { grid-template-columns: 1fr !important; gap: 14px !important; }
  .service { padding: 20px !important; }
  .service h3 { font-size: 16px !important; }
  .service p { font-size: 13px !important; }
  
  /* Industries */
  .industries { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .industry { padding: 14px !important; aspect-ratio: auto !important; min-height: 90px !important; }
  .industry__name { font-size: 14px !important; }
  
  /* Why */
  .why { grid-template-columns: 1fr !important; gap: 12px !important; }
  
  /* Vertical Timeline */
  .vtimeline { padding-left: 28px !important; margin-top: 30px !important; }
  .vtimeline__dot { width: 28px !important; height: 28px !important; left: -22px !important; }
  .vtimeline__card { padding: 18px 20px !important; }
  .vtimeline__card h4 { font-size: 15px !important; }
  .vtimeline__card p { font-size: 12px !important; }
  
  /* Frappeverse orbit — disable orbiting, show as wrapped pills */
  .fverse { 
    height: auto !important; 
    min-height: auto !important;
    padding: 30px 16px !important; 
    display: block !important;
    text-align: center !important;
  }
  .fverse__center { 
    position: relative !important; 
    top: auto !important; left: auto !important; 
    transform: none !important; 
    margin: 0 auto 20px !important; 
  }
  .fverse__ring { display: none !important; }
  .fverse__star { display: none !important; }
  .fverse__planet { 
    position: relative !important;
    top: auto !important; left: auto !important;
    width: auto !important; height: auto !important;
    display: inline-block !important;
    animation: none !important;
    margin: 4px !important;
  }
  .fverse__planet span {
    position: relative !important;
    top: auto !important; left: auto !important;
    transform: none !important;
    animation: none !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 8px 14px !important;
    font-size: 12px !important;
  }
  
  /* Product runway */
  .photo-runway { border-radius: 16px !important; margin-top: 20px !important; }
  .photo-runway figure.product-card { width: 150px !important; flex: 0 0 150px !important; min-width: 150px !important; }
  .product-card__img { height: 90px !important; }
  
  /* Photo stack */
  .media-lab__grid--single { display: none !important; }
  
  /* Testimonials */
  .testimonials { grid-template-columns: 1fr !important; gap: 14px !important; }
  
  /* FAQ */
  .faq__wrap { flex-direction: column !important; }
  .faq__q { font-size: 14px !important; padding: 16px 14px !important; }
  
  /* Contact */
  .contact { overflow: hidden !important; }
  .contact__bg { display: none !important; }
  .contact__grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .contact__form { padding: 24px 18px !important; border-radius: 18px !important; }
  .contact__copy { text-align: center; }
  .contact__list { display: flex; flex-direction: column; }
  .contact__list li {
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-direction: row;
    align-content: stretch;
    justify-content: flex-start;
}
.contact__list b {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
    text-align: left;
}
  
  /* Footer */
  .footer__grid { grid-template-columns: 1fr !important; gap: 30px !important; text-align: center; }
  .footer__cta .h2 { font-size: clamp(22px, 5.5vw, 32px) !important; }
  .footer__cta { text-align: center; padding: 40px 0 !important; }
  .footer__bottom { flex-direction: column !important; gap: 16px !important; text-align: center; }
  .footer__news { flex-direction: column !important; gap: 10px !important; }
  .footer__news input { width: 100% !important; }
  .footer__brand p { font-size: 13px !important; }
  .footer__brand .nav__brand { justify-content: center !important; }
  .footer__brand .nav__logo--image { width: 64px !important; height: 40px !important; }
  .socials { justify-content: center !important; }
  
  /* FAQ section fix */
  .faq .faq__item { opacity: 1 !important; transform: none !important; }
  #faq .h2, #faq .section__lead, #faq .eyebrow { opacity: 1 !important; color: var(--ink) !important; }
  
  /* Overflow fix for full page */
  body, html { overflow-x: hidden !important; }
  
  /* Buttons */
  .btn--lg { padding: 14px 20px !important; font-size: 14px !important; }
  
  /* Trusted marquee */
  .marquee__item { font-size: 16px !important; }
  
  /* WhatsApp + totop buttons */
  .wa { bottom: 20px !important; right: 16px !important; width: 48px !important; height: 48px !important; }
  .totop { bottom: 74px !important; right: 16px !important; width: 40px !important; height: 40px !important; }
  
  /* Hide non-essential on mobile */
  .scroll-indicator { display: none !important; }
  .motion-meter { display: none !important; }
  .cursor, .cursor-dot { display: none !important; }
  
  /* Cookie bar */
  .cookie { flex-direction: column !important; gap: 10px !important; padding: 14px !important; font-size: 12px !important; }
}

/* Small mobile: below 400px */
@media (max-width: 400px) {
  .hero .display { font-size: 26px !important; }
  .h2 { font-size: 24px !important; }
  .industries { grid-template-columns: 1fr !important; }
  .hero__stats-grid { grid-template-columns: 1fr 1fr !important; }
  .hero__stats-grid b { font-size: 26px !important; }
  .nav__cta .btn--primary { display: none !important; }
  .fverse { height: 320px !important; }
  .fverse__planet { --orbit-size: 100px !important; }
  .fverse__planet--outer { --orbit-size: 150px !important; }
  .fverse__planet span { font-size: 8px !important; padding: 4px 6px !important; }
}