:root {
  --bg: #fff;
  --ink: #2e2e2e;
  --muted: #6b7280;
  --primary: #22a7e0;
  --primary-soft: #63c6ee;
  --border: #e3e8ef;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.7);
  --shadow-glass:
    0 24px 60px -24px rgba(34, 110, 160, 0.26),
    0 2px 8px rgba(34, 110, 160, 0.06);
  --shadow-cta: 0 12px 30px -12px rgba(34, 167, 224, 0.55);
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

/* hero */
.hero-new-banner-main {
  font-family: "Outfit", "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(
      60% 60% at 78% 32%,
      rgba(99, 198, 238, 0.22) 0%,
      transparent 70%
    ),
    radial-gradient(
      45% 50% at 12% 18%,
      rgba(34, 167, 224, 0.1) 0%,
      transparent 72%
    );
  padding-top: 100px;
  .blue-text {
    color: var(--primary);
  }

  /* lable */
  .lable {
    color: var(--primary-color);
    border-radius: 12px;
    border: 0.5px solid var(--primary-color);
    padding: 10px 27px;
    padding-left: 57px;
    font-weight: 600;
    font-size: 16px;
    width: max-content;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
    background: var(--white);
    box-shadow: 0px 5px 20px rgb(133 128 128 / 19%);

    &::before {
      content: "";
      position: absolute;
      width: 17px;
      height: 20px;
      left: 27px;
      top: 50%;
      transform: translateY(-50%);
      background-image: url(../images/sparkle.svg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
    }
  }

  .hero-wrapper {
    h1,
    .h1 {
      font-size: clamp(1.375rem, 4.875vw + 0.4rem, 6.25rem);
      font-weight: 800;
      line-height: clamp(1, calc(1 + 0.16vw), 7.8125rem);
      margin-bottom: 40px;
      font-family: "Outfit", "Plus Jakarta Sans", sans-serif;
      color: var(--ink);
    }

    .text-large {
      font-size: clamp(0.75rem, 0.575rem + 0.875vw, 1.625rem);
      color: #5b6472;
      margin: 0px;
    }

    .btn-primary {
      background-color: var(--primary);
      border-color: var(--primary);
      padding: 15px 65px 15px 30px;
      border-radius: 12px;
      position: relative;
      margin-top: 40px;

      &::after {
        position: absolute;
        content: "";
        background-image: url(../images/arrow.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 15px;
        width: 25px;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        filter: grayscale(100%) brightness(1000%);
      }

      &:hover,
      &:active,
      &:focus {
        background-color: var(--white);
        color: var(--primary);

        &::after {
          filter: none;
        }
      }
    }
    .vina-cta-button {
        color: #1f4d3f !important;
    }
    .vina-cta-button-secondary {
        border: 1px solid #1f4d3f !important;
        padding: 20px 15px;
    }
    &.vina {
      .lable {
        color: #1f4d3f !important;
        border-color: #1f4d3f !important;
        &::before {
          background-image: url(../images/vina-union.svg);
        }
      }
      .btn-primary {
        background-color: #1f4d3f !important;
        border: 1px solid #1f4d3f !important;
        &:hover,
        &:active,
        &:focus {
          color: #1f4d3f !important ;
          background-color: var(--white) !important;
          &::after {
            filter: brightness(0.5);
          }
        }
      }
    }
  }
  .green-text {
    color: #1f4d3f !important;
  }
  /* stage */
  .stage {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 560/460;
    user-select: none;
  }

  .ambient-glow {
    position: absolute;
    inset: 0;
    border-radius: 40px;
    pointer-events: none;
    background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(34, 167, 224, 0.16) 0%,
      transparent 72%
    );
    animation: breathe 7s ease-in-out infinite;
  }

  .parallax {
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--ease);
  }

  .net {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .net line {
    stroke: var(--primary);
    opacity: 0;
    transition: opacity 0.9s var(--ease);
  }

  .net circle {
    fill: var(--primary);
    opacity: 0;
    transition:
      cx 1.1s var(--ease),
      cy 1.1s var(--ease),
      opacity 0.8s var(--ease);
  }

  .labels .label {
    position: absolute;
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0;
    border: 1px solid rgba(227, 232, 239, 0.7);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--muted);
    transition:
      opacity 0.5s var(--ease),
      transform 0.5s var(--ease);
  }

  .labels .label.on {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .glass-card {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(18px) saturate(140%);
    transition: all 1.1s var(--ease);
  }

  .card-old {
    width: 300px;
    height: 152px;
    border-radius: 24px;
    transform: translate(-50%, -50%) rotate(-4deg);
    opacity: 0;
  }

  .card-old img {
    width: 190px;
  }

  .card-old .sheen {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    opacity: 0.5;
    background: linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.7) 0%,
      transparent 42%
    );
  }

  .card-old.show {
    opacity: 1;
  }

  .card-old.fade {
    opacity: 0.25;
    filter: blur(6px);
    transform: translate(-50%, calc(-50% - 6px)) rotate(-2deg);
  }

  .card-old.hide {
    opacity: 0;
    filter: blur(6px);
  }

  .core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.4);
    transition: all 1s var(--ease);
    background: radial-gradient(
      circle,
      #8fdcfa 0%,
      rgba(34, 167, 224, 0.35) 55%,
      transparent 72%
    );
  }

  .core.on {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .core.burst {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }

  .card-new {
    width: 330px;
    height: 168px;
    border-radius: 28px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.94) rotate(4deg);
  }

  .card-new.on {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0);
  }

  .logo-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
  }

  .logo-wrap img {
    width: 196px;
  }

  .dot-pulse {
    position: absolute;
    left: 88%;
    top: 62%;
    width: 7.5%;
    height: 15%;
    border-radius: 999px;
    background: var(--primary);
    filter: blur(6px);
    opacity: 0.7;
    transform: translate(-50%, -50%);
    animation: pulse 3.2s ease-in-out infinite;
  }

  .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    transition: all 0.3s ease-in-out;
  }

  .swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    width: 40px !important;
    border-radius: 20px;
  }
.swiper-pagination {
    width: 100% !important;
}
  /* Swiper Overrides */
  .swiper {
    width: 100%;
    height: 100%;
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

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

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

/* =========================================================
            SLIDE 2: FY 2026–27 EVOLUTION SCENE
            ========================================================= */

.hero-fy-slide {
  --fy-brand: #22a7e0;
  --fy-brand-soft: #63c6ee;
  --fy-brand-deep: #168dc1;
  --fy-text: #0b1220;
  --fy-muted: #64748b;
  --fy-border: rgba(15, 23, 42, 0.1);
  --fy-glass: rgba(255, 255, 255, 0.82);
  --fy-ease: cubic-bezier(0.65, 0, 0.35, 1);
  --fy-gradient: linear-gradient(
    100deg,
    var(--fy-brand-deep),
    var(--fy-brand),
    var(--fy-brand-soft)
  );
}

.fy-slide-scene {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  user-select: none;
}

.fy-slide-glow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  background: radial-gradient(
    circle at center,
    rgba(99, 198, 238, 0.24) 0%,
    rgba(34, 167, 224, 0.08) 45%,
    transparent 72%
  );
  animation: fySlideBreathe 7s var(--fy-ease) infinite;
}

.fy-slide-stage {
  position: absolute;
  inset: 0;
  perspective: 1400px;
  transform-style: preserve-3d;
  transform: translate3d(var(--fy-px, 0px), var(--fy-py, 0px), 0)
    rotateY(var(--fy-rotate-y, 0deg));
  transition: transform 0.8s var(--fy-ease);
}

.fy-slide-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 100%;
  transition:
    opacity 0.8s var(--fy-ease),
    transform 0.8s var(--fy-ease),
    filter 0.8s var(--fy-ease);
}

.fy-slide-layer.is-active {
  opacity: 1;
  visibility: visible;
}

.fy-slide-glass {
  position: relative;
  border: 1px solid var(--fy-border);
  border-radius: 18px;
  background: var(--fy-glass);
  box-shadow:
    0 1px 1px rgba(34, 110, 160, 0.04),
    0 12px 32px -12px rgba(34, 110, 160, 0.18),
    0 40px 80px -60px rgba(34, 110, 160, 0.32);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.fy-slide-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.58) 0%,
    rgba(255, 255, 255, 0.07) 34%,
    transparent 62%
  );
}

.fy-slide-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fy-muted);
}

/* Document */

.fy-slide-doc-layer {
  inset: 10% 16%;
  transform: translateY(14px) rotateX(6deg);
  filter: blur(6px);
}

.fy-slide-doc-layer.is-active {
  transform: none;
  filter: none;
}

.fy-slide-doc {
  padding: 24px;
}

.fy-slide-doc-rows {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.fy-slide-doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fy-border);
  font-size: 13px;
  color: rgba(11, 18, 32, 0.8);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.7s var(--fy-ease),
    transform 0.7s var(--fy-ease);
  transition-delay: calc(var(--fy-index) * 60ms);
}

.fy-slide-doc-layer.is-active .fy-slide-doc-row {
  opacity: 1;
  transform: none;
}

.fy-slide-doc-row i {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--fy-border);
}

/* Particles */

.fy-slide-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fy-brand-soft);
  opacity: 0;
}

.fy-slide-particles-layer.is-active .fy-slide-particle {
  animation: fySlideParticleDrift 1.6s var(--fy-ease) both;
  animation-delay: var(--fy-particle-delay);
}

/* Network */

.fy-slide-network-layer {
  inset: 6%;
  filter: blur(6px);
}

.fy-slide-network-layer.is-active {
  filter: none;
}

.fy-slide-network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.fy-slide-network-line {
  stroke: var(--fy-brand-soft);
  stroke-width: 0.25;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  opacity: 0;
  transition:
    stroke-dashoffset 0.9s var(--fy-ease),
    opacity 0.9s var(--fy-ease);
  transition-delay: calc(var(--fy-index) * 50ms);
}

.fy-slide-network-layer.is-active .fy-slide-network-line {
  stroke-dashoffset: 0;
  opacity: 0.35;
}

.fy-slide-network-layer.is-converging .fy-slide-network-line {
  opacity: 0.75;
}

.fy-slide-network-pulse {
  fill: var(--fy-brand);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.fy-slide-network-layer.is-active .fy-slide-network-pulse {
  animation: fySlideNetworkPulse 1.8s var(--fy-ease) infinite;
  animation-delay: calc(var(--fy-index) * 120ms);
}

.fy-slide-module {
  position: absolute;
  left: var(--fy-x-position);
  top: var(--fy-y-position);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition:
    opacity 0.9s var(--fy-ease),
    transform 0.9s var(--fy-ease);
  transition-delay: calc(var(--fy-index) * 50ms);
}

.fy-slide-network-layer.is-active .fy-slide-module {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.fy-slide-network-layer.is-converging .fy-slide-module {
  transform: translate(
      calc(-50% + var(--fy-move-x)),
      calc(-50% + var(--fy-move-y))
    )
    scale(0.94);
}

.fy-slide-module-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 12px;
  white-space: nowrap;
  animation: fySlideChipGlow 2.4s var(--fy-ease) infinite;
  animation-delay: calc(var(--fy-index) * 200ms);
}

.fy-slide-module-icon {
  position: relative;
  z-index: 1;
  font-size: 11px;
  line-height: 1;
}

.fy-slide-module-label {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 500;
  color: rgba(11, 18, 32, 0.75);
}

/* Intelligence core */

.fy-slide-core-layer {
  display: grid;
  place-items: center;
  transform: scale(0.94);
}

.fy-slide-core-layer.is-active {
  transform: scale(1);
}

.fy-slide-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  top: 5%;
}

.fy-slide-core-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(99, 198, 238, 0.55);
  border-radius: 50%;
  animation: fySlideSpin 14s linear infinite;
}

.fy-slide-core-ring i {
  position: absolute;
  top: -3px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: var(--fy-brand);
  box-shadow: 0 0 14px rgba(34, 167, 224, 0.8);
}

.fy-slide-core-halo {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  filter: blur(24px);
  background: radial-gradient(
    circle,
    rgba(99, 198, 238, 0.42) 0%,
    rgba(34, 167, 224, 0.12) 52%,
    transparent 72%
  );
  animation: fySlideBreathe 4s var(--fy-ease) infinite;
}

.fy-slide-core-dot {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-image: var(--fy-gradient);
  box-shadow: 0 18px 40px -18px rgba(34, 167, 224, 0.85);
}

/* Dashboard */

.fy-slide-dashboard-layer {
  inset: 12% 6%;
  transform: translateY(16px) scale(0.98);
  filter: blur(6px);
}

.fy-slide-dashboard-layer.is-active {
  transform: none;
  filter: none;
}

.fy-slide-dashboard {
  height: 100%;
  padding: 24px;
}

.fy-slide-dashboard-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fy-slide-ready-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 999px;
  background-image: var(--fy-gradient);
  font-size: 10px;
  font-weight: 600;
  color: #fff;
}

.fy-slide-dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.fy-slide-dashboard-card {
  position: relative;
  padding: 12px;
  border: 1px solid var(--fy-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.7s var(--fy-ease),
    transform 0.7s var(--fy-ease);
  transition-delay: calc(100ms + var(--fy-index) * 70ms);
}

.fy-slide-dashboard-layer.is-active .fy-slide-dashboard-card {
  opacity: 1;
  transform: none;
}

.fy-slide-dashboard-label,
.fy-slide-dashboard-value {
  margin: 0;
}

.fy-slide-dashboard-label {
  padding-right: 14px;
  font-size: 10px;
  color: var(--fy-muted);
}

.fy-slide-dashboard-value {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(11, 18, 32, 0.88);
}

.fy-slide-live-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fy-brand);
  animation: fySlideLive 2s var(--fy-ease) infinite;
}

/* Animations */

@keyframes fySlideBreathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}

@keyframes fySlideParticleDrift {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.6);
  }

  55% {
    opacity: 0.85;
  }

  100% {
    opacity: 0.2;
    transform: translate(var(--fy-particle-x), var(--fy-particle-y)) scale(1);
  }
}

@keyframes fySlideNetworkPulse {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  40% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate(
      calc((50 - var(--fy-x)) * 1px),
      calc((50 - var(--fy-y)) * 1px)
    );
  }
}

@keyframes fySlideChipGlow {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@keyframes fySlideSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fySlideLive {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

/* Responsive sizing */

@media (max-width: 991.98px) {
  .fy-slide-scene {
    max-width: 520px;
  }
}

@media (max-width: 575.98px) {
  /* .fy-slide-scene {
    max-width: 390px;
  } */

  .fy-slide-doc-layer {
    inset: 12% 13%;
  }

  .fy-slide-network-layer {
    inset: 8%;
  }

  .fy-slide-dashboard-layer {
    inset: 14% 5%;
  }

  .fy-slide-dashboard,
  .fy-slide-doc {
    padding: 18px;
  }

  .fy-slide-dashboard-grid {
    gap: 8px;
  }

  .fy-slide-dashboard-card {
    padding: 10px;
  }

  .fy-slide-module-chip {
    gap: 4px;
    padding: 5px 7px;
  }

  .fy-slide-module-icon {
    font-size: 9px;
  }

  .fy-slide-module-label {
    font-size: 8px;
  }

  .fy-slide-core {
    width: 100px;
    height: 100px;
  }

  .fy-slide-core-dot {
    width: 54px;
    height: 54px;
  }
}

/* =========================================================
            SLIDE 3: SYSTEM STAGE ("System that runs the system")
            ========================================================= */

.hero-system-slide {
  --sys-background: #fff;
  --sys-foreground: oklch(0.19 0.03 258);
  --sys-muted-foreground: oklch(0.55 0.02 258);
  --sys-primary: oklch(0.55 0.19 260);
  --sys-primary-glow: oklch(0.72 0.15 245);
  --sys-primary-deep: oklch(0.42 0.17 265);
  --sys-primary-foreground: oklch(0.99 0.005 250);
  --sys-ease-premium: cubic-bezier(0.65, 0, 0.35, 1);
  --sys-glass-bg: linear-gradient(
    145deg,
    color-mix(in oklab, white 92%, var(--sys-primary) 3%) 0%,
    color-mix(in oklab, white 78%, var(--sys-primary) 6%) 100%
  );
  --sys-shadow-glass:
    0 1px 2px color-mix(in oklab, var(--sys-primary-deep) 6%, transparent),
    0 12px 32px -12px
      color-mix(in oklab, var(--sys-primary-deep) 22%, transparent);
  --sys-orbit-seconds: 20s;
}

.hero-system-slide .sys-glass-card {
  background: var(--sys-glass-bg);
  border: 1px solid color-mix(in oklab, white 70%, var(--sys-primary) 10%);
  box-shadow: var(--sys-shadow-glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.system-stage {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  user-select: none;

  .parallax {
    position: absolute;
    inset: 0;
    transition: transform 0.7s var(--sys-ease-premium);
    will-change: transform;
  }

  .orbit {
    position: absolute;
    inset: 0;
    animation: vasy-orbit var(--sys-orbit-seconds) linear infinite;
    animation-delay: 4s;
    will-change: transform;
  }

  .orbit-counter {
    animation: vasy-orbit-counter var(--sys-orbit-seconds) linear infinite;
    animation-delay: 4s;
    will-change: transform;
  }

  .system-card-wrap {
    position: absolute;
    transform: translate(-50%, -50%);
    will-change: transform;
  }

  .system-card {
    width: 136px;
    border-radius: 1rem;
    padding: 0.75rem 0.875rem;
    opacity: 0;
    animation: sys-card-in 0.7s var(--sys-ease-premium) forwards;
  }

  .system-card-tilt {
    will-change: transform;
  }

  .system-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .system-card-label {
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: color-mix(in oklab, var(--sys-foreground) 85%, transparent);
  }

  .sys-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--sys-primary-glow);
    animation: sys-dot-pulse 3.4s var(--sys-ease-premium) infinite;
  }

  .system-card-body {
    margin-top: 0.375rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0px;
  }

  .kpi {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .kpi.swap {
    animation: sys-kpi-in 0.55s var(--sys-ease-premium);
  }

  .net {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .net path.link {
    stroke: url(#vasy-line);
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
    animation: sys-draw-line 0.75s var(--sys-ease-premium) forwards;
  }

  .bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
  }

  .bars i {
    display: block;
    width: 3px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--sys-primary) 25%, transparent);
    transform-origin: bottom;
    animation: sys-bar-breathe 5s var(--sys-ease-premium) infinite;
  }

  .metric {
    margin: 0.25rem 0 0;
    font-size: 10.5px !important;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--sys-muted-foreground);
  }

  /* fixed core */
  .core {
    position: absolute;
    transform: translate(-50%, -50%);
  }

  .core-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    height: 340px;
    margin: -170px 0 0 -170px;
    border-radius: 999px;
    background: radial-gradient(
      circle,
      color-mix(in oklab, var(--sys-primary-glow) 22%, transparent) 0%,
      transparent 68%
    );
    animation: sys-breathe 7s ease-in-out 0.2s infinite alternate;
  }

  .core-card {
    position: relative;
    border-radius: 26px;
    padding: 1.5rem 0.2rem;
    opacity: 0;
    animation: sys-core-in 1s var(--sys-ease-premium) forwards;
  }

  .core-card img {
    display: block;
    height: 42px;
    width: auto;
    user-select: none;
  }
}

@keyframes sys-draw-line {
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes vasy-orbit {
  from {
    transform: rotate(0);
  }

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

@keyframes vasy-orbit-counter {
  from {
    transform: rotate(0);
  }

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

@keyframes sys-card-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sys-dot-pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes sys-kpi-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sys-bar-breathe {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.6;
  }

  50% {
    transform: scaleY(1.18);
    opacity: 1;
  }
}

@keyframes sys-breathe {
  0% {
    opacity: 0.7;
    transform: scale(0.98);
  }

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

@keyframes sys-core-in {
  from {
    opacity: 0;
    transform: perspective(900px) rotateY(14deg) scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .fy-slide-scene *,
  .fy-slide-scene *::before,
  .fy-slide-scene *::after {
    animation: none !important;
    transition: none !important;
  }

  .system-stage .system-card,
  .system-stage .core-card {
    opacity: 1 !important;
  }

  .system-stage .net path.link {
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
  }
}

/* =========================================================
           SLIDE 4: VINA LIVE BUSINESS ASSISTANT
           Fully namespaced to avoid collisions with Slides 1 and 2.
           ========================================================= */
.hero-vina-slide {
  --vina3-forest: #2c4a3c;
  --vina3-accent: #3b7a5e;
  --vina3-sage: #7d968c;
  --vina3-mint: #dfeee6;
  --vina3-haze: #f2f9f5;
  --vina3-glow: rgba(178, 224, 201, 0.55);
  --vina3-shadow: 0 24px 60px -30px rgba(44, 74, 60, 0.35);
  --vina3-eio: cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-vina-slide .vina3-scene {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 26px 0 10px;
  color: var(--vina3-forest);
  font-family: "Outfit", "Instrument Sans", sans-serif;
}

.hero-vina-slide .vina3-stage-glow {
  position: absolute;
  inset: -36px -24px 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    60% 50% at 60% 30%,
    var(--vina3-glow) 0%,
    transparent 70%
  );
}

.hero-vina-slide .vina3-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--vina3-mint);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--vina3-shadow);
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.hero-vina-slide .vina3-shell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(223, 238, 230, 0.75);
  padding: 14px 20px;
}

.hero-vina-slide .vina3-head-brand,
.hero-vina-slide .vina3-head-actions,
.hero-vina-slide .vina3-product-top,
.hero-vina-slide .vina3-product-bottom,
.hero-vina-slide .vina3-kpi-label {
  display: flex;
  align-items: center;
}

.hero-vina-slide .vina3-head-brand {
  gap: 10px;
}
.hero-vina-slide .vina3-head-actions {
  gap: 6px;
}

.hero-vina-slide .vina3-mark {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.hero-vina-slide .vina3-mark::before,
.hero-vina-slide .vina3-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid var(--vina3-forest);
  border-radius: 50%;
  animation: vina3Spin 7s linear infinite;
}

.hero-vina-slide .vina3-mark::after {
  inset: 8px;
  border-width: 0;
  background: var(--vina3-accent);
  box-shadow: 0 0 14px var(--vina3-glow);
}

.hero-vina-slide .vina3-brand-name,
.hero-vina-slide .vina3-brand-sub,
.hero-vina-slide .vina3-greeting h3,
.hero-vina-slide .vina3-eyebrow,
.hero-vina-slide .vina3-card-title,
.hero-vina-slide .vina3-card-sub,
.hero-vina-slide .vina3-bubble,
.hero-vina-slide .vina3-ans-line,
.hero-vina-slide .vina3-reason-label,
.hero-vina-slide .vina3-step,
.hero-vina-slide .vina3-kpi-label,
.hero-vina-slide .vina3-kpi-value,
.hero-vina-slide .vina3-input-text,
.hero-vina-slide .vina3-foot-note,
.hero-vina-slide .vina3-product-name,
.hero-vina-slide .vina3-product-code,
.hero-vina-slide .vina3-product-stock,
.hero-vina-slide .vina3-product-wh {
  margin: 0;
}

.hero-vina-slide .vina3-brand-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.hero-vina-slide .vina3-brand-sub {
  font-size: 10px;
  color: var(--vina3-sage);
  line-height: 1.3;
}

.hero-vina-slide .vina3-chip {
  border: 1px solid var(--vina3-mint);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  color: var(--vina3-sage);
}

.hero-vina-slide .vina3-chip-solid {
  background: var(--vina3-forest);
  color: #fff;
  border-color: var(--vina3-forest);
}

.hero-vina-slide .vina3-shell-body {
  position: relative;
  min-height: 390px;
  padding: 24px 28px 16px;
}

.hero-vina-slide .vina3-greeting {
  text-align: center;
}
.hero-vina-slide .vina3-greeting .vina3-mark {
  width: 30px;
  height: 30px;
  margin: 0 auto;
}
.hero-vina-slide .vina3-greeting h3 {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-vina-slide .vina3-eyebrow {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vina3-sage);
}

.hero-vina-slide .vina3-cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-vina-slide .vina3-card,
.hero-vina-slide .vina3-kpi,
.hero-vina-slide .vina3-product {
  border: 1px solid var(--vina3-mint);
  background: rgba(255, 255, 255, 0.72);
}

.hero-vina-slide .vina3-card {
  border-radius: 16px;
  padding: 12px 14px;
  transition:
    border-color 0.4s var(--vina3-eio),
    box-shadow 0.4s var(--vina3-eio);
}

.hero-vina-slide .vina3-card.is-hover {
  border-color: var(--vina3-accent);
  box-shadow: 0 0 0 3px var(--vina3-glow);
}

.hero-vina-slide .vina3-card-title {
  font-size: 13px;
  font-weight: 600;
}
.hero-vina-slide .vina3-card-sub {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--vina3-sage);
}

.hero-vina-slide .vina3-conversation {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.hero-vina-slide .vina3-row-end {
  display: flex;
  justify-content: flex-end;
}
.hero-vina-slide .vina3-bubble {
  max-width: 84%;
  border-radius: 16px 16px 6px 16px;
  background: var(--vina3-forest);
  color: #fff;
  padding: 8px 14px;
  font-size: 12px;
  line-height: 1.5;
}

.hero-vina-slide .vina3-ans-line {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(44, 74, 60, 0.92);
}

.hero-vina-slide .vina3-reason {
  overflow: hidden;
  border: 1px solid var(--vina3-mint);
  border-radius: 16px;
  background: rgba(242, 249, 245, 0.76);
  padding: 0 16px;
}

.hero-vina-slide .vina3-reason-label {
  margin-bottom: 8px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vina3-sage);
}
.hero-vina-slide .vina3-reason-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-vina-slide .vina3-step {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 21px;
  font-size: 11.5px;
  color: rgba(44, 74, 60, 0.85);
  opacity: 0;
  transform: translateY(6px);
}

.hero-vina-slide .vina3-tick {
  flex: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--vina3-mint);
  display: grid;
  place-items: center;
  transition: all 0.35s var(--vina3-eio);
}

.hero-vina-slide .vina3-step.done .vina3-tick {
  background: var(--vina3-accent);
  border-color: var(--vina3-accent);
}
.hero-vina-slide .vina3-step.done {
  opacity: 0.7 !important;
}

.hero-vina-slide .vina3-kpis {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.hero-vina-slide .vina3-kpi {
  border-radius: 12px;
  padding: 9px 10px;
  opacity: 0;
  transform: translateY(8px);
}
.hero-vina-slide .vina3-kpi-label {
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vina3-sage);
}
.hero-vina-slide .vina3-kpi-value {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.hero-vina-slide .vina3-kpi-wide {
  grid-column: span 2;
}
.hero-vina-slide .vina3-spark-line {
  width: 100%;
  height: 28px;
  display: block;
  margin-top: 3px;
}

.hero-vina-slide .vina3-shell-foot {
  padding: 0 28px 20px;
}
.hero-vina-slide .vina3-input-bar {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border: 1px solid var(--vina3-mint);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  padding: 11px 14px;
  transition: border-color 0.4s var(--vina3-eio);
}
.hero-vina-slide .vina3-input-bar.is-typing {
  border-color: var(--vina3-accent);
}
.hero-vina-slide .vina3-input-text {
  flex: 1;
  min-height: 20px;
  font-size: 12px;
  line-height: 20px;
}
.hero-vina-slide .vina3-ph {
  color: var(--vina3-sage);
}
.hero-vina-slide .vina3-caret {
  display: inline-block;
  width: 1px;
  height: 13px;
  margin-left: 2px;
  background: var(--vina3-forest);
  vertical-align: middle;
  animation: vina3Blink 1s steps(2) infinite;
}
.hero-vina-slide .vina3-send {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--vina3-mint);
  color: var(--vina3-accent);
  transition: all 0.3s var(--vina3-eio);
}
.hero-vina-slide .vina3-send.is-sending {
  background: var(--vina3-accent);
  color: #fff;
  box-shadow: 0 0 0 5px var(--vina3-glow);
  transform: scale(0.96);
}
.hero-vina-slide .vina3-foot-note {
  margin-top: 9px;
  text-align: center;
  font-size: 10px;
  color: var(--vina3-sage);
}

.hero-vina-slide .vina3-products {
  position: relative;
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.hero-vina-slide .vina3-product {
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--vina3-shadow);
  opacity: 0;
  transform: translateY(-22px) scale(0.97);
}
.hero-vina-slide .vina3-product-top {
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}
.hero-vina-slide .vina3-product-name {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}
.hero-vina-slide .vina3-product-code {
  margin-top: 2px;
  font-size: 9px;
  color: var(--vina3-sage);
}
.hero-vina-slide .vina3-low {
  flex: none;
  border-radius: 999px;
  background: var(--vina3-haze);
  padding: 2px 7px;
  font-size: 8px;
  font-weight: 600;
}
.hero-vina-slide .vina3-product-bottom {
  margin-top: 9px;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-vina-slide .vina3-product-stock {
  font-size: 14px;
  font-weight: 600;
}
.hero-vina-slide .vina3-product-stock span {
  margin-left: 3px;
  font-size: 9px;
  color: var(--vina3-sage);
}
.hero-vina-slide .vina3-product-wh {
  font-size: 9px;
  color: var(--vina3-sage);
}

@keyframes vina3Spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes vina3Blink {
  50% {
    opacity: 0;
  }
}

.logo-slider-main {
  /* Marquee Outer Wrapper */
  .brand-marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #ffffff;
    padding: 20px 0;
    /* Soft fade effect on left and right edges matching the reference image */
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%
    );
  }

  /* Track that moves */
  .brand-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 20s linear infinite;
  }

  /* Pause animation on hover */
  .brand-marquee-wrapper:hover .brand-marquee-track {
    animation-play-state: paused;
  }

  /* Individual Items */
  .brand-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 500;
    font-size: 21px;
    color: #2e2e2e;
    padding: 0 36px 0px 0px;
  }

  /* Vertical Separator Line */
  .brand-item:not(:last-child)::after {
    content: "";
    display: inline-block;
    height: 40px;
    width: 1.6px;
    background-color: #5b6472;
    margin-left: 35px;
  }
}

/* Continuous Right-to-Left Keyframe Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

@media (max-width: 1399.98px) {
  .system-stage {
    .system-card {
      width: 116px;
    }
  }
}
@media (max-width: 991.98px) {
  .hero-vina-slide .vina3-scene {
    max-width: 580px;
  }
  .hero-new-banner-main {
    .hero-wrapper {
      text-align: center;
      h1,
      .h1,
      .lable {
        margin-bottom: 20px;
      }
      .btn-primary {
        margin-top: 20px;
      }
    }
  }
}

@media (max-width: 767px) {
  .hero-new-banner-main {
    padding-top: 80px;
    .hero-wrapper {
      .lable {
        font-size: 12px;
        padding: 12px 14px 12px 32px;
        &::before {
          width: 12px;
          height: 15px;
          left: 13px;
        }
      }
      .btn-primary {
        margin-top: 20px;
      }
    }
    .swiper {
      padding-bottom: 100px;
    }
  }
  .heroSwiper .swiper-wrapper {
    height: auto;
  }

  .heroSwiper .swiper-slide {
    height: auto;
    min-height: 0;
  }
  .system-stage {
    .system-card-label,
    .kpi,
    .metric {
      font-size: 9px !important;
    }
    .system-card {
      width: 85px;
      padding: 10px;
    }
    .bars {
      gap: 2px;
    }
    .system-card-body {
      gap: 0.2rem;
    }
  }
  .logo-slider-main {
    .brand-item {
      font-size: 16px;
      padding: 0 20px 0px 0px;
    }
    .brand-item:not(:last-child)::after {
      height: 30px;
    }
    .brand-item:not(:last-child)::after {
      margin-left: 20px;
    }
  }
}
@media (max-width: 575.98px) {
  .hero-vina-slide .vina3-scene {
    max-width: 390px;
    padding-top: 12px;
  }
  .hero-vina-slide .vina3-shell-head {
    padding: 12px 14px;
  }
  .hero-vina-slide .vina3-hide-sm {
    display: none;
  }
  .hero-vina-slide .vina3-shell-body {
    min-height: 360px;
    padding: 20px 14px 14px;
  }
  .hero-vina-slide .vina3-shell-foot {
    padding: 0 14px 16px;
  }
  .hero-vina-slide .vina3-cards {
    grid-template-columns: 1fr;
  }
  .hero-vina-slide .vina3-kpis {
    grid-template-columns: 1fr 1fr;
  }
  .hero-vina-slide .vina3-products {
    grid-template-columns: 1fr;
  }
}
