/* =========================
   SECTION
========================= */
.hero-app {
    
  padding: 100px 60px;
  background: radial-gradient(circle at 20% 10%, #0b1f3a, #071326 70%);
  font-family: Inter, system-ui;
  margin-top: 3vh;
}

/* =========================
   LAYOUT
========================= */
.hero-app-wrap {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================
   BADGE
========================= */
.app-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;

  color: #ff8a4c;
  background: rgba(255,122,47,0.12);
  border: 1px solid rgba(255,122,47,0.3);

  margin-bottom: 20px;
  border-radius: 20px;
}

/* =========================
   HEADING
========================= */
.hero-app-left h1 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: #dfe6f3;
  margin-bottom: 24px;
}

/* BLUE TEXT */
.hero-app-left h1 span {
  background: linear-gradient(90deg, #4f7cff, #6aa3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   TEXT
========================= */
.hero-app-left p {
  color: #8fa2c4;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

/* =========================
   BUTTONS
========================= */
.app-actions {
  display: flex;
  gap: 16px;
}

.app-btn {
  padding: 16px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* primary */
.app-btn.primary {
  background: linear-gradient(90deg, #ff7a2f, #ff5a00);
  color: #fff;
  box-shadow: 0 12px 30px rgba(255,122,47,0.35);
}

.app-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(255,122,47,0.5);
}

/* secondary */
.app-btn.secondary {
  color: #c7d2e6;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
}

/* =========================
   IMAGE (STRICT CONTROL)
========================= */
.hero-app-right {
  max-width: 600px;
  margin-left: auto;
}

.app-img {
  position: relative;
  width: 100%;
  height: 480px;

  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* image always fits */
.app-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* subtle glow */
.app-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(80,140,255,0.12), transparent 60%);
}

/* =========================
   GLASS OVERLAY
========================= */
.app-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;

  display: flex;
  gap: 12px;
  align-items: center;

  padding: 16px 18px;
  border-radius: 14px;

  background: rgba(15,35,60,0.7);
  backdrop-filter: blur(12px);

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

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* dot */
.app-overlay .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff8a4c;
}

/* text */
.app-overlay span {
  font-size: 12px;
  color: #8fa2c4;
}

.app-overlay p {
  font-size: 14px;
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .hero-app-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-app-left {
    margin: auto;
  }

  .app-actions {
    justify-content: center;
  }

  .hero-app-right {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .hero-app {
    padding: 70px 20px;
  }

  .app-img {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .app-img {
    height: 260px;
  }
}

/* EXPERIMENTAL */

/* =========================
   SECTION
========================= */
.mobile-heading {
  padding: 100px 20px;
  background: #f4f5f7;
  font-family: Inter, system-ui;
  text-align: center;
}

/* container */
.mobile-heading-wrap {
  max-width: 900px;
  margin: auto;
}

/* =========================
   TOP LINE
========================= */
.heading-line {
  width: 60px;
  height: 3px;
  margin: 0 auto 30px;

  background: linear-gradient(90deg, #4f7cff, #6aa3ff);
  border-radius: 10px;
  opacity: 0.6;
}

/* =========================
   HEADING
========================= */
.mobile-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;

  color: #1f2c3d;
  margin-bottom: 20px;
}

/* orange highlight */
.mobile-heading h2 span {
  color: #ff7a2f;
}

/* =========================
   TEXT
========================= */
.mobile-heading p {
  font-size: 18px;
  line-height: 1.7;
  color: #6b7a90;

  max-width: 720px;
  margin: auto;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .mobile-heading {
    padding: 70px 20px;
  }

  .mobile-heading p {
    font-size: 16px;
  }
}

/* =========================
   SECTION
========================= */
.platform {
  padding: 100px 60px;
  background: radial-gradient(circle at 15% 20%, #132846, #071326 70%);
  font-family: Inter, system-ui;
}

/* =========================
   LAYOUT
========================= */
.platform-wrap {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================
   IMAGE
========================= */
.platform-left {
  position: relative;
}

/* glow card */
.platform-img {
  position: relative;
  padding: 18px;
  border-radius: 26px;

  background: linear-gradient(
    135deg,
    rgba(80,140,255,0.15),
    rgba(255,255,255,0.02)
  );

  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    inset 0 0 60px rgba(80,140,255,0.08);
}

/* actual image */
.platform-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* =========================
   RIGHT CONTENT
========================= */
.platform-right {
  max-width: 520px;
}

/* tag */
.platform-tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #7f9ccf;
  margin-bottom: 16px;
  display: inline-block;
}

/* heading */
.platform-right h2 {
  font-size: clamp(36px, 4vw, 48px);
  color: #dfe6f3;
  margin-bottom: 20px;
  font-weight: 700;
}

/* paragraph */
.platform-right p {
  color: #8fa2c4;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* =========================
   LIST
========================= */
.platform-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.platform-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #c7d2e6;
}

/* custom bullet */
.platform-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color: #ff7a2f;
}

/* =========================
   BUTTON
========================= */
.platform-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 12px;
  background: #f25c12;
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 12px 30px rgba(242,92,18,0.4);
  transition: all 0.3s ease;
}

.platform-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(242,92,18,0.6);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .platform-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .platform-right {
    margin: auto;
  }

  .platform-list li {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .platform {
    padding: 70px 20px;
  }
}

/* IOS  */
/* =========================
   SECTION
========================= */
.platform-light {
  padding: 100px 60px;
  background: #f4f5f7;
  font-family: Inter, system-ui;
}

/* =========================
   LAYOUT
========================= */
.platform-light-wrap {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =========================
   LEFT
========================= */
.platform-light-left {
  max-width: 520px;
}

/* tag */
.platform-light-tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #4f7cff;
  margin-bottom: 16px;
  display: inline-block;
}

/* heading */
.platform-light-left h2 {
  font-size: clamp(36px, 4vw, 48px);
  color: #1f2c3d;
  margin-bottom: 20px;
  font-weight: 700;
}

/* paragraph */
.platform-light-left p {
  color: #6b7a90;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* =========================
   LIST
========================= */
.platform-light-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.platform-light-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #4a5b75;
}

/* icon */
.platform-light-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;

  color: #ff7a2f;
}

/* =========================
   BUTTON
========================= */
.platform-light-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 10px;
  background: #f25c12;
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(242,92,18,0.3);
  transition: all 0.3s ease;
}

.platform-light-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(242,92,18,0.45);
}

/* =========================
   IMAGE FRAME (IMPORTANT)
========================= */
.platform-light-img {
  padding: 18px;
  border-radius: 24px;

  background: #dcdfe4;

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.04),
    0 20px 60px rgba(0,0,0,0.15);
}

/* image */
.platform-light-img img {
  width: 100%;
  height: 100%;
  display: block;

  border-radius: 18px;
  object-fit: cover;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .platform-light-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .platform-light-left {
    margin: auto;
  }

  .platform-light-list li {
    text-align: left;
  }

  .platform-light-right {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .platform-light {
    padding: 70px 20px;
  }
}

/* FLUTTEr  */

/* =========================
   SECTION
========================= */
.dual-cards {
  padding: 100px 60px;
  background: radial-gradient(circle at 20% 10%, #0b1f3a, #071326 70%);
  font-family: Inter, system-ui;
}

/* layout */
.dual-wrap {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* =========================
   CARD
========================= */
.dual-card {
  padding: 36px;
  border-radius: 26px;

  background: linear-gradient(
    145deg,
    rgba(20,40,70,0.9),
    rgba(10,20,40,0.9)
  );

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

  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 0 60px rgba(80,140,255,0.06);

  transition: all 0.4s ease;
}

/* hover */
.dual-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 50px 120px rgba(0,0,0,0.8),
    inset 0 0 80px rgba(80,140,255,0.1);
}

/* =========================
   ICON
========================= */
.dual-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.06);
  color: #6aa3ff;
  font-weight: 700;
  margin-bottom: 18px;
}

/* =========================
   TEXT
========================= */
.dual-card h3 {
  font-size: 26px;
  color: #dfe6f3;
  margin-bottom: 12px;
}

.dual-card p {
  color: #8fa2c4;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* =========================
   BUTTON
========================= */
.dual-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  background: #f25c12;
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(242,92,18,0.4);
  transition: all 0.3s ease;

  margin-bottom: 24px;
}

.dual-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(242,92,18,0.6);
}

/* =========================
   IMAGE (STRICT CONTROL)
========================= */
.dual-img {
  width: 100%;
  height: 240px;

  border-radius: 16px;
  overflow: hidden;

  margin-top: 10px;
}

.dual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .dual-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dual-cards {
    padding: 70px 20px;
  }

  .dual-img {
    height: 200px;
  }
}

/* CTA  */


/* =========================
   SECTION
========================= */
.hybrid {
  padding: 100px 60px;
  background: #f4f5f7;
  font-family: Inter, system-ui;
}

/* =========================
   WRAPPER
========================= */
.hybrid-wrap {
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;

  border-radius: 28px;
  overflow: hidden;

  background: #2c3f5c;
}

/* =========================
   IMAGE SIDE
========================= */
.hybrid-left {
  position: relative;
  height: 100%;
  min-height: 360px;
}

/* image */
.hybrid-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FADE EFFECT (KEY PART) */
.hybrid-left::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(244,245,247,0.9) 0%,
    rgba(244,245,247,0.6) 20%,
    rgba(44,63,92,0.7) 55%,
    #2c3f5c 100%
  );
}

/* =========================
   RIGHT CONTENT
========================= */
.hybrid-right {
  padding: 60px;
  color: #fff;
}

/* heading */
.hybrid-right h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

/* text */
.hybrid-right p {
  color: #c7d2e6;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* =========================
   BUTTON
========================= */
.hybrid-btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 12px;
  background: #f25c12;
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(242,92,18,0.4);
  transition: all 0.3s ease;
}

.hybrid-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(242,92,18,0.6);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .hybrid-wrap {
    grid-template-columns: 1fr;
  }

  .hybrid-left {
    height: 260px;
  }

  .hybrid-left::after {
    background: linear-gradient(
      to bottom,
      rgba(44,63,92,0.2),
      #2c3f5c
    );
  }

  .hybrid-right {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hybrid {
    padding: 70px 20px;
  }

  .hybrid-right {
    padding: 40px 20px;
  }

  .hybrid-right h2 {
    font-size: 30px;
  }
}

/* =========================
   SECTION
========================= */
.stack {
  padding: 100px 60px;
  background: radial-gradient(circle at 20% 10%, #0b1f3a, #071326 70%);
  font-family: Inter, system-ui;
}

/* container */
.stack-wrap {
  max-width: 1300px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
.stack-header h2 {
  font-size: 42px;
  color: #dfe6f3;
  margin-bottom: 10px;
}

.stack-header p {
  color: #8fa2c4;
  margin-bottom: 40px;
}

/* =========================
   TABLE CONTAINER
========================= */
.stack-table {
  border-radius: 24px;
  overflow: hidden;

  background: linear-gradient(
    145deg,
    rgba(20,40,70,0.9),
    rgba(10,20,40,0.95)
  );

  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 0 60px rgba(80,140,255,0.05);
}

/* =========================
   ROW
========================= */
.stack-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.5fr 1fr;

  padding: 20px 28px;
  align-items: center;

  color: #c7d2e6;
}

/* subtle divider */
.stack-row:not(.stack-head) {
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* =========================
   HEADER ROW
========================= */
.stack-head {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;

  color: #7f9ccf;
  background: rgba(255,255,255,0.02);
}

/* =========================
   CATEGORY
========================= */
.cat {
  font-weight: 600;
  color: #dfe6f3;
}

/* =========================
   BADGES
========================= */
.badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* variants */
.badge.critical {
  background: rgba(255,122,47,0.15);
  color: #ff9b5f;
}

.badge.sovereign {
  background: rgba(80,140,255,0.15);
  color: #9dbbff;
}

.badge.internal {
  background: rgba(255,255,255,0.08);
  color: #b7c6db;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .stack-table {
    overflow-x: auto;
  }

  .stack-row {
    min-width: 700px;
  }
}

@media (max-width: 768px) {
  .stack {
    padding: 70px 20px;
  }
}

.pipeline-pin {
  position: relative;
  /* min-height: 100vh; ✅ FIX */
  background: #f4f5f7;
  font-family: Inter, system-ui;
  overflow: visible; /* ✅ FIX */
}

.pipeline-panel {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 110px;
  text-align: center;
  position: relative;
}

.pipeline-panel h2 {
  font-size: 42px;
  color: #1f2c3d;
  margin: 0 0 80px;
}

.pipeline-track {
  position: absolute;
  top: 188px;
  left: 7%;
  right: 7%;
  height: 2px;
  z-index: 0;
}

.pipeline-line {
  position: absolute;
  inset: 0;
  background: rgba(120, 140, 170, 0.22);
  border-radius: 999px;
}

.pipeline-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #7fa5ff, #a9bfff);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(127, 165, 255, 0.3);
}

.pipeline-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
}

.circle {
  width: 96px;
  height: 96px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #243b5a;
  color: #a9c2ff;
  border: 3px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  font-size: 22px;
  font-weight: 700;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.step:hover .circle {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(70, 110, 190, 0.18);
}

.step.is-active .circle,
.step.is-done .circle {
  background: #9dbbff;
  color: #17315c;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(120,150,255,0.28);
  transform: scale(1.06);
}

.step h4 {
  font-size: 20px;
  color: #1f2c3d;
  margin: 0 0 8px;
}

.step p {
  max-width: 190px;
  margin: 0 auto;
  color: #6b7a90;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pipeline-pin {
    height: auto;
    overflow: visible;
  }

  .pipeline-panel {
    width: 100%;
    padding: 80px 20px;
  }

  .pipeline-track {
    display: none;
  }

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

@media (max-width: 560px) {
  .pipeline-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-panel h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }
}

/* =========================
   OUTER SECTION
========================= */
.cta-pro {
  position: relative;
  padding: 120px 40px;
  background: #061326;
  overflow: hidden;
  isolation: isolate;
}

/* particles on OUTER section only */
.cta-section-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* =========================
   INNER CARD
========================= */
.cta-pro-inner {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: auto;
  padding: 120px 40px;
  text-align: center;

  border-radius: 40px;
  overflow: hidden;

  background: #07152a;
  box-shadow:
    0 40px 120px rgba(0,0,0,0.7),
    inset 0 0 80px rgba(80,140,255,0.08);
}

/* bg image only on card */
.cta-pro-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: url("../images/overview/CTA.jpg") center center / cover no-repeat;
  transform: scale(1.06);
  transform-origin: center center;
  animation: ctaBgFloat 18s ease-in-out infinite alternate;
}

/* dark overlay only on card */
.cta-pro-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 12%, rgba(120,160,255,0.12), transparent 34%),
    linear-gradient(to bottom, rgba(4,15,30,0.72), rgba(4,15,30,0.88));
}

/* content above overlays */
.cta-pro-inner > h2,
.cta-pro-inner > p,
.cta-pro-inner > .cta-pro-btn {
  position: relative;
  z-index: 2;
}

.cta-pro h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #dfe6f3;
  margin-bottom: 24px;
}

.cta-pro p {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.7;
  color: #9bb0d1;
}

.cta-pro-btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  color: #0f2a55;
  text-decoration: none;
  background: linear-gradient(90deg, #b6c9ff, #8eaaff);
  box-shadow: 0 15px 40px rgba(120,150,255,0.35);
  transition: all 0.3s ease;
}

.cta-pro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(120,150,255,0.5);
}

@keyframes ctaBgFloat {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.1) translate3d(0, -8px, 0);
  }
  100% {
    transform: scale(1.08) translate3d(8px, 0, 0);
  }
}

@media (max-width: 768px) {
  .cta-pro {
    padding: 80px 20px;
  }

  .cta-pro-inner {
    padding: 80px 20px;
    border-radius: 24px;
  }

  .cta-pro h2 {
    font-size: 34px;
  }

  .cta-pro p {
    font-size: 16px;
  }
}
.pipeline-pin {
  margin-top: 5vh;
  position: relative;
  /* min-height: 100vh; FULL SCREEN LOCK */
  
  height: auto;
  display: flex;
  align-items: center; /* CENTER vertically */

  justify-content: center;
  background: #f4f5f7;
  overflow: hidden; /* IMPORTANT */
}

.pipeline-panel {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.pipeline-track {
  position: absolute;
  top: 50%; /* CENTER */
  transform: translateY(-50%);
  left: 7%;
  right: 7%;
  height: 2px;
}
@media (max-width: 900px) {
  .pipeline-pin {
    height: auto;
    display: block;
    overflow: visible;
  }

  .pipeline-track {
    display: none;
  }
}

@media (max-width: 900px) {
  .pipeline-pin {
    height: auto;
    display: block;
    padding: 60px 20px;
  }

  .pipeline-grid {
    grid-template-columns: 1fr; /* ONE COLUMN */
    gap: 50px;
  }

  .step {
    text-align: center;
  }

  .pipeline-track {
    display: none;
  }
}
.step {
  opacity: 0.4;
  transition: all 0.4s ease;
}

.step.is-active {
  opacity: 1;
  transform: scale(1.02);
}
@media (max-width: 900px) {

  .pipeline-pin {
    height: auto;
    padding: 60px 20px;
  }

  .pipeline-panel {
    padding: 0;
  }

  .pipeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* last item center (for 5 steps) */
  .pipeline-grid .step:nth-child(5) {
    grid-column: span 2;
    max-width: 260px;
    margin: 0 auto;
  }

  .pipeline-track {
    display: none;
  }

  .circle {
    width: 72px;
    height: 72px;
    font-size: 18px;
  }

  .step h4 {
    font-size: 16px;
  }

  .step p {
    font-size: 13px;
  }

}

/* =========================================================
   GLOBAL RESPONSIVE FIXES — OVERVIEW PAGE
   ADD THIS AT THE VERY END OF overview.css
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

/* prevent horizontal scroll issues */
html,
body {
  overflow-x: hidden;
}

.ai-page,
#smooth-content,
#smooth-wrapper {
  overflow-x: clip;
}

/* shared section breathing */
.hero-app,
.mobile-heading,
.platform,
.platform-light,
.dual-cards,
.hybrid,
.stack,
.pipeline-pin,
.cta-pro {
  width: 100%;
}

/* shared inner width safety */
.hero-app-wrap,
.mobile-heading-wrap,
.platform-wrap,
.platform-light-wrap,
.dual-wrap,
.hybrid-wrap,
.stack-wrap,
.pipeline-panel,
.cta-pro-inner {
  width: min(100%, 1300px);
  margin-inline: auto;
}

/* keep text from becoming too wide */
.hero-app-left,
.platform-right,
.platform-light-left,
.hybrid-right {
  min-width: 0;
}

/* =========================================================
   LARGE TABLETS / SMALL LAPTOPS
========================================================= */
@media (max-width: 1200px) {
  .hero-app,
  .platform,
  .platform-light,
  .dual-cards,
  .hybrid,
  .stack,
  .cta-pro {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-app-wrap,
  .platform-wrap,
  .platform-light-wrap,
  .dual-wrap,
  .hybrid-wrap {
    gap: 48px;
  }

  .hero-app-right,
  .platform-left,
  .platform-light-right {
    min-width: 0;
  }

  .app-img {
    height: 420px;
  }

  .dual-img {
    height: 220px;
  }

  .hybrid-left {
    min-height: 300px;
  }
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
  .hero-app,
  .mobile-heading,
  .platform,
  .platform-light,
  .dual-cards,
  .hybrid,
  .stack,
  .pipeline-pin,
  .cta-pro {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-app-wrap,
  .platform-wrap,
  .platform-light-wrap,
  .dual-wrap,
  .hybrid-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }

  .hero-app-left,
  .platform-right,
  .platform-light-left,
  .hybrid-right {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .hero-app-left p,
  .platform-right p,
  .platform-light-left p,
  .hybrid-right p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-app-right,
  .platform-left,
  .platform-light-right {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

  .app-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .platform-list,
  .platform-light-list {
    display: inline-block;
    text-align: left;
  }

  .dual-wrap {
    grid-template-columns: 1fr;
  }

  .stack-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
  }

  .stack-row {
    min-width: 760px;
  }

  .pipeline-panel {
    width: 100%;
    padding-inline: 8px;
  }

  .pipeline-grid {
    gap: 20px;
  }

  .circle {
    width: 82px;
    height: 82px;
    font-size: 18px;
  }

  .step h4 {
    font-size: 18px;
  }

  .step p {
    max-width: 160px;
    font-size: 13px;
  }

  .cta-pro-inner {
    padding: 90px 28px;
    border-radius: 28px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .hero-app,
  .mobile-heading,
  .platform,
  .platform-light,
  .dual-cards,
  .hybrid,
  .stack,
  .pipeline-pin,
  .cta-pro {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-app-left h1,
  .platform-right h2,
  .platform-light-left h2,
  .hybrid-right h2,
  .stack-header h2,
  .pipeline-panel h2 {
    line-height: 1.12;
  }

  .hero-app-left h1 {
    font-size: clamp(34px, 8vw, 46px);
  }

  .mobile-heading h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .platform-right h2,
  .platform-light-left h2,
  .hybrid-right h2,
  .stack-header h2,
  .pipeline-panel h2 {
    font-size: clamp(28px, 6vw, 34px);
  }

  .hero-app-left p,
  .mobile-heading p,
  .platform-right p,
  .platform-light-left p,
  .hybrid-right p,
  .stack-header p,
  .cta-pro p {
    font-size: 15px;
    line-height: 1.65;
  }

  .app-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .app-btn {
    width: 100%;
    text-align: center;
  }

  .app-img {
    height: 300px;
    border-radius: 16px;
  }

  .app-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    gap: 10px;
    border-radius: 12px;
  }

  .app-overlay span {
    font-size: 10px;
  }

  .app-overlay p {
    font-size: 12px;
    line-height: 1.4;
  }

  .platform-img,
  .platform-light-img {
    border-radius: 18px;
    padding: 12px;
  }

  .platform-img img,
  .platform-light-img img {
    border-radius: 14px;
  }

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

  .dual-card h3 {
    font-size: 22px;
  }

  .dual-card p {
    font-size: 14px;
  }

  .dual-img {
    height: 180px;
    border-radius: 14px;
  }

  .hybrid-wrap {
    border-radius: 22px;
  }

  .hybrid-left {
    min-height: 240px;
  }

  .hybrid-right {
    padding: 28px 20px;
  }

  .stack-row {
    padding: 16px 18px;
    min-width: 680px;
    font-size: 14px;
  }

  .stack-head {
    font-size: 11px;
    letter-spacing: 1px;
  }

  /* MOBILE PIPELINE = stacked layout, no horizontal clipping */
  .pipeline-pin {
    height: auto !important;
    min-height: unset !important;
    display: block !important;
    overflow: visible !important;
  }

  .pipeline-panel {
    width: 100%;
    padding: 0;
  }

  .pipeline-track {
    display: none !important;
  }

  .pipeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step {
    max-width: 340px;
    margin-inline: auto;
  }

  .circle {
    width: 74px;
    height: 74px;
    margin-bottom: 16px;
    font-size: 17px;
  }

  .step h4 {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .step p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.55;
  }

  .cta-pro {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-pro-inner {
    padding: 72px 20px;
    border-radius: 22px;
  }

  .cta-pro h2 {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.12;
  }

  .cta-pro-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 480px) {
  .hero-app,
  .mobile-heading,
  .platform,
  .platform-light,
  .dual-cards,
  .hybrid,
  .stack,
  .pipeline-pin,
  .cta-pro {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-app-left h1 {
    font-size: 32px;
  }

  .app-badge,
  .platform-tag,
  .platform-light-tag {
    font-size: 10px;
    letter-spacing: 1.1px;
  }

  .app-img {
    height: 250px;
  }

  .platform-list li,
  .platform-light-list li {
    padding-left: 22px;
    font-size: 14px;
  }

  .platform-list li::before,
  .platform-light-list li::before {
    font-size: 12px;
  }

  .dual-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .dual-img {
    height: 165px;
  }

  .hybrid-left {
    min-height: 210px;

  }

  .stack-row {
    min-width: 620px;
  }

  .circle {
    width: 68px;
    height: 68px;
    font-size: 16px;
  }

  .cta-pro-inner {
    padding: 60px 16px;
  }
}

.stack-mobile-indicator {
  display: none;
}

@media (max-width: 768px) {
  .stack-mobile-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 14px;

    font-size: 13px;
    color: #8fa2c4;
    text-align: center;

    animation: stackHintFloat 1.6s ease-in-out infinite;
  }

  .stack-mobile-indicator span {
    display: inline-block;
    font-size: 16px;
    color: #9dbbff;
    animation: stackHintArrow 1s ease-in-out infinite;
  }
}

@keyframes stackHintFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

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

.stack-mobile-indicator {
  display: none;
}

@media (max-width: 768px) {
  .stack-mobile-indicator {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    margin-top: 18px;
    padding: 14px 18px 10px;

    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;

    backdrop-filter: blur(8px);
  }

  /* animated shimmer overlay */
  .stack-mobile-indicator::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.12),
      transparent
    );
    animation: hintShine 2.8s linear infinite;
  }

  .hint-text {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #a9bfff;
    text-align: center;

    animation: hintFloat 1.8s ease-in-out infinite;
  }

  .hint-arrows {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;

    font-size: 18px;
    color: #7fa5ff;
  }

  .hint-arrows span:first-child {
    animation: arrowLeft 1.1s ease-in-out infinite;
  }

  .hint-arrows span:last-child {
    animation: arrowRight 1.1s ease-in-out infinite;
  }

  .hint-line {
    position: relative;
    width: 90px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    overflow: hidden;
  }

  .hint-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #6f9dff, #b7cbff);
    box-shadow: 0 0 12px rgba(111,157,255,0.5);
    animation: lineSlide 1.4s ease-in-out infinite;
  }
}

@keyframes hintFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes arrowLeft {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-6px);
    opacity: 1;
  }
}

@keyframes arrowRight {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

@keyframes lineSlide {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}

@keyframes hintShine {
  0% {
    left: -120%;
  }
  100% {
    left: 140%;
  }
}

/* =================================
   OVERVIEW PAGE BUTTON EFFECTS
   solid -> transparent border
   glass -> left-to-right fill
   ================================= */

.app-btn.primary,
.app-btn.secondary,
.platform-btn,
.platform-light-btn,
.dual-btn,
.hybrid-btn,
.cta-pro-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    color .35s ease,
    border-color .35s ease,
    background-color .35s ease,
    background .35s ease,
    transform .28s ease,
    box-shadow .35s ease;
}

/* sliding fill */
.app-btn.primary::before,
.app-btn.secondary::before,
.platform-btn::before,
.platform-light-btn::before,
.dual-btn::before,
.hybrid-btn::before,
.cta-pro-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-102%);
  transition: transform .52s cubic-bezier(.22,1,.36,1);
  background: var(--hover-fill, transparent);
}

/* gloss sweep */
.app-btn.primary::after,
.app-btn.secondary::after,
.platform-btn::after,
.platform-light-btn::after,
.dual-btn::after,
.hybrid-btn::after,
.cta-pro-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 52%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.08) 35%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.08) 65%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left .65s cubic-bezier(.22,1,.36,1);
}

/* text above effect */
.app-btn.primary,
.app-btn.secondary,
.platform-btn,
.platform-light-btn,
.dual-btn,
.hybrid-btn,
.cta-pro-btn {
  z-index: 1;
}

/* hover motion */
.app-btn.primary:hover,
.app-btn.secondary:hover,
.platform-btn:hover,
.platform-light-btn:hover,
.dual-btn:hover,
.hybrid-btn:hover,
.cta-pro-btn:hover {
  transform: translateY(-3px);
}

.app-btn.primary:hover::before,
.app-btn.secondary:hover::before,
.platform-btn:hover::before,
.platform-light-btn:hover::before,
.dual-btn:hover::before,
.hybrid-btn:hover::before,
.cta-pro-btn:hover::before {
  transform: translateX(0);
}

.app-btn.primary:hover::after,
.app-btn.secondary:hover::after,
.platform-btn:hover::after,
.platform-light-btn:hover::after,
.dual-btn:hover::after,
.hybrid-btn:hover::after,
.cta-pro-btn:hover::after {
  left: 140%;
}

/* ---------------------------------
   SOLID BUTTONS -> TRANSPARENT BORDER
   --------------------------------- */

.app-btn.primary,
.platform-btn,
.platform-light-btn,
.dual-btn,
.hybrid-btn,
.cta-pro-btn {
  --hover-fill: transparent;
  border-width: 2px !important;
}

/* hero primary orange */
.app-btn.primary {
  border-style: solid;
  border-color: #ff7a2f;
}

.app-btn.primary:hover {
  background: transparent !important;
  color: #ff7a2f !important;
  border-color: #ff7a2f !important;
  box-shadow:
    0 0 0 1px rgba(255,122,47,.14),
    0 14px 30px rgba(255,120,40,.14) !important;
}

/* platform/other solid buttons - blue style */
.platform-btn,
.platform-light-btn,
.dual-btn,
.hybrid-btn,
.cta-pro-btn {
  border-style: solid;
  border-color: #6aa3ff;
}

.platform-btn:hover,
.platform-light-btn:hover,
.dual-btn:hover,
.hybrid-btn:hover,
.cta-pro-btn:hover {
  background: transparent !important;
  color: #6aa3ff !important;
  border-color: #6aa3ff !important;
  box-shadow:
    0 0 0 1px rgba(106,163,255,.14),
    0 14px 30px rgba(80,140,255,.14) !important;
}

/* ---------------------------------
   GLASS BUTTON -> LIGHT FILL SLIDES IN
   --------------------------------- */

.app-btn.secondary {
  --hover-fill: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.18) !important;
}

.app-btn.secondary:hover {
  color: #ffffff !important;
  border-color: rgba(255,255,255,.30) !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 12px 26px rgba(0,0,0,.16) !important;
}

/* focus */
.app-btn.primary:focus-visible,
.app-btn.secondary:focus-visible,
.platform-btn:focus-visible,
.platform-light-btn:focus-visible,
.dual-btn:focus-visible,
.hybrid-btn:focus-visible,
.cta-pro-btn:focus-visible {
  outline: 2px solid rgba(90,150,255,.7);
  outline-offset: 3px;
}





.pipeline-pin {
  min-height: 100dvh; /* 👈 modern fix for mobile */
}

.app-img {
  transition: transform 0.4s ease;
}

.app-img:hover {
  transform: perspective(900px) rotateX(4deg) rotateY(-4deg) scale(1.02);
}

/* moving glow */
.app-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(120,160,255,0.25),
    transparent 60%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity .3s ease;
}

.app-img:hover::before {
  opacity: 1;
}

.dual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #b86a0449, transparent);


  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.hybrid-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(12, 60, 233, 0.15),
    transparent
  );
  opacity: 0;
  transition: opacity .4s ease;
}

.hybrid-wrap:hover::before {
  opacity: 1;
}

.stack-row:not(.stack-head):hover {
  background: rgba(120,150,255,0.08);
  transform: scale(1.01);
  transition: all 0.25s ease;
}

.stack-row:not(.stack-head)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(#6aa3ff, #9dbbff);
  transition: width .3s ease;
}

.stack-row:hover::before {
  width: 4px;
}

.step.is-active .circle {
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(120,150,255,0.5); }
  50% { box-shadow: 0 0 25px rgba(120,150,255,0.8); }
  100% { box-shadow: 0 0 0 rgba(120,150,255,0.5); }
}

.floating-orbs span {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: floatOrb 18s infinite ease-in-out;
}

.floating-orbs span:nth-child(1) {
  background: #6aa3ff;
  top: 10%;
  left: 10%;
}

.floating-orbs span:nth-child(2) {
  background: #ff7a2f;
  top: 60%;
  left: 70%;
  animation-delay: 3s;
}

.floating-orbs span:nth-child(3) {
  background: #9dbbff;
  top: 30%;
  left: 50%;
  animation-delay: 6s;
}

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

a, button {
  will-change: transform;
}

section {
  transform: translateZ(0);
}

.mesh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mesh-bg span {
  position: absolute;
  width: 600px;
  height: 600px;
  filter: blur(120px);
  opacity: 0.4;
  animation: meshMove 2s infinite alternate ease-in-out;
}

.mesh-bg span:nth-child(1) {
  background: #8b5b018b;
  top: -100px;
  left: -100px;
}

.mesh-bg span:nth-child(2) {
  background: #020c5d9c;
  bottom: -150px;
  right: -100px;
  animation-delay: 2s;
}

.mesh-bg span:nth-child(3) {
  background: #0027832a;
  top: 40%;
  left: 50%;
  animation-delay: 2s;
}

@keyframes meshMove {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(60px,-40px) scale(1.1); }
  100% { transform: translate(-40px,60px) scale(1.05); }
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.05;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
}


.dual-card:hover {
  box-shadow:
    0 0 0 1px rgba(120,150,255,0.2),
    0 30px 80px rgba(0,0,0,0.8),
    inset 0 0 60px rgba(120,150,255,0.1);
}


.grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}


.hero-app,
.platform,
.dual-cards,
.cta-pro {
  position: relative;
  overflow: hidden;
}




.dual-card::before {
  pointer-events: none;
}

.dual-btn {
  position: relative;
  z-index: 5;
}

.dual-card {
  position: relative;
  z-index: 2;
}

.dual-btn {
  position: relative;
  z-index: 10;
}

.dual-card * {
  position: relative;
  z-index: 2;
}

.dual-card::before,
.mesh-bg,
.mesh-bg span {
  pointer-events: none !important;
}

.dual-card { z-index: 2; position: relative; }
.dual-btn { z-index: 10; position: relative; }

.mesh-bg,
.mesh-bg span,
.dual-card::before {
  pointer-events: none;
}