:root {
  --bg: #06070b;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: #0b0f16;
  --panel-3: #101520;
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.68);
  --soft: rgba(245, 247, 251, 0.45);
  --border: rgba(255, 255, 255, 0.1);
  --yellow: #facc15;
  --cyan: #22d3ee;
  --green: #34d399;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(250, 204, 21, 0.08), transparent 30%),
    linear-gradient(180deg, #07080d 0%, #06070b 100%);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.bg-grid,
.bg-sweep,
.orb,
.orb-2,
.orb-3 {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.08;
}

.bg-sweep::before {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  filter: blur(12px);
  animation: sweep 12s linear infinite;
}

.orb::before,
.orb-2::before,
.orb-3::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.8;
}

.orb::before {
  width: 520px;
  height: 520px;
  left: 50%;
  top: -140px;
  transform: translateX(-50%);
  background: rgba(250, 204, 21, 0.12);
  animation: float1 12s ease-in-out infinite;
}

.orb-2::before {
  width: 320px;
  height: 320px;
  right: -60px;
  top: 240px;
  background: rgba(34, 211, 238, 0.1);
  animation: float2 11s ease-in-out infinite;
}

.orb-3::before {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 740px;
  background: rgba(255, 255, 255, 0.06);
  animation: float3 13s ease-in-out infinite;
}

.container {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(6, 7, 11, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand-kicker {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--soft);
}

.brand-title {
  margin-top: 6px;
  font-weight: 650;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

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

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

.btn {
  
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateX(-140%);
  transition: transform 0.75s ease;
}

.btn:hover::before {
  transform: translateX(140%);
}

.btn-primary {
  color: #000;
  background: var(--yellow);
  border: none;
  box-shadow: 0 18px 60px rgba(250, 204, 21, 0.2);
  pointer-events: auto;
}

.btn-primary::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
}

.btn-secondary::before {
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.2), transparent);
}

.btn .arrow,
.btn .arrow-up {
  display: inline-block;
  transition: transform 0.22s ease;
}

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

.btn:hover .arrow-up {
  transform: translate(4px, -2px) rotate(-8deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.45);
  animation: pulseDot 2s ease-in-out infinite;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}


.hero h1 {
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 25px;
  font-size: clamp(20px, 5.5vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #fff;
}

.hero-copy {
  margin-top: 20px;
  margin-left: 75px;
  max-width: 900px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  border-radius: 999px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.hero-visual {
  
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.7;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.08), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(250, 204, 21, 0.07), transparent 24%),
    linear-gradient(180deg, #040507 0%, #05070b 100%);
  isolation: isolate;
}

.hero-grid {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 11;
}

/* Main drifting glow field */
.hero-bg {
  position: absolute;
  inset: -18%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(34, 211, 238, 0.28), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(250, 204, 21, 0.20), transparent 20%),
    radial-gradient(circle at 72% 72%, rgba(34, 211, 238, 0.16), transparent 24%),
    radial-gradient(circle at 28% 78%, rgba(250, 204, 21, 0.11), transparent 22%),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.04), transparent 18%);
  filter: blur(78px) saturate(120%);
  transform: scale(1.05);
  animation: heroBlobMove 14s ease-in-out infinite alternate;
}

/* Mesh / field motion */
.hero::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.055) 1px, transparent 1px);
  background-size: 88px 88px;
  transform: perspective(1200px) rotateX(74deg) scale(1.45);
  transform-origin: center center;
  animation: heroGridMove 18s linear infinite;
  mask-image: radial-gradient(circle at center, black 38%, transparent 92%);
  -webkit-mask-image: radial-gradient(circle at center, black 38%, transparent 92%);
}

/* Sweeping premium light */
.hero::after {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.7;
  background:
    linear-gradient(
      115deg,
      transparent 18%,
      rgba(255, 255, 255, 0.02) 28%,
      rgba(34, 211, 238, 0.07) 40%,
      transparent 52%,
      rgba(250, 204, 21, 0.05) 64%,
      transparent 78%
    );
  filter: blur(20px);
  animation: heroSweep 9s ease-in-out infinite;
}

/* Readability overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.14), transparent 30%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.62));
  animation: heroOverlayFloat 10s ease-in-out infinite alternate;
}

/* Text alignment */
.hero .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}

.hero h1 {
  max-width: 1100px;
  margin: 0 auto;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  font-weight: 700;
  text-wrap: balance;
}

.hero-copy {
  margin: 26px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Optional tiny shimmer on pills inside hero only */
.hero .pill {
  border-radius: 999px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  backdrop-filter: blur(8px);
}

/* Animations */
@keyframes heroBlobMove {
  0% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.11) translate3d(-18px, -14px, 0);
  }
  100% {
    transform: scale(1.16) translate3d(22px, 18px, 0);
  }
}

@keyframes heroGridMove {
  0% {
    transform: perspective(1200px) rotateX(74deg) scale(1.45) translateY(0);
  }
  100% {
    transform: perspective(1200px) rotateX(74deg) scale(1.45) translateY(-88px);
  }
}

@keyframes heroSweep {
  0% {
    transform: translateX(-8%) translateY(0);
  }
  50% {
    transform: translateX(4%) translateY(-1.5%);
  }
  100% {
    transform: translateX(12%) translateY(1%);
  }
}

@keyframes heroOverlayFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 24px;
    min-height: 92vh;
  }

  .hero-grid {
    min-height: 92vh;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.7;
    max-width: 680px;
  }
}






.float-card,
.float-card-2 {
  position: absolute;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.float-card {
  right: -18px;
  top: 56px;
  border-radius: 24px;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(34, 211, 238, 0.1);
  animation: float4 6s ease-in-out infinite;
}

.float-card-2 {
  left: -14px;
  bottom: 44px;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(250, 204, 21, 0.1);
  animation: float5 5.5s ease-in-out infinite;
}

.demo-frame {
  position: relative;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 34px 90px rgba(0,0,0,0.34);
  padding: 18px;
  transform-style: preserve-3d;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.demo-frame:hover {
  transform: translateY(-6px) rotateX(1.5deg) rotateY(-1.5deg);
  box-shadow: 0 40px 110px rgba(0,0,0,0.42);
}

.demo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(34,211,238,0.08), transparent 22%),
    radial-gradient(circle at bottom left, rgba(250,204,21,0.08), transparent 20%);
}

.demo-inner::before,
.demo-inner::after,
.browser::before,
.browser::after,
.browser-inner::before,
.browser-inner::after {
  pointer-events: none;
}

.demo-inner {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, #08101d 0%, #0a0f18 100%);
}

.demo-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}


.demo-label,
.panel-kicker,
.section-kicker,
.mini-kicker,
.timeline-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--soft);
}

.demo-title {
  margin-top: 6px;
  font-weight: 600;
}

.live-badge {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: #9ff5ca;
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.1);
  box-shadow: 0 0 0 rgba(52, 211, 153, 0);
  animation: livePulse 2.4s ease-in-out infinite;
}

.demo-body {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.panel {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(13,20,32,0.98), rgba(12,18,28,0.98));
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}


.panel:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
}

.panel-title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
}

.panel-copy {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.live-url {
  border: 1px dashed rgba(250,204,21,0.22);
  background: linear-gradient(180deg, rgba(250,204,21,0.05), rgba(250,204,21,0.03));
}

.url-kicker {
  color: rgba(255, 248, 211, 0.7);
}

.url-title {
  margin-top: 10px;
  color: #fff5c2;
}

.url-action {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 50;
}

.url-action a {
  position: relative;
  z-index: 51;
  pointer-events: auto;
}

.demo-frame::before,
.browser::before {
  pointer-events: none;
}

.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.section-tight-top {
  padding-top: 12px;
}

.section-no-top {
  padding-top: 0;
}

.section.alt {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 44px;
}

.section-head h2,
.cta-grid h2,
.contact-title,
.section h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 58px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-copy,
.featured-copy,
.contact-copy {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.section-copy-top {
  margin-top: 16px;
  max-width: 760px;
}

/* =========================
   VISUAL SYSTEMS
========================= */

.systems-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at top left, rgba(250,204,21,0.07), transparent 24%),
    radial-gradient(circle at right center, rgba(34,211,238,0.07), transparent 24%),
    linear-gradient(180deg, #04101e 0%, #020914 100%);   /*Remove if want to change colour */
  padding: 28px;
  min-height: 470px;
}

.systems-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 55%);
}

.systems-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
}

.systems-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  min-height: 410px;
  gap: 24px;
  align-items: center;
}

.stack {
  display: grid;
  gap: 14px;
}

.signal-box {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 18px;
  transition: transform 0.2s ease;
  backdrop-filter: blur(6px);
}

.signal-box:hover {
  transform: translateX(4px);
}

.stack.right .signal-box:hover {
  transform: translateX(-4px);
}

.signal-title {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.88);
}

.engine-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.engine {
  position: relative;
  width: 224px;
  height: 224px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at center, rgba(250,204,21,0.09), rgba(34,211,238,0.06), rgba(255,255,255,0.03));
  backdrop-filter: blur(12px);
  box-shadow: 0 0 34px rgba(250,204,21,0.08), 0 0 68px rgba(34,211,238,0.08), inset 0 0 30px rgba(255,255,255,0.03);
  animation: rotateSoft 9s ease-in-out infinite;
}

.engine::before,
.engine::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.engine::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(250,204,21,0.3);
  animation: spin 12s linear infinite;
}
.engine::after {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px solid rgba(34,211,238,0.25);
  animation: spinReverse 16s linear infinite;
}
.engine-core {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,204,21,0.92), rgba(34,211,238,0.68), transparent 72%);
  filter: blur(1px);
  animation: pulseCore 3s ease-in-out infinite;
}
.engine-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 146px;
}

.engine-text h4 {
  margin-top: 10px;
  font-size: 21px;
}

.engine-text p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.bubble {
  position: absolute;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.bubble.a {
  left: -6px;
  top: 0;
  color: #fff3bf;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(250, 204, 21, 0.1);
  box-shadow: 0 0 20px rgba(250,204,21,0.1);
  animation: float5 4.2s ease-in-out infinite;
}

.bubble.b {
  right: -2px;
  top: 178px;
  bottom: auto;
  color: #b8f6ff;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(34, 211, 238, 0.1);
  box-shadow: 0 0 22px rgba(34,211,238,0.1);
  animation: float6 4.8s ease-in-out infinite;
}

.solutions-head {
  max-width: 760px;
}

.solutions-flow {
  position: relative;
  margin-top: 54px;
  display: grid;
  gap: 82px;
}

.solutions-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.55), rgba(255, 255, 255, 0.12), transparent);
}

.flow-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
}

.flow-row:nth-child(even) .flow-copy {
  order: 2;
}

.flow-row:nth-child(even) .flow-visual {
  order: 1;
}

.step-index {
  color: #fde68a;
  font-weight: 600;
}

.flow-copy h3 {
  margin-top: 12px;
  font-size: 38px;
  letter-spacing: -0.03em;
}

.flow-copy p {
  margin-top: 14px;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.9;
}

.flow-visual {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 24px;
}

.flow-visual::before,
.browser::before,
.cta-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  animation: pulseVisual 6s ease-in-out infinite;
}

.flow-visual::before {
  background: radial-gradient(circle at center, rgba(250, 204, 21, 0.15), transparent 60%);
}

.flow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.flow-item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 23, 35, 0.9);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.flow-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--yellow), transparent);
  animation: moveLine 3s ease-in-out infinite;
}

.flow-line.cyan {
  background: linear-gradient(90deg, var(--cyan), transparent);
  animation-delay: 0.45s;
}

.featured-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
}

.featured-title {
  margin-top: 16px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.featured-copy {
  margin-top: 18px;
  max-width: 560px;
}

.timeline {
  margin-top: 32px;
  display: grid;
  gap: 28px;
}

.timeline-item {
  position: relative;
  padding-left: 26px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.45);
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 22px;
  width: 1px;
  height: calc(100% + 16px);
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.5), rgba(255, 255, 255, 0.12), transparent);
}

.timeline-title {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 600;
}

.timeline-copy {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.8;
}

.timeline-link {
  margin-top: 12px;
  color: #fde68a;
  font-size: 14px;
}

.browser {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  padding: 16px;
  transition: transform 0.28s ease;
}

.browser:hover {
  transform: translateY(-6px);
}

.browser::before {
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(250, 204, 21, 0.12), transparent 30%);
}

.browser-inner {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #090d14;
}

.browser-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.browser-dots span:nth-child(1) {
  background: rgba(248, 113, 113, 0.85);
}

.browser-dots span:nth-child(2) {
  background: rgba(250, 204, 21, 0.85);
}

.browser-dots span:nth-child(3) {
  background: rgba(52, 211, 153, 0.85);
}

.browser-url {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.browser-body {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  padding: 20px;
}

/** Mobile view for Visual Systems
*/

@media (max-width: 767px) {
  .systems-svg {
    display: none;
  }

  .systems-card {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .systems-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: auto;
  }

  .stack.left,
  .stack.right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .stack.left {
    order: 1;
  }

  .engine-wrap {
    order: 2;
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 14px 0 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .stack.right {
    order: 3;
  }

  .engine {
    order: 2;
    width: 184px;
    height: 184px;
    position: relative;
    z-index: 3;
  }

  /* vertical flow line */
  .engine-wrap::before {
    content: "";
    position: absolute;
    top: -6px;
    bottom: -6px;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      rgba(250, 204, 21, 0),
      rgba(250, 204, 21, 0.35),
      rgba(34, 211, 238, 0.28),
      rgba(34, 211, 238, 0)
    );
    opacity: 0.9;
    z-index: 1;
  }

  /* moving pulse */
  .engine-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #facc15, #22d3ee);
    box-shadow:
      0 0 14px rgba(250, 204, 21, 0.35),
      0 0 18px rgba(34, 211, 238, 0.25);
    animation: mobileFlowPulse 2.8s ease-in-out infinite;
    z-index: 2;
  }

  .bubble {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    animation: none;
    z-index: 3;
    top: auto;
  }

  .bubble.a {
    order: 1;
    margin-bottom: 30px;
  }

  .systems-card.systems-mode-mobile  .engine{
    order: 2;
  }

  .bubble.b {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    left: auto;
    order: 3;
    margin-top: 25px;
    margin-bottom: 16px;
  }

  .signal-box {
    padding: 14px 15px;
    border-radius: 18px;
  }

  .signal-title {
    font-size: 14px;
  }
}

@keyframes mobileFlowPulse {
  0% {
    top: -2px;
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  15% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  85% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    top: calc(100% - 8px);
    opacity: 0;
    transform: translateX(-50%) scale(0.85);
  }
}




.stack-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d1420;
  padding: 18px;
}

.stack-flow {
  margin-top: 18px;
}

.signals {
  display: grid;
  gap: 14px;
}

.signals-card {
  background: #101520;
}

.signal-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 12px;
}

.signal-pill.a {
  color: #fff2b8;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(250, 204, 21, 0.1);
  animation: float5 4.2s ease-in-out infinite;
}

.signal-pill.b {
  color: #b8f6ff;
  border: 1px solid rgba(34, 211, 238, 0.22);
  background: rgba(34, 211, 238, 0.1);
  animation: float6 4.8s ease-in-out infinite;
}

.signal-pill.c {
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  animation: float4 4.5s ease-in-out infinite;
}

.info-card {
  border-radius: 22px;
  border: 1px dashed rgba(250, 204, 21, 0.22);
  background: rgba(250, 204, 21, 0.05);
  padding: 18px;
}

.info-kicker {
  color: rgba(255, 248, 211, 0.7);
}

.process-wrap {
  margin-top: 52px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b0f16;
  padding: 32px 32px 34px;
}

.process-line {
  position: relative;
  display: grid;
  gap: 38px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.78), rgba(255, 255, 255, 0.15), transparent);
}

.process-item {
  position: relative;
  padding-left: 56px;
}

.process-index {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.3);
  background: rgba(250, 204, 21, 0.1);
  color: #fde68a;
  font-size: 13px;
  font-weight: 700;
}

.process-title {
  font-size: 24px;
  font-weight: 600;
}

.process-copy {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 760px;
}

.cta-wrap {
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, #101622, #0d1220, #0b111b);
  padding: 40px 42px;
  position: relative;
}

.cta-wrap::before {
  background: radial-gradient(circle at center, rgba(250, 204, 21, 0.14), transparent 60%);
  animation-duration: 8s;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.cta-grid p {
  margin-top: 16px;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.85;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-title {
  margin-top: 16px;
  line-height: 1.04;
}

.contact-copy {
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.85;
}

.contact-notes {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.note {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  color: var(--muted);
}

.form-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 13px;
  color: var(--soft);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: rgba(34, 211, 238, 0.38);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.08);
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.status {
  min-height: 22px;
  color: var(--muted);
}

.status.success {
  color: #b8f6ff;
}

.status.error {
  color: #fecaca;
}

.footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

.js-enabled [data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes sweep {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(420%);
  }
}

@keyframes float1 {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  25% {
    transform: translateX(-50%) translateY(-16px) scale(1.03);
  }
  50% {
    transform: translateX(-50%) translateY(6px) scale(0.98);
  }
  75% {
    transform: translateX(-50%) translateY(14px) scale(1.02);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-12px) translateX(8px);
  }
  50% {
    transform: translateY(6px) translateX(-6px);
  }
  75% {
    transform: translateY(14px) translateX(4px);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-10px) translateX(6px);
  }
  50% {
    transform: translateY(8px) translateX(-8px);
  }
  75% {
    transform: translateY(12px) translateX(5px);
  }
}

@keyframes float4 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float5 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes float6 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}


@keyframes pulseCore {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.35);
  }
}

@keyframes pulseVisual {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.42;
  }
}

@keyframes moveLine {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(52, 211, 153, 0);
  }
  50% {
    box-shadow: 0 0 24px rgba(52, 211, 153, 0.24);
  }
}

@keyframes rotateSoft {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .featured-grid,
  .contact-grid,
  .cta-grid,
  .browser-body,
  .flow-row,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .solutions-flow::before {
    display: none;
  }

  .flow-row:nth-child(even) .flow-copy,
  .flow-row:nth-child(even) .flow-visual {
    order: initial;
  }

  .url-action {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-cta .btn-secondary {
    display: none;
  }

  .hero {
    padding-top: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .section-head h2,
  .cta-grid h2,
  .flow-copy h3,
  .timeline-title,
  .featured-title,
  .contact-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .process-wrap,
  .cta-wrap,
  .browser,
  .systems-card,
  .demo-frame,
  .form-card {
    padding-left: 20px;
    padding-right: 20px;
  }

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


/* =========================
   VISUAL SYSTEMS - ADAPTIVE MODES
========================= */

/* default motion helper */
@keyframes mobileFlowPulse {
  0% {
    top: -2px;
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  15% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  85% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    top: calc(100% - 8px);
    opacity: 0;
    transform: translateX(-50%) scale(0.85);
  }
}

/* =========================
   WIDE MODE
   inputs left / engine center / outputs right
========================= */

.systems-card.systems-mode-wide .systems-svg {
  display: block;
  opacity: 0.22;
}

.systems-card.systems-mode-wide .systems-content {
  display: grid;
  grid-template-columns: 220px minmax(260px, 1fr) 220px;
  gap: 28px;
  align-items: center;
  min-height: 410px;
}

.systems-card.systems-mode-wide .stack.left,
.systems-card.systems-mode-wide .stack.right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: auto;
}

.systems-card.systems-mode-wide .stack.left {
  order: 1;
}

.systems-card.systems-mode-wide .engine-wrap {
  order: 2;
  position: relative;
  min-height: 260px;
  width: auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.systems-card.systems-mode-wide .stack.right {
  order: 3;
}

.systems-card.systems-mode-wide .engine-wrap::before,
.systems-card.systems-mode-wide .engine-wrap::after {
  content: none;
}

.systems-card.systems-mode-wide .bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.systems-card.systems-mode-wide .bubble.a {
  left: -6px;
  top: 0;
  margin: 0;
}

.systems-card.systems-mode-wide .bubble.b {
  right: -2px;
  top: 178px;
  bottom: auto;
  margin: 0;
}

/* =========================
   MOBILE MODE
   stacked cards + vertical flow
========================= */

.systems-card.systems-mode-mobile {
  padding: 20px 16px;
  border-radius: 24px;
}

.systems-card.systems-mode-mobile .systems-svg {
  display: none;
}

.systems-card.systems-mode-mobile .systems-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: auto;
}

.systems-card.systems-mode-mobile .stack.left,
.systems-card.systems-mode-mobile .stack.right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

.systems-card.systems-mode-mobile .stack.left {
  order: 1;
}

.systems-card.systems-mode-mobile .engine-wrap {
  order: 2;
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 14px 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.systems-card.systems-mode-mobile .stack.right {
  order: 3;
}

.systems-card.systems-mode-mobile .engine {
  order: 2;
  width: 184px;
  height: 184px;
  position: relative;
  z-index: 3;
}

.systems-card.systems-mode-mobile .engine::before {
  inset: 10px;
}

.systems-card.systems-mode-mobile .engine::after {
  inset: 28px;
}

.systems-card.systems-mode-mobile .engine-core {
  width: 60px;
  height: 60px;
}

.systems-card.systems-mode-mobile .engine-text {
  max-width: 130px;
}

.systems-card.systems-mode-mobile .engine-text h4 {
  font-size: 18px;
}

.systems-card.systems-mode-mobile .engine-text p {
  font-size: 12px;
  line-height: 1.55;
}

.systems-card.systems-mode-mobile .engine-wrap::before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(250, 204, 21, 0),
    rgba(250, 204, 21, 0.35),
    rgba(34, 211, 238, 0.28),
    rgba(34, 211, 238, 0)
  );
  opacity: 0.9;
  z-index: 1;
}

.systems-card.systems-mode-mobile .engine-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #facc15, #22d3ee);
  box-shadow:
    0 0 14px rgba(250, 204, 21, 0.35),
    0 0 18px rgba(34, 211, 238, 0.25);
  animation: mobileFlowPulse 2.8s ease-in-out infinite;
  z-index: 2;
}

.systems-card.systems-mode-mobile .bubble {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  animation: none;
  z-index: 3;
}

.systems-card.systems-mode-mobile .bubble.a {
  order: 1;
  margin-bottom: 10px;
}

.systems-card.systems-mode-mobile .bubble.b {
  order: 3;
  margin-top: 10px;
}

.systems-card.systems-mode-mobile .signal-box {
  padding: 14px 15px;
  border-radius: 18px;
}

.systems-card.systems-mode-mobile .signal-box:hover,
.systems-card.systems-mode-mobile .stack.right .signal-box:hover {
  transform: none;
}

.systems-card.systems-mode-mobile .signal-title {
  font-size: 14px;
}

/* small phones */
@media (max-width: 480px) {
  .systems-card.systems-mode-mobile {
    padding: 18px 14px;
  }

  .systems-card.systems-mode-mobile .engine {
    width: 168px;
    height: 168px;
  }

  .systems-card.systems-mode-mobile .engine-text h4 {
    font-size: 17px;
  }

  .systems-card.systems-mode-mobile .signal-title {
    font-size: 13px;
  }

  .systems-card.systems-mode-mobile .bubble {
    padding: 9px 12px;
    font-size: 11px;
  }
}

/* =========================
   TABLET MODE (KEY FIX)
========================= */

.systems-card.systems-mode-tablet .systems-svg {
  opacity: 0.15;
}

.systems-card.systems-mode-tablet .systems-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  min-height: auto;
}

.systems-card.systems-mode-tablet .stack.left,
.systems-card.systems-mode-tablet .stack.right {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.systems-card.systems-mode-tablet .stack.left {
  order: 1;
}

.systems-card.systems-mode-tablet .engine-wrap {
  order: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
}

.systems-card.systems-mode-tablet .stack.right {
  order: 3;
}

.systems-card.systems-mode-tablet .engine {
  width: 200px;
  height: 200px;
}

/* vertical flow instead of broken horizontal */
.systems-card.systems-mode-tablet .engine-wrap::before {
  content: "";
  position: absolute;
  top: -6px;
  bottom: -6px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(250, 204, 21, 0),
    rgba(250, 204, 21, 0.35),
    rgba(34, 211, 238, 0.28),
    rgba(34, 211, 238, 0)
  );
  opacity: 0.85;
}

.systems-card.systems-mode-tablet .engine-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #facc15, #22d3ee);
  animation: mobileFlowPulse 2.8s ease-in-out infinite;
}

/* bubbles centered */
.systems-card.systems-mode-tablet .bubble {
  position: static;
  margin: 6px 0;
}

.systems-card.systems-mode-tablet .bubble.a {
  order: 1;
}

.systems-card.systems-mode-tablet .bubble.b {
  order: 3;
}

/* FORCE tablet layout override */
.systems-card.systems-mode-tablet .systems-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px;
  align-items: center;
}

.systems-card.systems-mode-tablet .stack.left,
.systems-card.systems-mode-tablet .stack.right {
  grid-template-columns: repeat(3, 1fr) !important;
  width: 100%;
}

.systems-card.systems-mode-tablet .systems-svg {
  opacity: 0.12 !important;
}