:root {

  /* ===== COLORS ===== */

  --primary: #053b2f;
  --primary-light: #0b5d47;
  --primary-dark: #02261f;

  --secondary: #f7c948;
  --secondary-light: #ffdc73;
  --secondary-dark: #e8b92d;

  --white: #ffffff;
  --black: #111827;

  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;

  --border-color: #e5e7eb;
  --bg-light: #f8fafc;

  /* ===== GRADIENT ===== */

  --hero-gradient:
    linear-gradient(
      135deg,
      #053b2f 0%,
      #0b5d47 100%
    );

  /* ===== FONTS ===== */

  --font-primary: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;

  /* ===== FONT SIZE ===== */

  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-md: 16px;
  --fs-lg: 18px;
  --fs-xl: 24px;
  --fs-2xl: 36px;
  --fs-3xl: 48px;
  --fs-4xl: 64px;

  /* ===== FONT WEIGHT ===== */

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;

  /* ===== SPACING ===== */

  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* ===== BORDER RADIUS ===== */

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* ===== SHADOW ===== */

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);

  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);

  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);

  /* ===== TRANSITION ===== */

  --transition-fast: all 0.3s ease;
  --transition-normal: all 0.5s ease;
  --transition-slow: all 0.8s ease;

  /* ===== CONTAINER ===== */

  --container-width: 1536px;
  --container-padding: 16px;

  /* ===== HEADER ===== */

  --header-height: 90px;

  /* ===== Z INDEX ===== */

  --z-dropdown: 100;
  --z-sticky: 500;
  --z-fixed: 1000;
  --z-modal: 9999;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  padding-inline: var(--container-padding);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}









@media (max-width: 991.98px) {
   .navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: rgb(248 248 248 / 65%);
    background-color: #ffffff;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}


    .custom-navbar .navbar-collapse {
      background: #053b2f;
        order: 4;
        width: 100%;
        flex-basis: 100%;
        margin-top: 10px;
        padding: 0;
    }

    .custom-navbar .navbar-nav {
        width: 100%;
        gap: 0 !important;
        padding: 0;
        margin: 0;
    }

    .custom-navbar .nav-item {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .custom-navbar .nav-link {
        width: 100%;
        padding: 10px 4px;
        margin: 0;
        line-height: 1.4;
    }


    /* =========================
       DROPDOWN
    ========================= */

    .custom-navbar .dropdown-menu {
        position: static !important;

        /* VERY IMPORTANT */
        display: none;

        width: 100%;
        min-width: 0;

        margin: 0 !important;
        padding: 0 !important;

        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: #fff;
    }

    /* Only opened dropdown gets displayed */
    .custom-navbar .dropdown-menu.show {
        display: block;
    }


    /* =========================
       ABOUT DROPDOWN ITEMS
    ========================= */

    .custom-navbar .about-menu .dropdown-item {
        padding: 9px 12px;
        margin: 0;
    }


    /* =========================
       PRODUCT DROPDOWN
    ========================= */

    .custom-navbar .product-menu {
        padding: 0 !important;
    }

    .custom-navbar .product-menu .dropdown-header {
        padding: 10px 16px 8px;
        margin: 0;
    }

    .custom-navbar .product-menu .dropdown-header h6 {
        margin: 0 0 4px;
    }

    .custom-navbar .product-menu .dropdown-header p {
        margin: 0;
    }

    .custom-navbar .dr-prd {
        margin: 0;
        padding: 0;
    }

    .custom-navbar .product-item {
        display: flex;
        align-items: center;
        gap: 12px;

        padding: 10px 16px;
        margin: 0;
    }


    /* =========================
       NORMAL MENU ITEMS
    ========================= */

    .custom-navbar .nav-item:not(.dropdown) .nav-link {
        padding: 10px 4px;
    }

}
/* navbar css */
.custom-navbar {
    background: #053b2f;
    height: 82px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    font-family: var(--font-primary);
}
.custom-navbar {
    background: #053b2f;
    height: 82px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    font-family: var(--font-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-brand img {
    height: 55px;
}

.nav-link {
        color: #ffffffE6;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #ffd64d;
}

.chevron {
    font-size: 11px;
    transition: 0.35s ease;
}

.custom-dropdown {
    position: relative;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;
    border: none;
    border-radius: 22px;
    box-shadow: 0 15px 50px rgba(0,0,0,.15);
    overflow: hidden;
}

.custom-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown:hover .chevron {
    transform: rotate(180deg);
}


/* =========================================================
   ACTIVE NAV LINK
   Added only for current-page indication
========================================================= */

.custom-navbar .nav-link.active {
    color: #ffd64d !important;
}


/* ABOUT */

.about-menu {
  width: 230px;
    padding: 0;
    top: 37px;
    border-radius: 12px;
}

.dropdown-item {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown-item span{
        font-size: 14px;
    font-weight: 300;
}
.active-item {
    background: #f8f1d8;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

/* PRODUCT */

.product-menu {
    width: 480px;
    top: 33px;
    left: -80px;
    padding: 0;
}

.dropdown-header {
    padding: 12px 24px;
    border-bottom: 1px solid #eaeaea;
}

.dropdown-header h6 {
    font-size: 15px;
    font-weight: 600;
    color: #252626;
}

.dropdown-header p {
    color: #64748b;
    margin: 0;
    font-size: 13px;
}
.dr-prd{
    padding: 6px;
    /* border: 1px solid red; */
}
.product-item {
    display: flex;
    gap: 16px;
    padding: 8px 24px;
    text-decoration: none;
    color: #111827;
    transition: .3s;
    border: 1px soild #cfcfcf;
    border-radius: 10px;
}

.product-item:hover {
    background: #edeeee;
}
.product-item:hover h6{
   color: #053b2f;
}
.icon-box {
    width: 46px;
    height: 46px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-icon{
    width: 30px;
}
.product-item h6 {
    margin-bottom: 4px;
    font-size: 14px;
}

.product-item p {
    color: #64748b;
    margin: 0;
    font-size: 11.5px;
}

/* SIGN IN */

.signin-btn {
    border: none;
    background: #ffd64d;
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 600;
}

/* =========================================================
   BASE HELPERS
========================================================= */
.accent{ color: #059669; }
.accent-light{ color: var(--secondary); }
.normal-case{ text-transform: none; }
.section-label{ font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-secondary); text-transform: uppercase; letter-spacing: .05em; }

.btn{
  font-family: var(--font-primary);
  border: none; cursor: pointer;
  border-radius: var(--radius-full);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  transition: var(--transition-fast);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn--gold{
  background: var(--secondary); color: var(--primary-dark);
  padding: 14px 28px;
}
.btn--gold:hover{ background: var(--secondary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold svg{ width:18px; height:18px; }
.btn--outline{
  background: var(--white); color: var(--text-primary);
  border: 1px solid var(--border-color); padding: 12px 22px;
}
.btn--outline:hover{ border-color: var(--primary-light); color: var(--primary); }
.btn--play{ background: none; color: var(--text-primary); font-weight: var(--fw-medium); }
.play-circle{
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-color); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.play-circle svg{ width:16px; height:16px; fill: var(--text-primary); transition: var(--transition-fast); }
.btn--play:hover .play-circle{ background: var(--primary); }
.btn--play:hover .play-circle svg{ fill: var(--white); }
.waves{ position:absolute; inset:0; }
.waves i{
  position:absolute; inset:0; border-radius:50%; border:1px solid var(--primary-light);
  opacity:0; animation: waveOut 2.4s ease-out infinite;
}
.waves i:nth-child(2){ animation-delay:.6s; }
.waves i:nth-child(3){ animation-delay:1.2s; }
@keyframes waveOut{
  0%{ transform: scale(.9); opacity:.6; }
  100%{ transform: scale(1.6); opacity:0; }
}

.pill-tag{
  display: inline-flex; align-items: center; border-radius: var(--radius-full);
  border: 1px solid #d7ede4; background: #ecf7f2; color: var(--primary);
  padding: 8px 18px; font-size: var(--fs-xs); font-weight: var(--fw-semibold);
 letter-spacing: .12em;
}
.pill-tag--dark{ border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: var(--secondary-light); backdrop-filter: blur(8px); }

.eyebrow-pill{
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0;
  border-radius: var(--radius-full); border: 1px solid #d7ede4; background: #ecf7f2;
  color: var(--primary); padding: 10px 20px; font-size: 11px; font-weight: var(--fw-bold);
  letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow-pill .dot{ margin: 0 12px; color: var(--secondary-dark); }

/* reveal-up animation, toggled by JS via IntersectionObserver */
.reveal-up{ opacity:0; transform: translateY(30px); transition: var(--transition-slow); }
.reveal-up.in-view{ opacity:1; transform: translateY(0); }

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

.hero{
  position: relative;
  background: var(--white);
  overflow: hidden;
  /* padding-top: 20px; */
  height: 700px;
}

.hero-glow{ position:absolute; border-radius:50%; filter: blur(100px); pointer-events:none; z-index:0; }
.hero-glow--1{ left:-150px; top:5%; width:500px; height:500px; background: rgba(11,93,71,.18); }
.hero-glow--2{ right:-150px; top:10%; width:450px; height:450px; background: rgba(247,201,72,.22); }
.hero-glow--3{ left:50%; top:40%; width:600px; height:600px; transform: translateX(-50%); background: rgba(11,93,71,.10); }

.hero-slider{
    /* margin-top: 20px; */
     /* position: relative; */
      z-index: 2;
     }

.hero-nav{
  position:absolute; top:50%; transform: translateY(-50%);
  z-index: 20; width:44px; height:44px; border-radius:50%;
  background: var(--white); border: 1px solid var(--border-color);
  color: var(--text-primary); font-size: 16px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-sm); transition: var(--transition-fast);
}
.hero-nav:hover{ background: var(--primary); color: var(--white); }
.hero-nav--prev{ left: 16px; }
.hero-nav--next{ right: 16px; }
@media (max-width: 640px){ .hero-nav{ display:none; } }

.hero-track{
    /* margin-top: 20px; */
  display: flex;
  transition: transform .6s cubic-bezier(.65,0,.35,1);
}
.hero-slide{ min-width: 100%; }

.hero-slide__grid{
  display: grid; gap: 16px;
   align-items: center;
  padding: 56px 0 40px;
  margin-top: 20px;
}
/* @media (min-width: 1024px) {

    .hero-slide__grid {
        grid-template-columns: 55% 45% !important;
        align-items: start;
    }

  
    .hero-slide__grid--wheel {
        grid-template-columns: 60% 40% !important;
        align-items: center;
        gap: 0;
    }
} */
 /* =========================
   NORMAL DESKTOP
   1024px → 1799px
========================= */
@media (min-width: 1024px) and (max-width: 1799px) {

    .hero-slide__grid {
        grid-template-columns: 55% 45% !important;
        align-items: start;
    }

    /* 3rd slide */
    .hero-slide__grid--wheel {
        grid-template-columns: 60% 40% !important;
        align-items: center;
        gap: 0;
    }
}


/* =========================
   LARGE DESKTOP
   1800px+
========================= */
@media (min-width: 1800px) {

    .hero-slide__grid {
        grid-template-columns: 50% 45% !important;
        align-items: start;
    }

    /* 3rd slide */
    .hero-slide__grid--wheel {
        grid-template-columns: 70% 30% !important;
        align-items: center;
        gap: 0;
    }
}
.hero-heading{
  margin-top: 20px; font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px); font-weight: var(--fw-bold);
  line-height: 1.2; letter-spacing: -0.02em; text-transform: uppercase; color: var(--text-primary);
}
.hero-heading__line2{
     display:block;
     margin: 22px 0 2px; }
.hero-heading em{ font-style: normal; color: #059669; }

.hero-desc{ margin-top: 22px;
   /* max-width: 620px; */
    font-size: var(--fs-md); line-height: 1.9; color: var(--text-secondary); }
.hero-desc--tight{ margin-top: 14px; line-height: 1.7; }

.hero-actions{ margin-top: 26px; display:flex; align-items:center; gap: 24px; }

/* --- slide 1 photo --- */
.hero-pro-wrapper{ position: relative; display:flex; justify-content:center;}

.hero-pro-wrapper::before{
        content: "";
    position: absolute;
    z-index: 0;
    right: -4%;
    bottom: -2%;
    width: 115%;
    height: 115%;
    filter: blur(60px);
    border-radius: 50%;
    background: radial-gradient(ellipse at 52% 45%, rgba(255, 235, 170, .95) 0%, rgba(245, 189, 71, .55) 18%, rgba(245, 189, 71, .22) 40%, transparent 72%), radial-gradient(ellipse at 55% 65%, rgba(255, 180, 30, .28) 0%, transparent 70%), radial-gradient(ellipse at 45% 30%, rgba(255, 255, 255, .35) 0%, transparent 55%);
    pointer-events: none;
    animation: _ngcontent-ng-c3461815637_hero-pro-aura-pulse 4.2s ease-in-out infinite;
}

.hero-pro-wrapper::after {
    content: "";
    position: absolute;

    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);

    width: 380px;
    height: 180px;

    border-radius: 50%;

    background: radial-gradient(
        ellipse,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 235, 180, 0.8) 30%,
        rgba(255, 205, 80, 0.45) 60%,
        transparent 100%
    );

    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}










.hero-pro-image-plate{ position: relative; max-width: 500px; }
.hero-pro-image{ width: 100%; height: auto; }
.hero-pro-credit{
  position:absolute; left: 8%; bottom: 50%; z-index: 3;
  background: rgba(5,59,47,.9); color: #d1fae5; font-size: 10px; font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: .1em; padding: 6px 10px; border-radius: var(--radius-sm);
}
.hero-pro-mascot{    position: absolute;
    z-index: 3;
    left: auto;
    right: 80%;
    bottom: 60%;
    width: clamp(100px, 24%, 160px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, .14));
    animation: _ngcontent-ng-c3461815637_hero-pro-mascot-float 3.6s ease-in-out infinite;}

/* --- BON / stakeholder orbit wheels (responsive, two-layer nodes) --- */
.bon-wheel-stage{
  position: relative;
  display:flex; align-items:center; justify-content:center;
  min-height: clamp(240px, 42vw, 420px);
  padding-block: clamp(24px, 6vw, 40px);
}
.bon-wheel-stage--right{ justify-content: center; }
@media (min-width: 1024px){
  .bon-wheel-stage--right{ justify-content: flex-end; }
}

.bon-wheel{
  position: relative;
  width: clamp(280px, 42vw, 300px);
  height: clamp(280px, 42vw, 300px);
}
.bon-wheel__center{ width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.bon-wheel__center--hub{ border-radius: 0; }

.bon-node{
  position:absolute;
  width: clamp(74px, 7vw, 74px);
  height: clamp(74px, 7vw, 74px);
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: var(--shadow-md);
  display:flex; align-items:center; justify-content:center;
  transition: var(--transition-fast);
  animation: floatIn .7s ease both;
  overflow: visible;
}

.bon-node__bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  border-radius:50%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.bon-node__icon{
  position: relative;
  width: 52%;
  z-index: 1;
  pointer-events: none;
}

.bon-node span{
  position:absolute;
  /* bottom: clamp(-34px, -8%, -26px); */
  /* left: 50%; */
   transform: translateX(-50%);
  white-space: nowrap;
  background: var(--secondary); color: var(--primary-dark);
  font-size: clamp(9px, 1vw, 11px); font-weight: var(--fw-bold);
  padding: clamp(3px, .5vw, 4px) clamp(6px, 1vw, 10px);
  border-radius: 10px 10px 10px 0;
  opacity:1; pointer-events:none; transition: var(--transition-fast);
  z-index: 2;
}
.bon-node:hover{ transform: scale(1.12); z-index: 5; }
.bon-node:hover span{ opacity:1; }

@keyframes floatIn{ from{ opacity:0; transform: translateY(16px) scale(.7);} to{ opacity:1; transform: translateY(0) scale(1);} }

/* 8-point layout for BON wheel — percentage-based, scales with clamp() */
.bon-node--1{top: -20%;
    left: 40%; transform: translateX(-50%); animation-delay: 0s; }
.bon-node--2{top: -12%;
    right: -1%; animation-delay: .1s; }
.bon-node--3{ top: 17%;
    right: -20%; transform: translateY(-50%); animation-delay: .2s; }
.bon-node--4{ bottom: 26%;
    right: -24%; animation-delay: .3s; }
.bon-node--5{bottom: -6%;
    left: 87%; transform: translateX(-50%); animation-delay: .4s; }
.bon-node--6{    bottom: -22%;
    left: 54%; animation-delay: .5s; }
.bon-node--7{ top: 97%;
    left: 19%; transform: translateY(-50%); animation-delay: .6s; }
.bon-node--8{top: 82%;
    left: -10%; animation-delay: .7s; }
    .bon-node--9{     top: 52%;
    left: -22%; animation-delay: .8s; }
    .bon-node--10{top: 16%;
    left: -20%; animation-delay: .9s; }
    .bon-node--11{ top: -12%;
    left: 4%; animation-delay: .10s; }



.n-1{top: -40%;
    left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.n-2{top: -26%;
    right: -300%; animation-delay: .1s; }
.n-3{  top: 70%;
    right: -220%; transform: translateY(-50%); animation-delay: .2s; }
.n-4{     bottom: 0%;
    right: -143%; animation-delay: .3s; }
.n-5{     bottom: -40%;
    left: 50%; transform: translateX(-50%); animation-delay: .4s; }
.n-6{bottom: -16%;
    left: -160%;animation-delay: .5s; }
.n-7{     top: 84%;
    left: 173%;transform: translateY(-50%); animation-delay: .6s; }
.n-8{ top: 80%;
    left: 8%; animation-delay: .7s; }
    .n-9{ top: 80%;
    left: -12%; animation-delay: .8s; }
    .n-10{top: 50%;
    left: -36%; animation-delay: .9s; }
    .n-11{ top: 8%;
    left: -30%; animation-delay: .10s; }




/* stakeholder wheel — 10 nodes, wider ring */
.bon-wheel--stakeholders{
  width: clamp(280px, 38vw, 420px);
  height: clamp(280px, 38vw, 420px);
}
.bon-wheel--stakeholders .bon-node{
  width: 82px;
  height:82px;
}
.bon-wheel--stakeholders .bon-node--9{ top: 82%; left: 4%; animation-delay:.8s; }
.bon-wheel--stakeholders .bon-node--10{ top: 82%; right: 4%; animation-delay:.9s; }

.bon-node-1{    top: -10%;
    left: 20%; transform: translateX(-50%); animation-delay: 0s; }
.bon-node-2{ top: -10%;
    right: 20%; animation-delay: .1s; }
.bon-node-3{ top: 10%; right: -10%; transform: translateY(-50%); animation-delay: .2s; }
.bon-node-4{ bottom: 40%; right: -25%; animation-delay: .3s; }
.bon-node-5{    bottom: -15%;
    left: 55%; transform: translateX(-50%); animation-delay: .4s; }
.bon-node-6{ bottom: 10%;
    right: -13%; animation-delay: .5s; }
.bon-node-7{bottom: -15%;
    left: 25%; transform: translateY(-50%); animation-delay: .6s; }
.bon-node-8{     top: 10%;
    left: -5%; animation-delay: .7s; }
.bon-node-9{ top: 72%;
    left: -13%; transform: translateY(-50%); animation-delay: .6s; }
.bon-node-10{     top: 42%;
    left: -25%; animation-delay: .7s; }


    
.node-1{top: -20%;
    left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.node-2{top: -15%;
    right: -220%;animation-delay: .1s; }
.node-3{    top: 80%;
    right: -15%; transform: translateY(-50%); animation-delay: .2s; }
.node-4{ bottom: -18%;
    right: -60%;animation-delay: .3s; }
.node-5{     bottom: -20%;
    left: 50%; transform: translateX(-50%); animation-delay: .4s; }
.node-6{ bottom: 20%; left: -60%; animation-delay: .5s; }
.node-7{ top: 90%; left: 20%; transform: translateY(-50%); animation-delay: .6s; }
.node-8{ top: 0%; left: -50%; animation-delay: .7s; }
.node-9{    top: 90%;
    left: 20%; transform: translateY(-50%); animation-delay: .8s; }
.node-10{     top: 90%;
    left: -25%; animation-delay: .9s; } 

/* =========================================================
   HERO DOTS
========================================================= */
.hero-dots{ display:flex; justify-content:center; gap:8px; padding: 8px 0 24px; margin-top: 30px; }
.hero-dots button{
  width:8px; height:8px; border-radius:50%; border:none; background: var(--border-color);
  cursor:pointer; transition: var(--transition-fast); padding:0;
}
.hero-dots button.is-active{ width: 24px; border-radius: 5px; background: var(--primary); }

/* /* =========================================================
   SLIDE 4 — product overview panel
========================================================= */
/* .slide4{ padding: 40px 0 60px; }
.slide4-heading{
  max-width: 780px; font-family: var(--font-heading); font-weight: var(--fw-bold);
  font-size: clamp(24px,3.2vw,34px); text-transform: uppercase; color: var(--text-primary); line-height:1.3;
}
.slide4-sub{ margin-top: 12px; max-width: 560px; color: var(--text-secondary); font-size: var(--fs-sm); }

.slide4-bon-grid{ margin-top: 24px; display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (min-width: 700px){ .slide4-bon-grid{ grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px){ .slide4-bon-grid{ grid-template-columns: repeat(6,1fr); } }

.slide4-bon-tile{
  display:flex; flex-direction:column; align-items:center; gap:10px;
  border: 1px solid var(--border-color); border-radius: var(--radius-md);
  padding: 14px; background: var(--white); transition: var(--transition-fast);
}
.slide4-bon-tile:hover{ border-color: var(--primary-light); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.slide4-bon-tile--active{ border-color: var(--primary); background: #f1f8f5; }
.slide4-bon-tile__logo{ width:40px; height:40px; border-radius: var(--radius-sm); overflow:hidden; display:flex; align-items:center; justify-content:center; background:#f8fafc; }
.slide4-bon-tile__logo img{ width:100%; height:100%; object-fit:contain; }
.slide4-bon-tile .name{ display:block; font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-primary); }
.slide4-bon-tile .blurb{ display:block; font-size: 12px; color: var(--text-secondary); margin-top:2px; }

.slide4-modules{ margin-top: 34px; }
.slide4-modules__head{ display:flex; align-items:center; justify-content:space-between; }
.slide4-modules__head .hint{ font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; }
.slide4-modules__rail{ margin-top: 12px; display:flex; gap: 14px; overflow-x:auto; padding-bottom: 6px; }
.slide4-module{
  flex: 0 0 auto; min-width: 190px; display:flex; align-items:center; gap: 12px;
  border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 12px 16px; background: var(--white);
}
.slide4-module .icon{ width:38px; height:38px; display:flex; align-items:center; justify-content:center; background:#f8fafc; border-radius:10px; }
.slide4-module .icon img{ width: 22px; }
.slide4-module .icon.svg-icon svg{ width:20px; height:20px; color: var(--text-secondary); }
.slide4-module .meta{ display:flex; flex-direction:column; }
.slide4-module .name{ font-size: var(--fs-sm); font-weight: var(--fw-semibold); }
.slide4-module .status{ display:flex; align-items:center; gap:6px; font-size: 11px; color: var(--text-light); margin-top:3px; }
.slide4-module .status .dot{ width:6px; height:6px; border-radius:50%; background: var(--text-light); display:inline-block; }
.slide4-module.is-live .status{ color: var(--primary-light); }
.slide4-module.is-live .status .dot{ background: var(--primary-light); box-shadow: 0 0 0 3px rgba(11,93,71,.15); }

.slide4-legacy{ margin-top: 34px; }
.slide4-trust{ margin-top: 12px; display:grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (min-width: 700px){ .slide4-trust{ grid-template-columns: repeat(4,1fr); } }
.slide4-trust__item .value{ font-size: 28px; font-weight: var(--fw-extra-bold); color: var(--primary); }
.slide4-trust__item .label{ font-size: 12px; color: var(--text-secondary); margin-top:2px; } */


/* .slide4{ padding: 32px 0 40px; height: 100%; display:flex; align-items:center; } */
.slide4 > .slide4-grid{ width:100%; }

.slide4-content{
    margin-top: -30px;
}

.slide4-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px){
  .slide4-grid{
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 44px;
    /* align-items: center; */
    padding-top: 80px;
  }
}

.slide4-visual{ order: -1; }
@media (min-width: 1024px){
  .slide4-visual{ order: 0; align-self: stretch; display:flex; }
}
 
.slide4-visual__frame{
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: flex-end;  
  justify-content: center;
}
@media (min-width: 640px){
  .slide4-visual__frame{ height: 420px; }
}
@media (min-width: 1024px){
  .slide4-visual__frame{
    /* height: 100%;          */
    height: 620px;   
  }
}
 
.slide4-visual__img{
  width: 100%;
  height: 100%;
  object-fit: contain;       
  object-position: center bottom; 
  display: block;
}

.slide4-heading{
  max-width: 780px; font-family: var(--font-heading); font-weight: var(--fw-bold);
  font-size: clamp(22px,2.6vw,32px); text-transform: uppercase; color: var(--text-primary); line-height:1.28;
}
.slide4-sub{ margin-top: 10px; max-width: 560px; color: var(--text-secondary); font-size: var(--fs-sm); }

.slide4-panels{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px){
  .slide4-panels{ flex-direction: row; gap: 20px; }
  /* .slide4-panel{ flex: 1 1 0; min-width: 0; } */
}

.slide4-panel__head{ display:flex;
     /* align-items:center; */
      justify-content:space-between; }
.slide4-panel__head .hint{ font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; }

.slide4-bon-grid{ margin-top: 10px; display:grid; grid-template-columns: repeat(2,1fr); gap: 8px; }

.slide4-bon-tile{
  display:flex; align-items:center; gap:8px;
  border: 1px solid var(--border-color); border-radius: var(--radius-sm);
  padding: 8px 10px; background: var(--white); transition: var(--transition-fast);
  text-decoration: none;
}
.slide4-bon-tile:hover{ border-color: var(--primary-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.slide4-bon-tile--active{ border-color: var(--primary); background: #f1f8f5; }
.slide4-bon-tile__logo{ width:28px; height:28px; flex: 0 0 auto; border-radius: 6px; overflow:hidden; display:flex; align-items:center; justify-content:center; background:#f8fafc; }
.slide4-bon-tile__logo img{ width:100%; height:100%; object-fit:contain; }
.slide4-bon-tile__body{ min-width:0; }
.slide4-bon-tile .name{ display:block; font-size: 12.5px; font-weight: var(--fw-semibold); color: var(--text-primary); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.slide4-bon-tile .blurb{ display:block; font-size: 10.5px; color: var(--text-secondary); margin-top:1px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }


.slide4-modules__rail{ margin-top: 10px; display:flex; flex-direction: column; gap: 8px; }
.slide4-module{
  display:flex; align-items:center; gap: 10px;
  border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 8px 10px; background: var(--white);
}
.slide4-module:hover{ border-color: var(--primary-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.slide4-module .icon{ width:28px; height:28px; flex: 0 0 auto; display:flex; align-items:center; justify-content:center; background:#f8fafc; border-radius:8px; }
.slide4-module .icon img{ width: 16px; }
.slide4-module .icon.svg-icon svg{ width:16px; height:16px; color: var(--text-secondary); }
.slide4-module .meta{ display:flex; flex-direction:column; min-width: 0; }
.slide4-module .name{ font-size: 12.5px; font-weight: var(--fw-semibold); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.slide4-module .status{ display:flex; align-items:center; gap:5px; font-size: 10.5px; color: var(--text-light); margin-top:2px; }
.slide4-module .status .dot{ width:5px; height:5px; border-radius:50%; background: var(--text-light); display:inline-block; }
.slide4-module.is-live .status{ color: var(--primary-light); }
.slide4-module.is-live .status .dot{ background: var(--primary-light); box-shadow: 0 0 0 3px rgba(11,93,71,.15); }

/* --- Legacy / trust stats --- */
/* .slide4-legacy{ margin-top: 22px; } */
.slide4-trust{ margin-top: 10px; display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
@media (min-width: 560px){ .slide4-trust{ grid-template-columns: repeat(4,1fr); } }
.slide4-trust__item{
        border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    background: var(--white);
}
.slide4-trust__item .value{ font-size: 24px; font-weight: var(--fw-extra-bold); color: var(--primary); line-height:1; margin-bottom: 0px !important; }
.slide4-trust__item .label{ font-size: 11.5px; color: var(--text-secondary); margin-top:0px; margin-bottom: 0px !important;
    
     }



















@media (max-width: 1023px){
  .hero-pro-credit{ font-size: 9px; }
}

@media(max-width:1600px){
    .hero-slide__grid{
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (min-width: 1200px) {

    .hero {
        height: 700px;
        overflow: hidden;
    }

    .hero-slide {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        /* overflow: hidden; */
        box-sizing: border-box;
    }

    .hero-slide__grid {
        box-sizing: border-box;
        width: 100%;
    }

    .hero-heading {
        font-size: clamp(34px, 3.2vw, 40px);
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-pro-image-plate {
        width: 100%;
        max-width: 500px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */
@media screen and (max-width: 1024px) {
    .hero{
        height: 60rem;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {

    /* .hero {
        height: 680px;
        overflow: hidden;
    } */

    .hero-slide {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        /* overflow: hidden; */
        box-sizing: border-box;
    }

    .hero-slide__grid {
        width: 100%;
        box-sizing: border-box;

        /*
         * Reduce only horizontal padding.
         */
        padding-left: 20px;
        padding-right: 20px;

        gap: 12px;
    }

    .hero-heading {
        /* font-size: clamp(30px, 3.4vw, 36px); */
        line-height: 1.2;
    }

    .hero-heading__line2 {
        margin-top: 18px;
    }

    .hero-desc {
        max-width: 560px;

        font-size: 14px;
        line-height: 1.7;
    }

    .hero-actions {
        gap: 18px;
    }

    .hero-pro-image-plate {
        width: 100%;
        max-width: 430px;
    }

    .hero-pro-image {
        width: 100%;
        height: auto;
    }

    /* .bon-wheel {
        width: clamp(300px, 29vw, 320px);
        height: clamp(300px, 29vw, 320px);
    } */
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) and (min-width: 769px) {

    /* .hero {
        height: 680px;
        overflow: hidden;
    } */

    .hero-slide {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        /* overflow: hidden; */
    }

    .hero-slide__grid {
        width: 100%;
        box-sizing: border-box;

        padding-left: 18px;
        padding-right: 18px;

        gap: 10px;
    }

    .hero-heading {
        /* font-size: clamp(27px, 3.6vw, 33px); */
        line-height: 1.18;
    }

    .hero-heading__line2 {
        margin-top: 16px;
    }

    .hero-desc {
        max-width: 100%;

        font-size: 13px;
        line-height: 1.65;
    }

    .hero-actions {
        gap: 12px;
    }

    /* Slide 1 image */

    .hero-pro-image-plate {
        width: 100%;
        max-width: 360px;
    }

    .hero-pro-image {
        width: 100%;
        height: auto;
    }

    /* Wheels */

    .bon-wheel {
        width: clamp(285px, 42vw, 285px);
        height: clamp(285px, 42vw, 285px);
    }

    .bon-wheel--stakeholders {
        width: clamp(240px, 30vw, 300px);
        height: clamp(240px, 30vw, 300px);
    }
}


/* =========================================================
   MOBILE
   KEEP 700px HERO HEIGHT
========================================================= */

@media (max-width: 768px) {

    .hero {
        /* height: 700px; */
        min-height: 700px;

        padding-top: 10px;

        /* overflow: hidden; */
    }

    .hero-slider {
        height: 100%;
        overflow: hidden;
    }

    /* .hero-track {
        height: 100%;
    } */

    .hero-slide {
        width: 100%;
        min-width: 100%;
        max-width: 100%;

        /* height: 700px; */
        min-height: 700px;

        overflow: hidden;

        box-sizing: border-box;
    }


    /* =====================================================
       KEEP SAME GRID, ONLY CHANGE TO ONE COLUMN
    ===================================================== */

    .hero-slide__grid,
    .hero-slide__grid--wheel {
        align-items: start;
        width: 100%;
        height: 100%;

        box-sizing: border-box;

        grid-template-columns: 1fr;

        /* gap: 5px; */
        /* gap:150px; */

        padding-top: 2px;
        padding-bottom: 25px;

        padding-left: 15px;
        padding-right: 15px;
    }


    /* =====================================================
       TEXT
    ===================================================== */

    .hero-copy {
        width: 100%;
        max-width: 100%;

        text-align: center;
    }

    .eyebrow-pill {
        justify-content: center;

        font-size: 8px;

        max-width: 100%;
    }

    .hero-heading {
        width: 100%;
        max-width: 100%;

        margin-top: 12px;

        /* font-size: clamp(24px, 7vw, 30px); */

        line-height: 1.18;
    }

    .hero-heading__line2 {
        margin-top: 12px;
    }

    .hero-desc {
        width: 100%;
        max-width: 100%;

        margin-top: 14px;

        font-size: 12px;

        line-height: 1.6;
    }


    /* Remove forced desktop line breaks */

    .hero-desc br {
        display: none;
    }


    /* =====================================================
       BUTTONS
    ===================================================== */

    .hero-actions {
        justify-content: center;

        gap: 10px;

        margin-top: 18px;

        flex-wrap: wrap;
    }


    /* =====================================================
       IMAGE
    ===================================================== */

    .hero-pro-wrapper {
        width: 100%;

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

        min-height: 0;
    }

    .hero-pro-image-plate {
        width: min(85vw, 360px);

        max-width: 360px;
    }

    .hero-pro-image {
        width: 100%;
        height: auto;
    }


    /* Mascot */

    .hero-pro-mascot {
        width: clamp(65px, 20vw, 90px);
        bottom: 70%;
    }


    /* =====================================================
       WHEEL
    ===================================================== */

    .bon-wheel-stage {
        width: 100%;

        min-height: 0;

        padding-top: 5px;
        padding-bottom: 20px;

        box-sizing: border-box;
    }

    /* .bon-wheel {
        width: min(60vw, 260px);
        height: min(60vw, 260px);
    } */

    /* .bon-wheel--stakeholders {
        width: min(65vw, 280px);
        height: min(65vw, 280px);
    } */
/* 
    .bon-node {
        width: 44px;
        height: 44px;
    } */

    /* .bon-wheel--stakeholders .bon-node {
        width: 48px;
        height: 48px;
    } */

    /* .bon-node span {
        display: none;
    } */


    /* Navigation */

    .hero-nav {
        width: 38px;
        height: 38px;
    }

    .hero-nav--prev {
        left: 8px;
    }

    .hero-nav--next {
        right: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero {
        /* height: 700px; */
        min-height: 700px;
    }

    .hero-slide {
        /* height: 700px; */
        min-height: 700px;
    }
    
    /* .hero-slide__grid,
    .hero-slide__grid--wheel {
        padding-left: 12px;
        padding-right: 12px;

        padding-top: 24px;
        padding-bottom: 20px;
    } */
/* 
    .hero-heading {
        font-size: clamp(22px, 7vw, 28px);
    } */

    .hero-desc {
        font-size: 11.5px;
        line-height: 1.55;
    }

    .hero-pro-image-plate {
        width: min(65vw, 340px);
    }

    /* .bon-wheel {
        width: 240px;
        height: 240px;
    } */      

    /* .bon-wheel--stakeholders {
        width: 250px;
        height: 250px;
    } */

    .hero-nav {
        display: none;
    }
}


/* =========================================================
   VERY SMALL PHONE
========================================================= */

@media (max-width: 360px) {

    .hero {
        /* height: 700px; */
        min-height: 700px;
    }

    .hero-slide {
        /* height: 700px; */
        min-height: 700px;
    }

    .hero-heading {
        font-size: 21px;
    }

    .hero-desc {
        font-size: 11px;
    }

    .hero-pro-image-plate {
        width: 90vw;
    }

    /* .bon-wheel {
        width: 220px;
        height: 220px;
    } */

    /* .bon-wheel--stakeholders {
        width: 225px;
        height: 225px;
    } */
}



   @media screen and (max-width: 600px) {
  .hero-slide--2, .hero-slide--3 {
    height: 55rem;
  }
    .hero-copy {
        width: 100%;
        max-width: 100%;
        /* height: 350px; */
        text-align: center;
    }
}






/* =========================================================
   ECOSYSTEM / CLIENTS STRIP
========================================================= */
.ecosystem-strip{ position: relative; background: #059669; padding: 40px 0; overflow: visible; z-index: 1; }

.hero-fixed-curve{
      position: absolute;
    left: 0;
    bottom: 0px;
    margin-bottom: 6px;
    width: 393px;
    height: 180px;
    z-index: -15;
    pointer-events: none;
    display: none;
    line-height: 0;
}
.hero-fixed-curve svg{ display:block; width: 100%; height: 100%; }
@media (min-width: 1024px){ .hero-fixed-curve{ display:block; } }

.ecosystem-strip__inner{ position: relative; z-index: 8; padding-left: 0; }
@media (min-width: 1024px){ .ecosystem-strip__inner{ padding-left: 130px; } }

.ecosystem-strip__tagline{ color: rgba(255,255,255,.75); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;text-align: center; }

.ecosystem-stage{ margin-top: 12px; display:flex; align-items:center; gap: 28px; flex-wrap: wrap; }
.ecosystem-product{ display:flex; align-items:center; gap: 12px; flex-shrink:0; }
.ecosystem-product__logo-ring{
     width:70px; height:70px; border-radius:50%;     background: #ffffff24;
    box-shadow: 0 0 0 1px #ffffff38, 0 10px 24px #0000001f; display:flex; align-items:center; justify-content:center; padding:8px; }
.ecosystem-product__logo-ring img{ width:100%; height:100%; object-fit:contain; }
.ecosystem-product__meta{ display:flex; flex-direction:column; }
.ecosystem-product .eyebrow{ font-size:10px; color: var(--secondary-light); text-transform: uppercase; letter-spacing:.1em; }
.ecosystem-product .name{ font-size: 24px; font-weight: var(--fw-bold); color: var(--white); }

.ecosystem-marquee{ flex:1; min-width: 260px; overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ecosystem-marquee__track{ display:flex; gap: 12px; width: max-content; animation: marquee 22s linear infinite; }
.ecosystem-strip:hover .ecosystem-marquee__track{ animation-play-state: paused; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

.ecosystem-feature{ display:flex; align-items:center; gap:8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-full); padding: 8px 16px; white-space: nowrap; }
.ecosystem-feature svg{ width:16px; height:16px; color: var(--secondary-light); }
.ecosystem-feature span{ font-size: 13px; color: var(--white); font-weight: var(--fw-medium); }

/* =========================================================
   ABOUT
========================================================= */

.about {
  background: var(--bg-light);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}


.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 10px;
  align-items: center;
}


.about__content {
  min-width: 0;
}

.about__title {
  margin-top: 18px;
  max-width: 780px;

  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: var(--fw-bold);
  line-height: 1.25;

  color: var(--text-primary);
}


.about__text {
  margin-top: 22px;
}

.about__text p {
  margin: 0 0 15px;

  color: var(--text-secondary);

  font-size: 16px;
  line-height: 1.55;
}

.about__text strong {

      /* color: #6b7280; */
      color : #5a636b;
  
}


.about__subheading {
  margin: 25px 0 12px;

  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;

  color: #059669;
}


.about__closing {
  margin-top: 20px !important;
  margin-bottom: 18px !important;

  color: #1e293b !important;
}
/* 
.about__closing strong {
  color: #1e293b;
} */


.about__features {
  margin-top: 16px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  column-gap: 35px;
  row-gap: 13px;
}

.feature-item {
  display: flex;
  align-items: flex-start;

  gap: 9px;

  color: #334155;

  font-size: 14px;
  line-height: 1.45;
}

.feature-item strong {
  color: #6b7280;
  font-weight: 700;
}


/* =========================================
   CHECK ICON
========================================= */

.check {
  width: 17px;
  height: 17px;
  min-width: 17px;

  margin-top: 2px;

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

  position: relative;

  background-color: #059669;
  border-radius: 50%;
}

.check::before {
  content: "";

  width: 5px;
  height: 9px;

  position: absolute;
  top: 2px;
  left: 5px;

  border-right: 2px solid #d1fae5;
  border-bottom: 2px solid #d1fae5;

  transform: rotate(45deg);
}


/* =========================================
   RIGHT SIDE MAP
========================================= */

.about__image {
  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding-top: 15px;
}

.about__image img {
  display: block;

  /* width: min(100%, 600px); */
  height: auto;

  object-fit: contain;

  transition: transform 0.5s ease;
}

.about__image:hover img {
  transform: scale(1.03);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1023px) {

  .about {
    padding: 70px 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about__image {
    order: -1;
    padding-top: 0;
  }

  .about__image img {
    /* width: min(100%, 600px); */
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 639px) {

  .about {
    padding: 55px 0;
  }

  .about__grid {
    gap: 35px;
  }

  .about__title {
    font-size: 27px;
    line-height: 1.3;
  }

  .about__text {
    margin-top: 18px;
  }

  .about__text p {
    margin-bottom: 14px;

    font-size: 14px;
    line-height: 1.65;
  }

  .about__subheading {
    margin-top: 22px;

    font-size: 17px;
  }

  .about__features {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .feature-item {
    font-size: 13px;
  }

  .about__image img {
    width: 85%;
  }
}
/* =========================================================
   PRODUCTS
========================================================= */
     .products {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background: #f8fafc;
        }

        /* -------- DECORATIVE BLURS -------- */
        .products__blur--1 {
            position: absolute;
            left: -80px;
            top: 0;
            height: 600px;
            width: 800px;
            background: linear-gradient(to right, rgba(13, 97, 75, 0.20), transparent);
            filter: blur(120px);
            transform: rotate(-12deg);
            pointer-events: none;
        }
        .products__blur--2 {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 500px;
            width: 700px;
            background: linear-gradient(to left, rgba(13, 97, 75, 0.15), transparent);
            filter: blur(120px);
            transform: rotate(8deg);
            pointer-events: none;
        }

      

        /* -------- HEADER -------- */
        .products__head {
            /* max-width: 640px; */
            margin: 0 auto 48px;
            text-align: center;
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .products__head.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .products__head h2 {
            margin-top: 20px;
            font-family: var(--font-heading);
            font-size: clamp(26px, 3.4vw, 36px);
            font-weight: 700;
            color: #0f172a;
        }
        .products__head h2 .accent {
            color:#0d614b;
        }
        .products__head p {
            margin-top: 16px;
            color: #475569;
            font-size: 15px;
            line-height: 1.8;
        }

        .pill-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 18px;
            border-radius: 9999px;
            border: 1px solid #d1e7e0;
            background: #ebf7f2;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            /* text-transform: uppercase; */
            color:#0d614b;
        }

        /* -------- PANEL (dark card) -------- */
        .products__panel {
            margin-top: 56px;
            background: #047857;
            border-radius: 32px;
            padding: 24px;
            opacity: 0;
            transform: scale(0.94) translateY(40px);
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                scale 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform, opacity;
        }
        .products__panel.is-visible {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        /* -------- TABS (fixed) -------- */
        .products__tabs {
            position: relative;
            display: flex;
            flex-wrap: nowrap;        
            justify-content: center;
            gap: 4px;
            background: #ffffff1a;
            border-radius: 9999px;
            padding: 6px;
            width: fit-content;
            margin: 0 auto 32px;
            max-width: 100%;
            overflow-x: auto;
            scrollbar-width: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform, opacity;
            min-height: 56px;
        }
        .products__tabs::-webkit-scrollbar {
            display: none;
        }
        .products__tabs.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .products__tabs .tab {
            position: relative;
            z-index: 2;
            background: none;
            border: none;
            cursor: pointer;
                    min-width: 140px;
            /* padding: 12px 22px; */
                    padding-left: 1.5rem;
        padding-right: 1.5rem;
                padding-top: .75rem;
        padding-bottom: .75rem;
            border-radius: 9999px;
          font-size: .875rem;
        line-height: 1.25rem;
            color: rgba(255, 255, 255, .85);
            transition: color 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
            background: transparent;
        }
        .products__tabs .tab.is-active {
            color:#0d614b;   
        }
        .products__tabs .tab:not(.is-active):hover {
            color: #fff;
        }

   
        .products__tabs-pill {
            position: absolute;
            top: 6px;
            bottom: 6px;
            left: 6px;
            background: #fff;
            border-radius: 9999px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 1;
            pointer-events: none;
            will-change: transform, width;
            width: 0;
        }

        /* -------- CARD (white) -------- */
        .products__card {
            background: #fff;
            border-radius: 16px;
            padding: 36px;
            opacity: 0;
            transform: translateY(50px) scale(0.96);
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                scale 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform, opacity;
        }
        .products__card.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* -------- CARD HEAD -------- */
        .products__card-head {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
            padding-bottom: 32px;
            border-bottom: 1px solid #e9edf2;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform, opacity;
        }
        .products__card-head.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .products__card-icon {
            width: 64px;
            height: 64px;
            border-radius:16px;
            background: #f1f8f5;
            border: 1px solid #d7ede4;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.4s ease, border-color 0.4s ease;
        }
        .products__card-icon img {
            width: 34px;
            height: 34px;
            object-fit: contain;
            transition: transform 0.4s ease;
        }
/* 
        .products__card-head>div {
            flex: 1;
            min-width: 200px;
        } */

        .products__card-head h3 {
            font-size: 22px;
            font-weight: 600;
            color: #0f172a;
            transition: color 0.3s ease;
        }
        .products__card-head h3 .highlight {
            color:#0d614b;
        }
        .products__card-head p {
            margin-top: 12px;
            max-width: 700px;
            font-size:14px;
            color: #475569;
            line-height: 28px;
            transition: color 0.3s ease;
        }

        .products__card-actions {
            display: flex;
            gap: 12px;
            margin-left: auto;
            flex-shrink: 0;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform, opacity;
        }
        .products__card-actions.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 44px;
            padding: 0 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .btn--outline {
            background: #fff;
            border: 1px solid #d1d9e6;
            color: #334155;
        }
        .btn--outline:hover {
            border-color:#0d614b;
            color:#0d614b;
            transform: translateY(-1px);
        }
        .btn--gold {
            background: #f3d15f;
            color: #0f172a;
            box-shadow: 0 4px 12px rgb(255, 213, 129);
        }
        .btn--gold:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(212, 168, 83, 0.45);
        }

        /* -------- CARD BODY -------- */
        .products__card-body {
            display: grid;
            gap: 48px;
        }
        @media (min-width: 1024px) {
            .products__card-body {
                grid-template-columns: 360px 1fr;
            }
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .feature-card {
            display: flex;
            gap: 16px;
            border: 1px solid #e9edf2;
            background: #f8fafc;
            border-radius: 16px;
            padding:16px 14px;
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.3s ease, border-color 0.3s ease,
                box-shadow 0.3s ease;
            will-change: transform, opacity;
        }
        .feature-card.is-visible {
            opacity: 1;
            transform: translateX(0);
        }
        .feature-card:hover {
            border-color: #d1d9e6;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateX(0) translateY(-2px);
        }

        .feature-card__icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: #eef2f2;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            transition: background 0.3s ease;
        }
        .feature-card h4 {
            font-size: 15px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 2px;
        }
        .feature-card p {
            font-size: 13px;
            color: #475569;
            line-height: 1.6;
            margin-top: 4px;
        }

        .products__screenshot {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform, opacity;
        }
        .products__screenshot.is-visible {
            opacity: 1;
            transform: translateX(0);
        }
        .products__screenshot img {
            width: 100%;
            border-radius: 16px;
            display: block;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        /* ============================================================
           RESPONSIVE TWEAKS
           ============================================================ */
        @media (max-width: 700px) {
            .products {
                padding: 50px 0 80px;
            }
            .products__panel {
                padding: 16px 16px 24px;
                border-radius:28px;
            }
            .products__card {
                padding: 20px 18px 24px;
                border-radius: 16px;;
            }
            .products__card-head {
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
            }
            .products__card-actions {
                margin-left: 0;
                justify-content: flex-start;
            }
            .products__card-head h3 {
                font-size: 18px;
            }
            .products__tabs .tab {
                padding: 10px 16px;
                font-size: 12px;
                min-width: 80px;
            }
            .products__tabs {
                width: 100%;
                border-radius: 9999px;
                flex-wrap: nowrap;
                justify-content: flex-start;
                overflow-x: auto;
            }
            .products__tabs-pill {
                top: 6px;
                bottom: 6px;
                left: 6px;
            }
            .products__card-body {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .products__screenshot {
                transform: translateX(0) translateY(20px);
            }
            .products__screenshot.is-visible {
                transform: translateX(0) translateY(0);
            }
            .feature-card {
                padding: 14px;
            }
        }

        @media (max-width: 480px) {
            .products__head h2 {
                font-size: 24px;
            }
            .products__card-head p {
                font-size: 13px;
            }
        }

/* =========================================================
   STAKEHOLDERS
========================================================= */
.stakeholders{ position: relative; background: var(--primary-dark); padding: var(--space-3xl) 0; overflow:hidden; }
.stakeholders__head{ max-width: 640px; margin: 0 auto 60px; text-align:center; }
.stakeholders__head h2{ margin-top: 22px; font-size: clamp(26px,3.4vw,36px); font-weight: var(--fw-bold); color: var(--white); }
.stakeholders__head p{ margin-top: 18px; color: rgba(255,255,255,.7); font-size: var(--fs-lg); line-height: 1.7; }

.stakeholders__grid{ display:grid; gap: 24px; grid-template-columns: 1fr; position:relative; z-index:2; }
@media (min-width: 640px){ .stakeholders__grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .stakeholders__grid{ grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1280px){ .stakeholders__grid{ grid-template-columns: repeat(5,1fr); } }

.stakeholder-card{
  position:relative; overflow:hidden; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05);
  padding: 24px; backdrop-filter: blur(14px); transition: var(--transition-normal);
}
.stakeholder-card:hover{ transform: translateY(-8px); border-color: rgba(11,93,71,.5); background: rgba(255,255,255,.09); }
.stakeholder-card img{ width:64px; height:64px; object-fit:contain; border-radius: var(--radius-md); border: 2px solid var(--secondary); background: var(--bg-light); padding: 10px; margin-bottom: 20px; transition: var(--transition-fast); }
.stakeholder-card:hover img{ transform: scale(1.08); }
.stakeholder-card h3{ font-size: var(--fs-lg); font-weight: var(--fw-semibold); color: var(--white); margin-bottom: 10px; }
.stakeholder-card p{ font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }
.stakeholder-card .explore{ display:block; margin-top: 20px; font-size: 13px; font-weight: var(--fw-medium); color: var(--secondary-light); opacity:0; transform: translateX(-6px); transition: var(--transition-fast); }
.stakeholder-card:hover .explore{ opacity:1; transform: translateX(0); }

/* =========================================================
   CTA
========================================================= */
 /* =========================================================
   CTA
========================================================= */

.cta {
  position: relative;
  overflow: visible;
}

.cta__image {
  display: none;
}

@media (min-width: 1024px) {

  .cta__image {
    display: block;
    position: absolute;
    left: 8%;
    top: -108px;
    z-index: 2;
    width: 620px;
    max-width: none;
    pointer-events: none;
  }

}

.cta__wrapper {
  position: relative;
  background: var(--primary);
}

.cta__grid {
  display: grid;
  align-items: center;
  gap: 48px;
}

@media (min-width: 1024px) {

  .cta__grid {
    grid-template-columns: 1fr 1fr;
  }

}


/* =========================================================
   CONTENT
========================================================= */

.cta__content {
  padding: 60px 0;
  text-align: center;
}

@media (min-width: 1024px) {

  .cta__content {
    text-align: left;
    padding: 40px 0 82px 40px;
  }

}


/* =========================================================
   MOBILE IMAGE
========================================================= */

.cta__image-mobile {
  display: block;
  margin: 0 auto 32px;
  max-width: 280px;
}

@media (min-width: 1024px) {

  .cta__image-mobile {
    display: none;
  }

}


/* =========================================================
   TRUST / LEGACY CLIENTS
========================================================= */

.cta__trust {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 22px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.cta__trust-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 8px;
  border-radius: 11px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.cta__trust-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cta__trust-text strong {
  color: var(--white);
  font-size: clamp(18px,4vw,24px);
  font-weight: 600;
  line-height: 1.5;
}

.cta__trust-text span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.6;
}


/* =========================================================
   HEADING
========================================================= */

.cta__content h2 {
  max-width: 520px;
  margin: 0 auto;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: var(--fw-semibold);
  color: var(--white);
  line-height: 1.3;
}

@media (min-width: 1024px) {

  .cta__content h2 {
    margin: 0;
  }

}


/* =========================================================
   DESCRIPTION
========================================================= */

.cta__description {
  max-width: 500px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

@media (min-width: 1024px) {

  .cta__description {
    margin: 16px 0 0;
  }

}


/* =========================================================
   BUTTON
========================================================= */

.cta__content .btn {
  margin-top: 28px;
}

.cta__content .btn svg {
  width: 18px;
  height: 18px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .cta__content {
    padding: 48px 20px;
  }

  .cta__trust {
    margin-bottom: 20px;
  }

  .cta__trust-number {
    min-width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .cta__description {
    font-size: 13px;
    line-height: 1.65;
  }

}

/* =========================================================
   RESPONSIVE — misc
========================================================= */
@media (max-width: 1023px){
  .hero-pro-credit{ font-size: 9px; }
  .bon-wheel, .bon-wheel--stakeholders{ transform: scale(.72); }
}



    /* ----- footer main ----- */
    .footer {
      position: relative;
      overflow: hidden;
      background-color: #0b1120; /* secondary-900 */
      color: #ffffff;
    }

    /* decorative blur circles */
    .blur-circle-left {
      position: absolute;
      left: 0;
      top: 0;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(59, 130, 246, 0.1);
      filter: blur(120px);
      pointer-events: none;
    }
    .blur-circle-right {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      background: rgba(139, 92, 246, 0.1);
      filter: blur(120px);
      pointer-events: none;
    }

    /* container */
    .footer-container {
      position: relative;
      max-width: 1536px;
      margin: 0 auto;
      padding: 5rem 1.5rem;
    }
    @media (min-width: 1024px) {
      .footer-container {
        padding-left: 2rem;
        padding-right: 2rem;
      }
    }

    /* ----- grid layout ----- */
    .footer-grid {
      display: grid;
      gap: 3.5rem;
    }
    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 4fr 2fr 2fr 4fr;
        gap: 2rem;
      }
    }

    /* each column */
    .footer-column {
      display: flex;
      flex-direction: column;
    }

    /* logo */
    .footer-logo {
      display: inline-block;
      flex-shrink: 0;
    }
    .footer-logo img {
      height: 5rem;   /* h-20 */
      width: auto;
    }
    @media (min-width: 1024px) {
      .footer-logo img {
        height: 5.5rem; /* lg:h-22 */
      }
    }

    /* description */
    .footer-description {
      max-width: 20rem;  /* max-w-sm */
      margin-top: 1rem;
      line-height: 1.75rem; /* leading-7 */
      color: #b0c4de; /* secondary-300 */
    }

    /* social icons */
    .social-icons {
      display: flex;
      gap: 0.75rem;
      margin-top: 2rem;
    }
    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 0.75rem;
      background-color: #1a2332; 
      border: 1px solid #2a3a4f; 
      color: #ffffff;
      transition: all 0.2s ease;
    }
    .social-link:hover {
      background-color: #34d399; 
      border-color: #34d399; 
    }
    .social-link svg {
      width: 1.2rem;
      height: 1.2rem;
      stroke-width: 2;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* headings */
    .footer-heading {
      margin-bottom: 1.25rem;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #34d399; 
    }

    /* link lists */
    .footer-link-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      color: #e5e7eb; 
      padding-left: 0;
    }
    .footer-link-list li {
      display: flex;
      align-items: center;
    }
    .footer-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #e5e7eb;
      transition: color 0.2s ease;
    }
    .footer-link:hover {
      color: #34d399; 
    }
    .footer-link svg {
      width: 14px;
      height: 14px;
      stroke-width: 2;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* resources grid (2 columns) */
    .resources-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem 1rem;
      list-style: none;
      color: #e5e7eb;
      padding-left: 0;
    }
    .resources-grid li {
      display: flex;
      align-items: center;
    }
    .resources-grid .footer-link {
      gap: 0.5rem;
    }

    /* bottom bar */
    .footer-bottom {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #1a2332;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.875rem;
      color: #8aa0bc; 
    }
    @media (min-width: 1024px) {
      .footer-bottom {
        flex-direction: row;
      }
    }
    .footer-bottom-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-bottom-links a {
      color: #8aa0bc;
      transition: color 0.2s ease;
    }
    .footer-bottom-links a:hover {
      color: #60a5fa;
    }

    /* spacing adjustments */
    .mt-4 { margin-top: 1rem; }

    /* specific column widths on small screens */
    @media (max-width: 1023px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .footer-description {
        max-width: 100%;
      }
    }



  .bon-invite{
    position:fixed;
    right:28px;
    bottom:28px;
    display:flex;
    align-items:flex-end;
    gap:14px;
    z-index:999;
    opacity:0;
  }
 
  .bon-invite__spotlight{
    position:absolute;
    right:-40px;
    bottom:-40px;
    width:180px;
    height:180px;
    border-radius:50%;
    /* background:radial-gradient(circle, rgba(242,185,13,.35) 0%, rgba(242,185,13,0) 70%); */
    pointer-events:none;
    filter:blur(2px);
  }
 
  .bon-invite__wrap{
    position:relative;
    display:flex;
    align-items:flex-end;
    gap:14px;
  }
 
.bon-invite__bubble {
  position: relative;

  width: min(240px, 32vw);
  max-width: 240px;
  min-width: 0;

  padding: clamp(10px, 1vw, 12px)
           clamp(12px, 1.2vw, 16px);

  margin-bottom: clamp(48px, 5vw, 80px);

  background: #fbf8f1;
  color: #0c231c;

  border: 1px solid #f2d477;
  border-radius: clamp(12px, 1.2vw, 16px);

  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.35;
  font-weight: 500;

  text-align: left;
  cursor: pointer;

  box-shadow:
    0 0 0 1px rgba(255, 224, 132, 0.12),
    0 5px 12px rgba(239, 201, 91, 0.22),
    0 14px 30px rgba(239, 201, 91, 0.16);

  box-sizing: border-box;
}
  .bon-invite__bubble:hover{ background:#fff; }
  .bon-invite__bubble-text{ display:block; }
.bon-invite__bubble-tail {
  position: absolute;
  right: 0px;          
  bottom: -10px;
  width: 11px;
  height: 0;

  border-left: 10px solid transparent;
  border-right: 0 solid transparent;
  border-top: 14px solid #fbf8f1;  

  transform: rotate(-35deg);
  transform-origin: top left;

  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(1px 1px 0 #f2d477); 
  transition: border-top-color 0.2s;
}

.bon-invite__bubble:hover .bon-invite__bubble-tail {
  border-top-color: #fff;
}
 
.bon-invite__avatar-btn {
  position: relative;

  width: clamp(72px, 9vw, 110px);
  height: clamp(72px, 9vw, 110px);

  border-radius: 50%;
  background: none;
  border: none;
  padding: 0;

  cursor: pointer;
  display: inline-block;

  flex-shrink: 0;
}
 
  .bon-invite__bg{
    position:absolute;
    inset:0;
    border-radius:50%;
  
  }
 
  .bon-invite__avatar-svg{
 width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  }
 
  .bon-invite__ring{
    position:absolute;
    inset:-6px;
    border-radius:50%;
    /* border:2px solid rgba(242,185,13,.55); */
    pointer-events:none;
  }
 
  @media (prefers-reduced-motion: reduce){
    .bon-invite *{ animation:none !important; transition:none !important; }
  }
  @media (max-width:820px){
      .bon-invite__wrap{
   
    gap:0px;
  }
}
  @media (max-width:480px){
      .bon-invite__wrap{
   
    gap:0px;
  }
    .bon-invite{ right:16px; bottom:16px; }
    .bon-invite__bubble{ max-width:180px; font-size:13px; }
    .bon-invite__avatar-btn{ width:64px; height:64px; }
    .bon-invite__avatar-svg{ width:46px; height:46px; }
  }


  /* =====================================================
   BCSTEP GUIDED VIDEO MODAL
   UNIQUE / ISOLATED STYLES
===================================================== */


/* =====================================================
   MAIN MODAL
===================================================== */

.bcstep-guided-modal {
  position: fixed !important;

  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;

  width: 100vw !important;
  height: 100vh !important;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;

  align-items: center !important;
  justify-content: center !important;

  z-index: 2147483647 !important;

  visibility: hidden !important;
  opacity: 0 !important;

  pointer-events: none !important;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}


/* =====================================================
   OPEN MODAL
===================================================== */

.bcstep-guided-modal.bcstep-guided-modal--open {
  visibility: visible !important;

  opacity: 1 !important;

  pointer-events: auto !important;
}


/* =====================================================
   DARK OVERLAY
===================================================== */

.bcstep-guided-modal__overlay {
  position: fixed !important;

  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;

  width: 100vw !important;
  height: 100vh !important;

  background: rgba(0, 0, 0, 0.88) !important;

  backdrop-filter: blur(5px);

  cursor: pointer;
}


/* =====================================================
   MODAL WRAPPER
===================================================== */

.bcstep-guided-modal__wrapper {
  position: relative !important;

  z-index: 2 !important;

  width: 90vw !important;

  max-width: 1250px !important;

  margin: 0 !important;
  padding: 0 !important;

  transform: scale(0.94);

  opacity: 0;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}


/* =====================================================
   MODAL OPEN ANIMATION
===================================================== */

.bcstep-guided-modal.bcstep-guided-modal--open
.bcstep-guided-modal__wrapper {

  transform: scale(1);

  opacity: 1;
}


/* =====================================================
   VIDEO CONTAINER
===================================================== */

.bcstep-guided-modal__video {

  position: relative !important;

  width: 100% !important;

  aspect-ratio: 16 / 9 !important;

  height: auto !important;

  max-height: 82vh !important;

  margin: 0 !important;
  padding: 0 !important;

  background: #000 !important;

  border-radius: 14px !important;

  overflow: hidden !important;

  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.65) !important;
}


/* =====================================================
   YOUTUBE IFRAME
===================================================== */

.bcstep-guided-modal__video iframe {

  position: absolute !important;

  top: 0 !important;
  left: 0 !important;

  width: 100% !important;
  height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;

  display: block !important;

  background: #000 !important;
}


/* =====================================================
   CLOSE BUTTON
===================================================== */

.bcstep-guided-modal__close {

  position: absolute !important;

  top: -55px !important;
  right: 0 !important;

  z-index: 10 !important;

  width: 42px !important;
  height: 42px !important;

  min-width: 42px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;

  align-items: center !important;
  justify-content: center !important;

  border: 1px solid rgba(255, 255, 255, 0.4) !important;

  border-radius: 50% !important;

  background: rgba(255, 255, 255, 0.12) !important;

  color: #fff !important;

  font-family: Arial, sans-serif !important;

  font-size: 30px !important;

  font-weight: 300 !important;

  line-height: 1 !important;

  cursor: pointer !important;

  appearance: none !important;

  -webkit-appearance: none !important;

  transition:
    background 0.2s ease,
    transform 0.2s ease !important;
}


/* =====================================================
   CLOSE BUTTON SPAN
===================================================== */

.bcstep-guided-modal__close span {

  display: block !important;

  width: auto !important;
  height: auto !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #fff !important;

  font-size: 30px !important;

  line-height: 1 !important;
}


/* =====================================================
   CLOSE HOVER
===================================================== */

.bcstep-guided-modal__close:hover {

  background: rgba(255, 255, 255, 0.28) !important;

  transform: rotate(90deg);
}


/* =====================================================
   BODY LOCK
===================================================== */

body.bcstep-guided-modal-lock {

  overflow: hidden !important;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {

  .bcstep-guided-modal__wrapper {

    width: 92vw !important;

  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .bcstep-guided-modal {

    padding: 15px !important;

  }


  .bcstep-guided-modal__wrapper {

    width: 100% !important;

  }


  .bcstep-guided-modal__video {

    border-radius: 10px !important;

  }


  .bcstep-guided-modal__close {

    top: -50px !important;

    width: 38px !important;
    height: 38px !important;

    min-width: 38px !important;

    font-size: 26px !important;

  }


  .bcstep-guided-modal__close span {

    font-size: 26px !important;

  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

  .bcstep-guided-modal {

    padding: 12px !important;

  }


  .bcstep-guided-modal__close {

    top: -46px !important;

    width: 36px !important;
    height: 36px !important;

    min-width: 36px !important;

  }

}