
/* styles.css */
:root{
  --bg: #f6f7fb;
  --white: #ffffff;
  --purple: #7c3aed;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  --radius: 44px;
}

*{ box-sizing: border-box; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: #fff;
}

.wrap{
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  padding: 36px 0 44px;
  display: grid;
  gap: 70px;
}

.cta{
  border-radius: var(--radius);
  padding: 78px 20px 72px;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta--one{
  background: linear-gradient(90deg, #7a1cff 0%, #f0006d 100%);
}

.cta--two{
  background: linear-gradient(90deg, #f0006d 0%, #7a1cff 100%);
}

.cta h2{
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 3.8vw, 62px);
  line-height: 1.12;
}

.cta p{
  margin: 0 auto 36px;
  max-width: 980px;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.55;
  font-weight: 400;
  opacity: 0.95;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  padding: 0 46px;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.cta-card{
  border-radius: var(--radius);
  background: linear-gradient(90deg, #7a1cff 0%, #c0008a 55%, #d1003d 100%);
  padding: 78px 20px 72px;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  color: #fff;
}

.cta-card h2{
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 3.8vw, 62px);
  line-height: 1.12;
}

.cta-card p{
  margin: 0 auto 36px;
  max-width: 980px;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.55;
  font-weight: 400;
  opacity: 0.95;
}

.cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  padding: 0 46px;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
}

@media (max-width: 720px){
  .wrap{ width: min(1400px, calc(100% - 28px)); gap: 46px; }
  .cta{ padding: 56px 18px 54px; border-radius: 34px; }
  .btn{ height: 60px; font-size: 18px; padding: 0 34px; }

  .cta-card{ padding: 56px 18px 54px; border-radius: 34px; }
  .cta-btn{ height: 60px; font-size: 18px; padding: 0 34px; }
}

/* =========================
   File: styles.css
========================= */

:root{
  --bg: #ffffff;
  --ink: #0f172a;          /* dark navy */
  --muted: #475569;        /* slate */
  --line: rgba(15, 23, 42, 0.08);

  --gradA: #6a00ff;        /* purple */
  --gradB: #ff2d8d;        /* pink */
  --grad: linear-gradient(90deg, var(--gradA) 0%, var(--gradB) 100%);

  --heroBg: linear-gradient(180deg, #fbf1f7 0%, #ffffff 70%);
  --radius: 999px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.center{ text-align:center; }

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap{
  height: 80px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 160px;
}
.brand__logo{
  height: 44px;
  width: auto;
}

/* Desktop nav */
.nav{
  display:flex;
  align-items:center;
  gap: 28px;
}

.nav__link{
  font-weight: 500;
  color: #334155;
  position: relative;
  padding: 8px 2px;
}
.nav__link:hover{ color: #0f172a; }
.nav__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  height:2px;
  width:0%;
  background: var(--grad);
  border-radius: 2px;
  transition: width 180ms ease;
}
.nav__link:hover::after{ width:100%; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 120ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  will-change: transform;
}
.btn:active{ transform: translateY(1px); }

.btn--pill{
  padding: 12px 22px;
}

.btn--primary{
  color:#fff;
  background: var(--grad);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.25);
}
.btn--primary:hover{
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.30);
  transform: translateY(-1px);
}

.btn--outline{
  color: #6a00ff;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
}
.btn--outline:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--nav{
  margin-left: 10px;
}

/* Mobile nav toggle */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items:center;
  justify-content:center;
  gap: 5px;
  padding: 10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero{
  background: var(--heroBg);
  padding: 84px 0 110px;
}
.hero__inner{
  text-align:center;
  padding-top: 10px;
}
.hero__title{
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 800;
}
.gradient-text{
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle{
  max-width: 820px;
  margin: 0 auto 34px;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.6;
  color: #334155;
}
.hero__cta{
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Sections */
.section{
  padding: 90px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}
.section--services{
  padding-top: 80px;
}
.section__title{
  font-size: clamp(34px, 4vw, 56px);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section__subtitle{
  margin: 0 auto;
  max-width: 820px;
  color: #475569;
  font-size: 18px;
  line-height: 1.6;
}

/* Optional faint placeholders for service cards */
.services-grid{
  margin-top: 46px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card{
  height: 120px;
  border-radius: 18px;
  border: 1px dashed rgba(124, 58, 237, 0.25);
  background: linear-gradient(180deg, rgba(124,58,237,0.06), rgba(255,45,141,0.03));
}

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer__inner{
  display:flex;
  justify-content:center;
  color: #64748b;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 920px){
  .nav-toggle{ display:flex; }

  .nav{
    position: fixed;
    inset: 80px 16px auto 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    display: grid;
    gap: 12px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open{
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
  }

  .btn--nav{
    margin-left: 0;
    width: 100%;
  }

  .nav__link{
    padding: 12px 10px;
    border-radius: 12px;
  }
  .nav__link:hover{
    background: rgba(15, 23, 42, 0.04);
  }

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

    :root{
      --ink: #0f172a;
      --muted: #475569;
      --link: #7c3aed;

      --card-bg: #fbf2f7;
      --card-border: rgba(15, 23, 42, 0.04);
      --shadow: 0 14px 28px rgba(15, 23, 42, 0.06);

      --purple: #7c3aed;
      --pink: #ec4899;
    }

    *{ box-sizing: border-box; }
    body{
      margin: 0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--ink);
      background: #fff;
    }

    .wrap{
      width: min(1320px, calc(100% - 64px));
      margin: 0 auto;
      padding: 56px 0;
    }

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

    .card{
      background: linear-gradient(180deg, rgba(251,242,247,1) 0%, rgba(251,242,247,0.78) 100%);
      border: 1px solid var(--card-border);
      border-radius: 28px;
      padding: 34px 40px 30px;
      box-shadow: var(--shadow);
      min-height: 250px;

      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .icon{
      width: 54px;
      height: 54px;
      margin-bottom: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .title{
      font-size: 28px;
      line-height: 1.25;
      margin: 0 0 14px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .desc{
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.7;
      max-width: 56ch;
    }

    .learn{
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--link);
      font-weight: 500;
      font-size: 18px;
      text-decoration: none;
    }
    .learn svg{
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2.4;
      fill: none;
    }
    .learn:hover{ opacity: 0.9; }

    .is-purple{ color: var(--purple); }
    .is-pink{ color: var(--pink); }

    @media (max-width: 980px){
      .wrap{ width: min(900px, calc(100% - 40px)); padding: 40px 0; }
      .grid{ grid-template-columns: 1fr; gap: 22px; }
      .card{ padding: 28px 28px 24px; min-height: auto; }
      .title{ font-size: 24px; }
      .desc{ font-size: 17px; }
      .learn{ font-size: 17px; }
    }

    .cta,
.cta-card{
  border-radius: 28px;
}
  
/* Reduce size of the 3 CTA cards a bit + make all text white (except button text) */
.wrap{
  width: min(1280px, calc(100% - 64px));
  gap: 56px;
}

.cta,
.cta-card{
  padding: 64px 20px 58px; /* smaller than before */
  color: #fff;
}

/* Keep ALL text white */
.cta h2,
.cta p,
.cta-card h2,
.cta-card p{
  color: #fff;
}

/* Slightly smaller typography to match reduced card size */
.cta h2,
.cta-card h2{
  font-size: clamp(32px, 3.2vw, 56px);
}

.cta p,
.cta-card p{
  font-size: clamp(15px, 1.35vw, 21px);
  margin-bottom: 28px;
}

/* Keep button text as-is (purple). Buttons already set their own color. */
@media (max-width: 720px){
  .wrap{
    width: min(1280px, calc(100% - 28px));
    gap: 40px;
  }

  .cta,
  .cta-card{
    padding: 50px 18px 48px;
  }
}



  :root{
    --bg: #f7f7fb;
    --text: #0e1326;
    --muted: #4b5563;
    --purple: #7c3aed;
    --pink: #d20a8c;
    --check: #7c3aed;
    --shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
  }

  .hero{
    background: var(--bg);
    padding: 72px 24px;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  }

  .hero__container{
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 76px;
  }

  .hero__media{
    position: relative;
    width: 720px;
    height: 430px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #d1d5db;
    flex: 0 0 auto;
  }

  .hero__media-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero__play{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 16px 28px rgba(0,0,0,0.22);
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .hero__play:focus-visible{
    outline: 3px solid rgba(124,58,237,0.45);
    outline-offset: 6px;
  }

  .hero__play-icon{
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--purple);
    transform: translateX(2px);
  }

  .hero__content{
    max-width: 560px;
  }

  .hero__title{
    margin: 0 0 18px 0;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.03;
    font-size: clamp(40px, 4vw, 66px);
  }

  .hero__title--purple{ color: var(--purple); }
  .hero__title--pink{ color: var(--pink); }

  .hero__desc{
    margin: 0 0 26px 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
  }

  .hero__list{
    list-style: none;
    padding: 0;
    margin: 0 0 34px 0;
    display: grid;
    gap: 18px;
  }

  .hero__item{
    display: flex;
    align-items: center;
    gap: 14px;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.4;
  }

  .hero__check{
    width: 22px;
    height: 22px;
    display: inline-block;
    flex: 0 0 auto;
    background: no-repeat center / contain;
    /* inline SVG check */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%237c3aed' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .hero__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 38px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
    box-shadow: 0 14px 26px rgba(124,58,237,0.22);
  }

  /* Responsive */
  @media (max-width: 1100px){
    .hero__container{
      flex-direction: column;
      align-items: flex-start;
      gap: 40px;
    }
    .hero__media{
      width: min(720px, 100%);
      height: clamp(260px, 44vw, 430px);
    }
    .hero__content{ max-width: 720px; }
  }


  .sponsor-partner{
    background:#fff;
    text-align:center;
    padding: 34px 24px 34px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .sponsor-partner__title{
  margin: 0 0 8px;              /* was 14px */
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f172a;
}

  .sponsor-partner__subtitle{
  margin: 0 auto;               /* removes extra vertical spacing */
  max-width: 1100px;
  font-size: clamp(15px, 1.25vw, 20px);  /* smaller text */
  line-height: 1.55;
  color: #475569;
  font-weight: 500;
}

/* Make wrapping look nicer on mobile */
.sponsor-partner__title,
.sponsor-partner__subtitle{
  text-wrap: balance;     /* modern browsers: balances line breaks nicely */
}

/* Mobile fixes */
@media (max-width: 600px){
  .sponsor-partner{
    padding: 26px 16px 26px; /* cleaner side spacing */
  }

  .sponsor-partner__subtitle br{
    display: none;         /* removes forced break that causes ugly layout */
  }

  .sponsor-partner__title{
    font-size: 32px;
    line-height: 1.12;
    margin-bottom: 6px;    /* tighter gap */
  }

  .sponsor-partner__subtitle{
    font-size: 15px;
    line-height: 1.6;
    max-width: 36ch;       /* prevents overly wide lines */
  }
}

.partner-why{
    background: linear-gradient(90deg, #ffffff 0%, #fbf1f7 70%, #ffffff 100%);
    padding: 72px 24px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #0f172a;
  }

  .partner-why__inner{
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: start;
  }

  .partner-why__title{
    margin: 0 0 30px 0;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .partner-why__list{
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    gap: 26px;
  }

  .partner-why__item{
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
  }

  .partner-why__num{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    background: linear-gradient(135deg, #ff2d8d 0%, #6a00ff 100%);
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.18);
  }

  .partner-why__item-title{
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
  }

  .partner-why__item-desc{
    font-size: 20px;
    line-height: 1.6;
    color: #475569;
    font-weight: 500;
    max-width: 62ch;
  }

  .partner-why__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 38px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
    box-shadow: 0 16px 30px rgba(124,58,237,0.22);
    white-space: nowrap;
  }

  .partner-why__right{
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
    background: #e5e7eb;
    height: 520px;
  }

  .partner-why__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 980px){
    .partner-why__inner{
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .partner-why__right{
      height: clamp(320px, 55vw, 520px);
    }
    .partner-why__item-desc{
      font-size: 18px;
    }
  }

  @media (max-width: 520px){
    .partner-why{
      padding: 54px 16px;
    }
    .partner-why__list{ gap: 22px; }
    .partner-why__item{
      grid-template-columns: 40px 1fr;
      gap: 14px;
    }
    .partner-why__num{
      width: 40px;
      height: 40px;
    }
    .partner-why__item-title{ font-size: 18px; }
    .partner-why__item-desc{ font-size: 16px; }
    .partner-why__cta{
      height: 58px;
      padding: 0 26px;
      font-size: 16px;
      width: fit-content;
    }
  }

  .ppack{
    background:#fff;
    padding: 56px 24px 72px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:#0f172a;
  }

  .ppack__title{
    margin: 0 0 38px;
    text-align:center;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(26px, 2.2vw, 40px);
    line-height: 1.2;
  }

  .ppack__grid{
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
  }

  .ppack__card{
    border-radius: 26px;
    background:#fff;
    padding: 44px 44px 38px;
  }

  .ppack__card--base{
    border: 2px solid rgba(15, 23, 42, 0.12);
    box-shadow: none;
  }

  .ppack__card--featured{
    border: 2px solid rgba(167, 115, 255, 0.70);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.10);
  }

  .ppack__pill{
    display: inline-flex;
    align-items: center;
    height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    color:#fff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }

  .ppack__pill--bronze{ background:#ff7a00; }
  .ppack__pill--silver{ background:#6b7280; }
  .ppack__pill--gold{ background:#f4b400; }

  .ppack__list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 24px;
  }

  .ppack__item{
    display:flex;
    align-items: center;
    gap: 16px;
    font-size: 22px;
    line-height: 1.45;
    color:#334155;
    font-weight: 500;
  }

  .ppack__check{
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    background: no-repeat center / contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%2300c853' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  @media (max-width: 1040px){
    .ppack__grid{ grid-template-columns: 1fr; gap: 22px; }
    .ppack__card{ padding: 34px 28px 30px; }
    .ppack__item{ font-size: 18px; }
    .ppack__pill{ font-size: 18px; height: 48px; }
  }

  /* Hover border to logo color (Partnership Packages cards) */
.ppack{
  /* Uses your existing theme vars if present; falls back to purple */
  --logo-color: var(--gradA, var(--purple, #7c3aed));
}

.ppack__card{
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.ppack__card:hover,
.ppack__card:focus-within{
  border-color: var(--logo-color);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

/* Keep the featured card’s hover consistent (still goes to logo color) */
.ppack__card--featured:hover,
.ppack__card--featured:focus-within{
  border-color: var(--logo-color);
}

/* Slightly smaller card text */
.ppack__pill{
  font-size: 15px;     /* was 18px */
  height: 46px;        /* was 48px */
  padding: 0 22px;     /* was 24px */
  margin-bottom: 20px; /* was 22px */
}

.ppack__item{
  font-size: 15px;     /* was 18px */
  gap: 12px;           /* was 14px */
}

.ppack__list{
  gap: 16px;           /* was 18px */
}

  .ready-strip{
    background: linear-gradient(180deg, #fbf1f7 0%, #ffffff 100%);
    text-align: center;
    padding: 64px 24px 66px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .ready-strip__title{
    margin: 0 0 16px;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
    font-size: clamp(40px, 5.4vw, 78px);
  }

  .ready-strip__subtitle{
    margin: 0 auto;
    max-width: 980px;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
    font-size: clamp(16px, 1.6vw, 24px);
  }

  .ready-transform{
    background: linear-gradient(180deg, #fbf1f7 0%, #ffffff 100%);
    padding: 70px 24px 86px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #0f172a;
  }

  .ready-transform__inner{
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
  }

  .ready-transform__title{
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(32px, 4.2vw, 60px); /* ✅ reduced */
}

  .ready-transform__subtitle{
    margin: 0 auto 40px;
    max-width: 980px;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
    font-size: clamp(16px, 1.6vw, 24px);
  }

  .ready-transform__card{
  max-width: 860px;   /* ✅ middle width */
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 44px 46px 38px;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
  text-align: left;
}

  .ready-transform__field{
    margin-bottom: 26px;
  }

  .ready-transform__label{
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #0f172a;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .ready-transform__icon{
    color: #7c3aed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
  }

  .ready-transform__control{
    position: relative;
  }

  .ready-transform__input,
  .ready-transform__textarea{
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 20px;
    color: #0f172a;
    outline: none;
  }

  .ready-transform__input{
    height: 62px;
    padding-right: 62px; /* room for badge */
  }

  .ready-transform__textarea{
    min-height: 170px;
    resize: none;
    padding-top: 18px;
  }

  .ready-transform__input::placeholder,
  .ready-transform__textarea::placeholder{
    color: #9aa3af;
    font-weight: 500;
  }

  .ready-transform__input:focus,
  .ready-transform__textarea:focus{
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
    background: #fff;
  }

  .ready-transform__badge{
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #ef4444;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    line-height: 1;
    font-size: 18px;
    pointer-events: none;
  }

  .ready-transform__btn{
    width: 100%;
    margin-top: 10px;
    height: 74px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(124,58,237,0.22);
  }

  .ready-transform__btn:focus-visible{
    outline: 3px solid rgba(124,58,237,0.45);
    outline-offset: 6px;
  }

  .ready-transform__btn-icon{
    display: inline-flex;
    color: #fff;
  }

  @media (max-width: 720px){
    .ready-transform{
      padding: 54px 16px 66px;
    }

    .ready-transform__subtitle{
      margin-bottom: 28px;
      max-width: 42ch;
    }

    .ready-transform__card{
      padding: 28px 18px 24px;
      border-radius: 22px;
    }

    .ready-transform__label{
      font-size: 18px;
    }

    .ready-transform__input,
    .ready-transform__textarea{
      font-size: 18px;
    }

    .ready-transform__btn{
      height: 66px;
      font-size: 18px;
    }
  }

  .balm-footer{
    background: #0b1424;
    color: #e5e7eb;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    padding: 52px 24px 38px;
  }

  .balm-footer__inner{
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .balm-footer__logo{
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 34px;
    color: #b56bff;
    margin: 4px 0 18px;
  }

  .balm-footer__desc{
    margin: 0;
    max-width: 520px;
    color: #9aa4b2;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 500;
  }

  .balm-footer__title{
    margin: 10px 0 18px;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
  }

  .balm-footer__links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
  }

  .balm-footer__link{
    color: #9aa4b2;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
  }

  .balm-footer__link:hover{
    color: #ffffff;
  }

  .balm-footer__social{
    display: flex;
    gap: 18px;
    margin-top: 18px;
  }

  .balm-footer__social-btn{
    width: 62px;
    height: 62px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #121c2e;
    color: #ffffff;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  }

  .balm-footer__social-btn:hover{
    box-shadow: inset 0 0 0 1px rgba(181,107,255,0.55);
  }

  .balm-footer__rule{
    max-width: 1320px;
    margin: 46px auto 18px;
    height: 1px;
    background: rgba(255,255,255,0.08);
  }

  .balm-footer__copy{
    text-align: center;
    color: #8b96a6;
    font-size: 22px;
    font-weight: 600;
    padding-top: 10px;
  }

  @media (max-width: 980px){
    .balm-footer__inner{
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .balm-footer__desc{ font-size: 18px; }
    .balm-footer__link{ font-size: 18px; }
    .balm-footer__copy{ font-size: 18px; }
  }


.aboutpg-header{
  width: 100%;
  background: #ffffff;
}

.aboutpg-header__inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.aboutpg-brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.aboutpg-brand__logo{
  height: 54px;
  width: auto;
  display: block;
}

.aboutpg-nav{
  display: flex;
  align-items: center;
  gap: 56px;
}

.aboutpg-nav__link{
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
}

.aboutpg-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  white-space: nowrap;
}

@media (max-width: 980px){
  .aboutpg-nav{ gap: 22px; flex-wrap: wrap; justify-content: center; }
  .aboutpg-nav__link{ font-size: 18px; }
  .aboutpg-cta{ font-size: 18px; height: 52px; padding: 0 26px; }
}

/* =========================================================
   HERO FIX (paste at the VERY BOTTOM of your style.css)
   This removes the "weird background" behind the 2 hero buttons
   and stops class name collisions between two different heroes.
========================================================= */

/* Theme helpers (safe even if you already have vars) */
:root{
  --gradA: #6a00ff;
  --gradB: #ff2d8d;
  --grad: linear-gradient(90deg, var(--gradA) 0%, var(--gradB) 100%);
  --ink: #0f172a;
  --muted: #475569;
}

/* Gradient text */
.gradient-text{
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons (scoped + reliable) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration:none;
  border: 0;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 200ms ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  color:#fff;
  background: var(--grad);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.22);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.28);
}

.btn--outline{
  color: var(--gradA);
  border: 2px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--grad) border-box;
}
.btn--outline:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
}

/* =========================
   HERO #1 (Main hero)
========================= */
.hero-main{
  background: linear-gradient(180deg, #fbf1f7 0%, #ffffff 70%);
  padding: 84px 0 110px;
}

.hero-main__inner{
  text-align:center;
  padding-top: 10px;
}

.hero-main__title{
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 900;
  color: var(--ink);
}

.hero-main__subtitle{
  max-width: 820px;
  margin: 0 auto 34px;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.6;
  color: #334155;
}

/* ✅ THIS is the important part: no background behind both buttons */
.hero-main__cta{
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;

  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.hero-main__cta::before,
.hero-main__cta::after{
  content:none !important;
  display:none !important;
}

/* =========================
   HERO #2 (Split hero)
========================= */
.hero-split{
  background: #f7f7fb;
  padding: 72px 24px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero-split__container{
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 76px;
}

.hero-split__media{
  position: relative;
  width: 720px;
  height: 430px;
  border-radius: 22px;
  overflow: hidden;
  background: #d1d5db;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
  flex: 0 0 auto;
}

.hero-split__media-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-split__play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 28px rgba(0,0,0,0.22);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.hero-split__play:focus-visible{
  outline: 3px solid rgba(124,58,237,0.45);
  outline-offset: 6px;
}

.hero-split__play-icon{
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--gradA);
  transform: translateX(2px);
}

.hero-split__content{
  max-width: 560px;
}

.hero-split__title{
  margin: 0 0 18px 0;
  color: #0e1326;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.03;
  font-size: clamp(40px, 4vw, 66px);
}

.hero-split__title--purple{ color: var(--gradA); }
.hero-split__title--pink{ color: #d20a8c; }

.hero-split__desc{
  margin: 0 0 26px 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-split__list{
  list-style: none;
  padding: 0;
  margin: 0 0 34px 0;
  display: grid;
  gap: 18px;
}

.hero-split__item{
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.4;
}

.hero-split__check{
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 auto;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%236a00ff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero-split__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 38px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  box-shadow: 0 14px 26px rgba(124,58,237,0.22);
}

/* Responsive */
@media (max-width: 1100px){
  .hero-split__container{
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .hero-split__media{
    width: min(720px, 100%);
    height: clamp(260px, 44vw, 430px);
  }
  .hero-split__content{
    max-width: 720px;
  }
}

/* ===== Header "Book a Call" button — match screenshot ===== */
.site-header .btn--header-call{
  /* exact pill + gradient look */
  background: linear-gradient(90deg, #6a00ff 0%, #ff2d8d 100%) !important;
  color: #fff !important;

  border: none !important;
  border-radius: 999px !important;

  /* size similar to screenshot */
  padding: 14px 30px !important;
  font-weight: 700 !important;

  /* subtle depth like screenshot */
  box-shadow: 0 10px 24px rgba(106, 0, 255, 0.22) !important;
}

.site-header .btn--header-call:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(106, 0, 255, 0.26) !important;
}

.site-header .btn--header-call:active{
  transform: translateY(0px);
}

/* ===== Mobile hamburger: match screenshot (3 lines, no box) ===== */
@media (max-width: 920px){
  .site-header .nav-toggle{
    /* remove the “rounded square” look */
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;

    width: 48px;
    height: 48px;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    cursor: pointer;
  }

  .site-header .nav-toggle span{
    display: block;
    width: 34px;          /* line length */
    height: 3px;          /* line thickness */
    background: #0f172a;  /* dark navy like screenshot */
    border-radius: 999px; /* rounded ends */
  }

  /* nice focus ring (optional) */
  .site-header .nav-toggle:focus-visible{
    outline: 3px solid rgba(124,58,237,.35);
    outline-offset: 6px;
    border-radius: 12px;
  }
}

/* =========================================================
   FIGMA HERO (Exact recreation - isolated classes)
   Paste at VERY BOTTOM of style.css
========================================================= */

.fig-hero{
  background: #ffffff;
  padding: 86px 0 96px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.fig-hero__container{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: flex-start;
  gap: 86px;
}

/* Left media card */
.fig-hero__media{
  position: relative;
  width: 740px;
  height: 440px;
  border-radius: 22px;
  overflow: hidden;
  background: #d1d5db;

  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
  flex: 0 0 auto;
}

.fig-hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play button */
.fig-hero__play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 98px;
  height: 98px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.92);

  display: grid;
  place-items: center;
  cursor: pointer;

  box-shadow: 0 18px 34px rgba(0,0,0,0.20);
}

.fig-hero__play:focus-visible{
  outline: 3px solid rgba(124,58,237,0.35);
  outline-offset: 8px;
}

.fig-hero__play-icon{
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #7c3aed;
  transform: translateX(3px);
}

/* Right content */
.fig-hero__content{
  max-width: 620px;
  padding-top: 8px;
}

.fig-hero__title{
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: 76px;
  color: #0f172a;
}

.fig-hero__title-purple{ color: #7c3aed; }
.fig-hero__title-pink{ color: #d20a8c; }

.fig-hero__desc{
  margin: 0 0 28px;
  color: #475569;
  font-weight: 500;
  line-height: 1.65;
  font-size: 20px;
}

/* List with purple checks */
.fig-hero__list{
  list-style: none;
  padding: 0;
  margin: 0 0 34px;

  display: grid;
  gap: 22px;
}

.fig-hero__item{
  position: relative;
  padding-left: 44px;
  color: #334155;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.45;
}

.fig-hero__item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;

  width: 26px;
  height: 26px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  /* Purple check icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%237c3aed' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* CTA button */
.fig-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 66px;
  padding: 0 52px;
  border-radius: 999px;

  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;

  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.22);
}

.fig-hero__btn:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.fig-hero__btn:active{
  transform: translateY(0);
}

/* Responsive (matches layout behavior: stack on smaller screens) */
@media (max-width: 1100px){
  .fig-hero__container{
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .fig-hero__media{
    width: min(740px, 100%);
    height: clamp(260px, 44vw, 440px);
  }

  .fig-hero__title{
    font-size: clamp(44px, 7vw, 70px);
  }

  .fig-hero__desc{
    font-size: 18px;
  }

  .fig-hero__item{
    font-size: 18px;
  }

  .fig-hero__btn{
    height: 62px;
    padding: 0 44px;
    font-size: 18px;
  }
}

/* =========================================================
   BB HERO — matches the "good" screenshot (not oversized)
   Paste at VERY BOTTOM of style.css
========================================================= */
.bb-hero, .bb-hero * { box-sizing: border-box; }

.bb-hero{
  background: #f7f7fb;               /* subtle light gray like screenshot */
  padding: 72px 0 86px;               /* removes giant white space */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.bb-hero__inner{
  max-width: 1400px;                  /* gives right side enough space */
  margin: 0 auto;
  padding: 0 24px;

  display: grid;                      /* grid prevents “too narrow right column” */
  grid-template-columns: minmax(520px, 740px) minmax(420px, 620px);
  gap: 76px;
  align-items: center;                /* aligns content like screenshot */
}

/* LEFT IMAGE CARD */
.bb-hero__media{
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #d1d5db;
  aspect-ratio: 720 / 430;            /* keeps exact card proportion */
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
}

.bb-hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PLAY BUTTON */
.bb-hero__play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  cursor: pointer;

  box-shadow: 0 18px 34px rgba(0,0,0,0.20);
}

.bb-hero__play-icon{
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #7c3aed;
  transform: translateX(2px);
}

/* RIGHT CONTENT */
.bb-hero__content{
  max-width: 620px;
}

/* slightly smaller so line1 fits */
.bb-hero__title{
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

/* force line 1 to stay on one line */
.bb-hero__line1{
  display: inline-block;
  white-space: nowrap;
}
.bb-hero__title-purple{ color: #7c3aed; }
.bb-hero__title-pink{ color: #d20a8c; }

.bb-hero__desc{
  margin: 0 0 28px;
  color: #475569;
  font-weight: 500;
  line-height: 1.65;
  font-size: 18px;                    /* matches screenshot */
  max-width: 54ch;
}

/* CHECK LIST */
.bb-hero__list{
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  gap: 18px;
}

.bb-hero__item{
  position: relative;
  padding-left: 44px;
  color: #334155;
  font-weight: 600;
  font-size: 18px;                    /* matches screenshot */
  line-height: 1.5;
}

.bb-hero__item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%237c3aed' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* CTA BUTTON */
.bb-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;                       /* screenshot-ish */
  padding: 0 44px;
  border-radius: 999px;

  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;

  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.22);
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .bb-hero__inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bb-hero__content{ max-width: 720px; }
}

/* Smaller paragraph */
.bb-hero__desc{
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 58ch;
}

/* Smaller list + tighter spacing */
.bb-hero__list{
  gap: 14px;
  margin: 0 0 26px;
}

.bb-hero__item{
  font-size: 16px;
  line-height: 1.45;
  padding-left: 38px;  /* slightly less indent */
}

/* Smaller check icon to match */
.bb-hero__item::before{
  width: 20px;
  height: 20px;
  top: 2px;
}

/* Smaller button */
.bb-hero__btn{
  height: 52px;
  padding: 0 36px;
  font-size: 16px;
  font-weight: 800;
}

/* ===== Make header NAV links smaller (e.g., "Sponsor Partner") ===== */
.site-header .nav__link{
  font-size: 16px;   /* reduce text size */
  padding: 6px 2px;  /* optional: slightly tighter */
}

/* ===== Make the header BUTTON smaller ("Book a Call") ===== */
.site-header .btn--nav{
  font-size: 16px;     /* text size */
  padding: 10px 20px;  /* controls overall button size */
  height: 48px;        /* optional: forces a smaller pill */
}

/* If you added the special class earlier, this guarantees it shrinks too */
.site-header .btn--header-call{
  font-size: 16px !important;
  padding: 10px 20px !important;
  height: 48px !important;
}

/* Smaller nav link text */
.site-header .nav__link{
  font-size: 16px;     /* change to 15px if you want smaller */
  line-height: 1;
  padding: 6px 2px;    /* keeps spacing neat */
}

/* =========================================================
   ABOUT BALM GLOBAL — matches screenshot
========================================================= */
.about-banner{
  /* soft pink background like screenshot */
  background: linear-gradient(180deg, #fbf1f7 0%, #ffffff 100%);
  padding: 86px 0 110px;
}

.about-banner__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.about-banner__title{
  margin: 0 0 22px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800; /* was 900 */
  letter-spacing: -0.03em;
  line-height: 1.02;

  /* reduced again */
  font-size: clamp(46px, 6.2vw, 90px); /* was 49px ... 93px */
  color: #0f172a;
}

.about-banner__grad{
  background: linear-gradient(90deg, #6a00ff 0%, #ff2d8d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-banner__subtitle{
  margin: 0 auto;
  max-width: 980px;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  color: #475569;
  line-height: 1.55;

  /* subtitle size like screenshot */
  font-size: clamp(18px, 2.0vw, 30px);

  /* nicer line breaks */
  text-wrap: balance;
}

/* mobile spacing like screenshot (still roomy but not huge) */
@media (max-width: 600px){
  .about-banner{
    padding: 64px 0 78px;
  }
  .about-banner__title{
    margin-bottom: 16px;
  }
}

.story-section{
  background: #fff;
  padding: 90px 0;
}

.story-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;

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

/* Left side */
.story-title{
  margin: 0 0 22px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(40px, 4.2vw, 64px);
  color: #0f172a;
}

.story-paragraph{
  margin: 0 0 22px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  max-width: 56ch;
}

.story-brand{
  font-weight: 800;
  color: #0f172a;
}

/* Right side image */
.story-imageWrap{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  background: #f1f5f9;
}

.story-image{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px){
  .story-container{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-paragraph{
    max-width: 100%;
  }
}

/* --- Section wrapper (light bg like screenshot) --- */
.mv-section{
  background: #f8fafc;
  padding: 90px 0 110px;
}

/* --- centered width + side padding --- */
.mv-container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 26px;
}

/* --- 3-card layout --- */
.mv-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

/* --- card styling --- */
.mv-card{
  background: #ffffff;
  border-radius: 22px;
  padding: 44px 44px 42px;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.10),
    0 2px 6px rgba(15, 23, 42, 0.06);
  min-height: 360px;
}

/* --- gradient icon circle --- */
.mv-icon{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: radial-gradient(90% 90% at 30% 30%, #a855f7 0%, #ec4899 55%, #db2777 100%);
}

/* white-line icon look */
.mv-svg{
  width: 30px;
  height: 30px;
  color: #ffffff;
}

/* --- titles --- */
.mv-title{
  margin: 0 0 18px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  font-size: clamp(26px, 2.3vw, 40px);
  line-height: 1.1;
}

/* --- paragraph text --- */
.mv-text{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #475569;
  max-width: 42ch;
}

/* --- values list (dot bullets like screenshot) --- */
.mv-list{
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #475569;
  font-size: 18px;
  line-height: 1.9;
}

.mv-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mv-list li::before{
  content: "•";
  color: #475569;
  line-height: 1.9;
}

/* --- responsive --- */
@media (max-width: 980px){
  .mv-grid{ grid-template-columns: 1fr; }
  .mv-card{ min-height: unset; }
  .mv-text{ max-width: 100%; }
}

.impact{
  /* thin purple border like screenshot */
  border-top: 3px solid #7c3aed;
  border-bottom: 3px solid #7c3aed;

  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 50%, #ec4899 100%);
  color: #fff;
  padding: 90px 0 95px;
}

.impact__inner{
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
}

.impact__title{
  margin: 0 0 58px;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(32px, 4vw, 56px);
}

.impact__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
  text-align: center;
}

.impact__number{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(48px, 5.6vw, 86px);
  margin-bottom: 14px;
  text-shadow: 0 6px 22px rgba(0,0,0,.18);
}

.impact__label{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 26px);
  opacity: 0.98;
}

/* Responsive */
@media (max-width: 980px){
  .impact{ padding: 70px 0 75px; }
  .impact__title{ margin-bottom: 42px; }
  .impact__grid{ grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }
}

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

.team{
  background: #fff;
  padding: 86px 0 96px;
}

.team__inner{
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
}

.team__head{
  text-align: center;
  margin-bottom: 44px;
}

.team__title{
  margin: 0 0 10px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.05;
}

.team__subtitle{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  color: #475569;
  line-height: 1.6;
}

/* Carousel Layout */
.teamCarousel{
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 14px;
}

.teamCarousel__viewport{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  outline: none;
}

.teamCarousel__viewport:focus{
  box-shadow: 0 0 0 4px rgba(168, 85, 247, .25);
}

.teamCarousel__track{
  display: flex;
  gap: 34px;
  padding: 0 2px;
}

/* Cards */
.teamCard{
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 68px) / 3); /* 3 cards per view with gap */
  min-width: 260px;
}

.teamCard__media{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.06);
  background: #f1f5f9;
}

.teamCard__media img{
  width: 100%;
  height: 340px;
  display: block;
  object-fit: cover;
}

.teamCard__media--bw img{
  filter: grayscale(100%) contrast(1.05);
}

.teamCard__body{
  padding: 18px 2px 0;
}

.teamCard__name{
  margin: 0 0 4px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  font-size: 26px;
}

.teamCard__role{
  margin: 0 0 14px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #a855f7;
  font-weight: 700;
  font-size: 18px;
}

/* Social button */
.teamCard__social{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 14px;

  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.10);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.teamCard__socialIcon{
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: #a855f7;
}
.teamCard__socialIcon svg{ width: 18px; height: 18px; }

.teamCard__social:hover{
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.10);
}

/* Prev/Next buttons */
.teamCarousel__nav{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  font-size: 30px;
  line-height: 0;
  display: grid;
  place-items: center;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.teamCarousel__nav:hover{ transform: translateY(-1px); box-shadow: 0 14px 22px rgba(15, 23, 42, 0.12); }
.teamCarousel__nav:disabled{ opacity: .4; cursor: not-allowed; transform: none; }

/* Dots */
.teamCarousel__dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.teamCarousel__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 42, 0.18);
  cursor: pointer;
}
.teamCarousel__dot.is-active{
  background: #a855f7;
}

/* Responsive: 2 per view */
@media (max-width: 980px){
  .teamCarousel{ grid-template-columns: 44px 1fr 44px; }
  .teamCard{ flex-basis: calc((100% - 34px) / 2); }
  .teamCard__media img{ height: 320px; }
}

/* Mobile: 1 per view */
@media (max-width: 640px){
  .teamCarousel{ grid-template-columns: 40px 1fr 40px; gap: 10px; }
  .teamCarousel__track{ gap: 18px; }
  .teamCard{ flex-basis: 100%; }
  .teamCard__media img{ height: 300px; }
}

/* ===== Community CTA (matches screenshot style) ===== */
.community-cta{
  background: #faf3f7;              /* soft pink-tint */
  padding: 105px 0 115px;
  position: relative;
}

.community-cta::before{
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(15,23,42,.08), rgba(15,23,42,0));
  opacity: .25;                      /* subtle top fade like screenshot */
  pointer-events: none;
}

.community-cta__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.community-cta__icon{
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  color: #7c3aed;                    /* purple */
}

.community-cta__icon svg{
  width: 100%;
  height: 100%;
}

.community-cta__title{
  margin: 0 0 16px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.community-cta__subtitle{
  margin: 0 auto 34px;
  max-width: 62ch;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.6;
  color: #475569;
}

/* Buttons */
.community-cta__actions{
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.community-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 44px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  will-change: transform;
}

.community-btn--primary{
  color: #fff;
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 40%, #ec4899 100%);
  box-shadow: 0 14px 30px rgba(236, 72, 153, .25);
}

.community-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(236, 72, 153, .32);
}

.community-btn--outline{
  color: #7c3aed;
  background: rgba(255,255,255,.75);
  border: 3px solid #7c3aed;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.community-btn--outline:hover{
  transform: translateY(-1px);
  background: #ffffff;
}

/* Responsive */
@media (max-width: 520px){
  .community-btn{
    width: 100%;
    max-width: 320px;
    font-size: 18px;
    height: 58px;
    padding: 0 28px;
  }
  .community-cta__actions{ width: 100%; }
}

.site-footer{
  background: #0b1220; /* deep navy */
  color: rgba(255,255,255,.78);
  padding: 70px 0 34px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.site-footer__container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
}

.site-footer__grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Brand */
.site-footer__brand{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 34px;
  color: #a855f7; /* purple brand */
  margin-bottom: 18px;
}

.site-footer__desc{
  margin: 0;
  max-width: 52ch;
  font-size: 22px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}

/* Titles */
.site-footer__title{
  margin: 8px 0 18px;
  font-weight: 900;
  font-size: 26px;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.01em;
}

/* Links */
.site-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.site-footer__links a{
  text-decoration: none;
  font-size: 22px;
  color: rgba(255,255,255,.55);
  transition: color .15s ease, transform .15s ease;
}

.site-footer__links a:hover{
  color: rgba(255,255,255,.88);
  transform: translateX(2px);
}

/* Social */
.site-footer__social{
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}

.social-btn{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.social-btn svg{
  width: 24px;
  height: 24px;
}

.social-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
}

/* Divider + bottom */
.site-footer__divider{
  margin-top: 56px;
  height: 1px;
  background: rgba(255,255,255,.10);
}

.site-footer__bottom{
  padding-top: 26px;
  display: flex;
  justify-content: center;
}

.site-footer__copyright{
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 980px){
  .site-footer__container{ padding: 0 22px; }
  .site-footer__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .site-footer__brand{ font-size: 30px; }
  .site-footer__desc, .site-footer__links a, .site-footer__copyright{ font-size: 18px; }
  .site-footer__title{ font-size: 22px; }
}

.success-stories{
  background: #faf3f7;            /* soft pink tint */
  padding: 86px 0 110px;
  position: relative;
}

/* subtle top fade like the screenshot */
.success-stories::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(15,23,42,.10), rgba(15,23,42,0));
  opacity: .18;
  pointer-events:none;
}

.success-stories__inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.success-stories__title{
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #0f172a;
  font-size: clamp(42px, 5.2vw, 86px);
}

.success-stories__grad{
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 35%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.success-stories__subtitle{
  margin: 0 auto 110px;
  max-width: 70ch;
  color: #475569;
  font-size: clamp(16px, 1.55vw, 24px);
  line-height: 1.7;
  font-weight: 600;
}

/* stats row */
.success-stories__stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  align-items: end;
}

.success-stories__num{
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(46px, 4.8vw, 78px);
  color: #a855f7; /* purple like screenshot */
  margin-bottom: 14px;
}

.success-stories__label{
  font-weight: 700;
  color: #475569;
  font-size: clamp(16px, 1.6vw, 24px);
}

/* responsive */
@media (max-width: 900px){
  .success-stories__subtitle{ margin-bottom: 70px; }
  .success-stories__stats{ grid-template-columns: 1fr; gap: 34px; }
}

/* Desktop / tablet: keep phrase together */
.success-stories__title{
  font-weight: 900;
}

.success-stories__grad{
  display: inline-block;
  white-space: nowrap;  /* keeps "Amazing Women" together on larger screens */
  font-weight: 900;
}

/* Mobile: reduce weight + allow wrapping */
@media (max-width: 560px){
  .success-stories__title{
    font-weight: 800;    /* reduced from 900 */
  }

  .success-stories__grad{
    white-space: normal; /* now it can wrap */
    font-weight: 800;    /* reduced from 900 */
  }
}

/* Mobile behavior: controlled lines + lighter weight */
@media (max-width: 560px){
  .success-stories__subtitle{
    font-weight: 500; /* reduce weight */
    max-width: 100%;
  }

  .ss-sub{ display: block; }
  .ss-sub--1{ white-space: nowrap; }  /* keep first line one line */
  .ss-sub--3{ white-space: nowrap; }  /* keep "community support" together */
}

/* Prevent "and" from being orphaned on its own line */
.ss-keep{
  white-space: nowrap; /* keeps "training, and" together */
}

/* Ultra-small phones: allow wrapping if needed (optional safety) */
@media (max-width: 360px){
  .ss-sub--1{ white-space: normal; }
  .ss-sub--3{ white-space: normal; }
}

.testimonials{
  background: #ffffff;
  padding: 86px 0 96px;
}

.testimonials__inner{
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.testimonials__head{
  text-align: center;
  margin-bottom: 44px;
}

.testimonials__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.05;
}

.testimonials__subtitle{
  margin: 0;
  font-size: clamp(16px, 1.5vw, 22px);
  color: #475569;
  line-height: 1.6;
  font-weight: 600;
}

/* Carousel */
.tCarousel{
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 14px;
}

.tCarousel__viewport{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  outline: none;
}

.tCarousel__viewport:focus{
  box-shadow: 0 0 0 4px rgba(168, 85, 247, .25);
}

.tCarousel__track{
  display: flex;
  gap: 34px;
  padding: 6px 2px 10px;
}

/* Card */
.tCard{
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 68px) / 3); /* 3 cards visible */
  min-width: 280px;

  background: #fff;
  border-radius: 22px;
  padding: 34px 34px 30px;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.10),
    0 2px 6px rgba(15, 23, 42, 0.06);
}

.tCard__top{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.tCard__quoteMark{
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: rgba(168, 85, 247, .55);
}

.tCard__stars{
  display: flex;
  gap: 6px;
}

.tStar{
  color: #fbbf24; /* gold */
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.08));
}

.tCard__text{
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  font-weight: 600;
}

/* Footer / avatar */
.tCard__footer{
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
}

.tCard__avatar{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  background: #e2e8f0;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.10);
}

.tCard__avatar--bw{
  filter: grayscale(100%) contrast(1.05);
}

.tCard__meta{
  display: grid;
  gap: 2px;
}

.tCard__name{
  font-weight: 900;
  color: #0f172a;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.tCard__role{
  font-weight: 600;
  color: #475569;
  font-size: 16px;
}

.tCard__tag{
  margin-top: 4px;
  font-weight: 800;
  color: #a855f7;
  font-size: 14px;
}

/* Nav buttons */
.tCarousel__nav{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  font-size: 30px;
  line-height: 0;
  display: grid;
  place-items: center;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.tCarousel__nav:hover{ transform: translateY(-1px); box-shadow: 0 14px 22px rgba(15, 23, 42, 0.12); }
.tCarousel__nav:disabled{ opacity: .4; cursor: not-allowed; transform: none; }

/* Dots */
.tCarousel__dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.tCarousel__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 42, 0.18);
  cursor: pointer;
}
.tCarousel__dot.is-active{
  background: #a855f7;
}

/* Responsive: 2 cards */
@media (max-width: 980px){
  .tCarousel{ grid-template-columns: 44px 1fr 44px; }
  .tCard{ flex-basis: calc((100% - 34px) / 2); }
}

/* Mobile: 1 card */
@media (max-width: 640px){
  .tCarousel{ grid-template-columns: 40px 1fr 40px; gap: 10px; }
  .tCarousel__track{ gap: 18px; }
  .tCard{ flex-basis: 100%; }
}

/* REQUIRED for the testimonial slider to actually slide */
.tCarousel__viewport{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.tCarousel__track{
  display: flex;
  gap: 34px;
  padding: 6px 2px 10px;
}

.tCard{
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 68px) / 3); /* 3 visible desktop */
  min-width: 280px;
}

@media (max-width: 980px){
  .tCard{ flex-basis: calc((100% - 34px) / 2); } /* 2 visible */
}
@media (max-width: 640px){
  .tCard{ flex-basis: 100%; } /* 1 visible */
}

/* ===== Testimonials autoplay progress bar ===== */
.tCarousel__progress{
  width: min(520px, 92%);
  height: 6px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.tCarousel__progress span{
  display: block;
  height: 100%;
  width: 100%;
  transform: translateX(-100%);
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 40%, #ec4899 100%);
  border-radius: inherit;

  animation: tFill 4500ms linear forwards;
  animation-play-state: paused; /* JS starts/pauses it */
}

@keyframes tFill{
  from{ transform: translateX(-100%); }
  to{ transform: translateX(0%); }
}

.tCarousel__progress span{
  animation-play-state: paused;
}

@keyframes tFill{
  from{ transform: translateX(-100%); }
  to{ transform: translateX(0%); }
}

.video-testimonials{
  background: #ffffff;
  padding: 86px 0 96px;
}

.video-testimonials__inner{
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.video-testimonials__head{
  text-align: center;
  margin-bottom: 44px;
}

.video-testimonials__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.05;
}

.video-testimonials__subtitle{
  margin: 0;
  font-size: clamp(16px, 1.5vw, 22px);
  color: #475569;
  line-height: 1.6;
  font-weight: 600;
}

/* Carousel layout */
.vCarousel{
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 14px;
}

.vCarousel__viewport{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  outline: none;
}

.vCarousel__viewport:focus{
  box-shadow: 0 0 0 4px rgba(168, 85, 247, .25);
}

.vCarousel__track{
  display: flex;
  gap: 34px;
  padding: 6px 2px 10px;
}

/* Cards (2 visible on desktop like screenshot) */
.vCard{
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 34px) / 2);
  min-width: 300px;
}

.vCard__media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.10),
    0 2px 6px rgba(15, 23, 42, 0.06);
}

.vCard__media img{
  width: 100%;
  height: 380px;
  display: block;
  object-fit: cover;
}

/* Play button like screenshot */
.vCard__play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;

  background: rgba(255,255,255,.92);
  color: #a855f7;
  font-size: 26px;
  line-height: 0;

  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}

.vCard__play:hover{
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 36px rgba(0,0,0,.22);
}

.vCard__body{
  padding: 18px 2px 0;
}

.vCard__name{
  margin: 0 0 6px;
  font-weight: 900;
  color: #0f172a;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.vCard__role{
  margin: 0;
  font-weight: 800;
  color: #a855f7;
  font-size: 18px;
}

/* Nav buttons */
.vCarousel__nav{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  font-size: 30px;
  line-height: 0;
  display: grid;
  place-items: center;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.vCarousel__nav:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(15, 23, 42, 0.12);
}

.vCarousel__nav:disabled{
  opacity: .4;
  cursor: not-allowed;
  transform: none;
}

/* Dots */
.vCarousel__dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.vCarousel__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 42, 0.18);
  cursor: pointer;
}

.vCarousel__dot.is-active{
  background: #a855f7;
}

/* Responsive */
@media (max-width: 980px){
  .vCarousel{ grid-template-columns: 44px 1fr 44px; }
  .vCard{ flex-basis: 100%; }
  .vCard__media img{ height: 320px; }
}

/* Modal */
.vModal{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.vModal[hidden]{ display: none; }

.vModal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .62);
}

.vModal__dialog{
  position: relative;
  width: min(980px, 92vw);
  margin: 8vh auto 0;
  background: #0b1220;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.vModal__close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.vModal__frameWrap{
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

.vModal__frame{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.featured-quote{
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 45%, #ec4899 100%);
  padding: 120px 0 110px;
  color: #fff;
}

.featured-quote__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.featured-quote__mark{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 1;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.45);
  transform: translateY(-6px);
}

.featured-quote__figure{
  margin: 0;
}

.featured-quote__text{
  margin: 0 auto 26px;
  max-width: 46ch;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-size: clamp(26px, 3.2vw, 44px);

  color: rgba(255, 255, 255, 0.95);
}

.featured-quote__by{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 24px);
  color: rgba(255, 255, 255, 0.92);
}

/* Responsive spacing */
@media (max-width: 640px){
  .featured-quote{
    padding: 90px 0 85px;
  }
  .featured-quote__text{
    max-width: 52ch;
  }
}

.featured-quote__mark{
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}

.featured-quote__svg{
  width: clamp(70px, 7vw, 110px);
  height: auto;
  color: rgba(255, 255, 255, 0.45); /* same soft icon look */
  filter: drop-shadow(0 6px 22px rgba(0,0,0,.12));
}

/* ===== Ready CTA (matches screenshot) ===== */
.cta-ready{
  background: #faf3f7;               /* soft pink tint */
  padding: 95px 0 105px;
  border-top: 3px solid #a855f7;     /* thin purple line at top */
}

.cta-ready__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cta-ready__title{
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
}

.cta-ready__subtitle{
  margin: 0 auto 38px;
  max-width: 60ch;
  font-weight: 600;
  color: #475569;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.65;
}

.cta-ready__actions{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Buttons */
.cta-ready__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 44px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  will-change: transform;
}

/* Gradient filled */
.cta-ready__btn--primary{
  color: #fff;
  border: 0;
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 40%, #ec4899 100%);
  box-shadow: 0 18px 40px rgba(236, 72, 153, .22);
}

.cta-ready__btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(236, 72, 153, .28);
}

/* Outlined */
.cta-ready__btn--outline{
  color: #7c3aed;
  background: rgba(255,255,255,.75);
  border: 3px solid #7c3aed;
  box-shadow: 0 12px 26px rgba(15,23,42,.10);
}

.cta-ready__btn--outline:hover{
  transform: translateY(-1px);
  background: #fff;
}

/* Responsive */
@media (max-width: 560px){
  .cta-ready{ padding: 75px 0 80px; }

  .cta-ready__btn{
    width: 100%;
    max-width: 340px;
    height: 58px;
    font-size: 18px;
    padding: 0 28px;
  }

  .cta-ready__actions{
    width: 100%;
  }
}

/* Keep the title on ONE line on mobile */
@media (max-width: 560px){
  .cta-ready__title{
    white-space: nowrap;
    font-size: clamp(20px, 5.6vw, 34px); /* shrinks to fit */
    letter-spacing: -0.02em;
  }
}

@media (max-width: 560px){
  /* extra breathing room on mobile (also respects iPhone notch safe-area) */
  .cta-ready__inner{
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }

  .cta-ready__title{
    white-space: nowrap;
    padding-inline: 6px;                 /* keeps "Story?" off the edge */
    font-size: clamp(18px, 5.2vw, 32px); /* slightly smaller so it fits */
    letter-spacing: -0.02em;
  }
}

/* Mobile: only "Story?" can wrap */
@media (max-width: 560px){
  .cta-ready__title{
    white-space: normal;         /* allow wrapping */
    padding-inline: 10px;        /* keep away from edges */
  }

  .cta-ready__titleMain{
    white-space: nowrap;         /* lock the main part to one line */
  }

  .cta-ready__titleTail{
    display: inline-block;       /* allows it to sit nicely on next line */
    margin-left: 8px;            /* spacing if it stays on same line */
  }
}

.hero-section {
  background: #efeaee;
  padding: 76px 24px 126px;
}

.hero-section__inner {
  max-width: 1680px;
  margin: 0 auto;
  text-align: center;
}

.hero-section__title {
  margin: 0;
  color: #07142d;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(42px, 4.8vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-section__gradient {
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #e9138f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-section__text {
  max-width: 1220px;
  margin: 38px auto 0;
  color: #4f5f74;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(19px, 1.8vw, 31px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.hero-section__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 58px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 0 46px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn--primary {
  min-width: 296px;
  color: #ffffff;
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #e9138f 100%);
  box-shadow: 0 10px 24px rgba(181, 38, 224, 0.16);
}

.hero-btn--secondary {
  min-width: 238px;
  color: #8f24ff;
  background: transparent;
  border: 3px solid #9229ff;
}

.hero-btn--secondary:hover {
  background: rgba(146, 41, 255, 0.04);
}

@media (max-width: 1200px) {
  .hero-section__text br {
    display: none;
  }

  .hero-section__text {
    max-width: 980px;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 56px 20px 90px;
  }

  .hero-section__title {
    font-size: 48px;
    line-height: 1.04;
  }

  .hero-section__text {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.6;
  }

  .hero-section__actions {
    margin-top: 42px;
    gap: 18px;
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    height: 78px;
    font-size: 18px;
    padding: 0 32px;
  }
}

.hero-section__tail {
  white-space: nowrap;
}

.hero-btn {
  height: 64px;
  padding: 0 24px;
  font-size: 16px;
}

.hero-btn--primary {
  min-width: 210px;
}

.hero-btn--secondary {
  min-width: 170px;
}

.hero-section__title {
  margin: 0;
  color: #07142d;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-section__text {
  max-width: 1220px;
  margin: 38px auto 0;
  color: #4f5f74;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.site-footer__brand {
  margin-bottom: 12px;
  color: #a855f7;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.site-footer__desc {
  margin: 0;
  max-width: 46ch;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.6;
}

.site-footer__title {
  margin: 6px 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.site-footer__links {
  gap: 10px;
}

.site-footer__links a {
  font-size: 16px;
  line-height: 1.4;
}

.site-footer__title {
  margin: 6px 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.site-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.social-btn {
  width: 42px;
  height: 42px;
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.site-footer__copyright {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  letter-spacing: -0.01em;
}

.balm-footer__logo {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.balm-footer__desc {
  margin: 0;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.balm-footer__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.balm-footer__links {
  gap: 10px;
}

.balm-footer__link {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.balm-footer__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.balm-footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.balm-footer__social-btn {
  width: 38px;
  height: 38px;
}

.balm-footer__social-btn svg {
  width: 16px;
  height: 16px;
}

.balm-footer__copy {
  font-size: 14px;
  font-weight: 500;
  padding-top: 6px;
}

.sponsor-partner__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f172a;
}

.partner-why {
  padding: 56px 20px;
}

.partner-why__inner {
  max-width: 1180px;
  gap: 48px;
}

.partner-why__title {
  margin: 0 0 22px 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
}

.partner-why__list {
  gap: 18px;
  margin: 0 0 28px 0;
}

.partner-why__item {
  grid-template-columns: 36px 1fr;
  gap: 14px;
}

.partner-why__num {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.partner-why__item-title {
  font-size: 16px;
  margin: 0 0 4px 0;
}

.partner-why__item-desc {
  font-size: 15px;
  line-height: 1.5;
}

.partner-why__cta {
  height: 52px;
  padding: 0 26px;
  font-size: 15px;
}

.partner-why__right {
  height: 420px;
  border-radius: 20px;
}

.hero-main__title {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 900;
  color: #0f172a;
}

.card {
  min-height: 210px;
  padding: 24px 28px 22px;
  border-radius: 22px;
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.icon svg {
  width: 42px;
  height: 42px;
}

.title {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.desc {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
}

.learn {
  font-size: 15px;
  gap: 8px;
}

.learn svg {
  width: 16px;
  height: 16px;
}

.wrap {
  width: min(1180px, calc(100% - 56px));
  padding: 40px 0;
  gap: 40px;
}

.cta,
.cta-card {
  padding: 44px 18px 40px;
  border-radius: 22px;
}

.cta h2,
.cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.15;
}

.cta p,
.cta-card p {
  margin: 0 auto 22px;
  max-width: 760px;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.5;
}

.btn,
.cta-btn {
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
  border-radius: 999px;
}

.about-banner {
  padding: 64px 0 78px;
}

.about-banner__inner {
  max-width: 1000px;
  padding: 0 20px;
}

.about-banner__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.about-banner__subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.story-section {
  padding: 64px 0;
}

.story-container {
  max-width: 1100px;
  gap: 44px;
}

.story-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.05;
}

.story-paragraph {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 52ch;
}

.story-imageWrap {
  border-radius: 18px;
}

.story-image {
  aspect-ratio: 4 / 3;
}

.mv-section {
  padding: 64px 0 78px;
}

.mv-container {
  max-width: 1140px;
  padding: 0 20px;
}

.mv-grid {
  gap: 26px;
}

.mv-card {
  min-height: 300px;
  padding: 30px 30px 28px;
  border-radius: 18px;
}

.mv-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}

.mv-svg {
  width: 26px;
  height: 26px;
}

.mv-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.12;
}

.mv-text,
.mv-list {
  font-size: 17px;
  line-height: 1.6;
}

.mv-list li {
  gap: 8px;
}

.impact {
  padding: 64px 0 68px;
}

.impact__inner {
  max-width: 1100px;
  padding: 0 20px;
}

.impact__title {
  margin: 0 0 40px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.impact__grid {
  gap: 18px;
}

.impact__number {
  font-size: clamp(36px, 4.2vw, 62px);
  margin-bottom: 10px;
}

.impact__label {
  font-size: clamp(14px, 1.3vw, 20px);
}

@media (max-width: 980px){
  .impact {
    padding: 64px 0 68px;
  }

  .impact__title {
    margin-bottom: 32px;
  }

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

.community-cta__title {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.08;
}

.community-cta__subtitle {
  margin: 0 auto 18px;
  max-width: 40ch;
  font-size: 17px;
  line-height: 1.5;
}

.community-cta__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.08;
}

.community-cta__subtitle {
  margin: 0 auto 18px;
  max-width: 40ch;
  font-size: 19px;
  line-height: 1.5;
}

.success-stories {
  padding: 64px 0 78px;
}

.success-stories__inner {
  max-width: 1080px;
  padding: 0 20px;
}

.success-stories__title {
  margin: 0 0 14px;
  font-size: clamp(31px, 3.4vw, 55px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.success-stories__subtitle {
  margin: 0 auto 72px;
  max-width: 62ch;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.6;
  font-weight: 500;
}

.success-stories__stats {
  gap: 26px;
}

.success-stories__num {
  font-size: clamp(37px, 3.8vw, 59px);
  margin-bottom: 10px;
}

.success-stories__label {
  font-size: clamp(17px, 1.2vw, 21px);
}

.featured-quote__text {
  font-size: clamp(18px, 2vw, 30px);
}

.featured-quote__by {
  font-size: 14px;
}

.hero-main {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 0 120px;
  overflow: hidden;

  background:
    url("/assets/community-hero.jpg") center 28% / cover no-repeat;
}

/* dark overlay for readability */
.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 20, 45, 0.58) 0%,
      rgba(7, 20, 45, 0.42) 38%,
      rgba(7, 20, 45, 0.62) 100%
    );
}

/* soft spotlight / luxury feel */
.hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 52%);
  pointer-events: none;
}

.hero-main__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 52px 44px;
  border-radius: 30px;
  background: rgba(9, 18, 36, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.hero-main__title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(42px, 5.5vw, 90px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.gradient-text {
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #ff4aa5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-main__subtitle {
  max-width: 900px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero-main__cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-main .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-main .btn:hover {
  transform: translateY(-2px);
}

.hero-main .btn--primary {
  color: #fff;
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #e9138f 100%);
  box-shadow: 0 14px 34px rgba(181, 38, 224, 0.34);
}

.hero-main .btn--outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-main .btn--outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* mobile */
@media (max-width: 768px) {
  .hero-main {
    min-height: auto;
    padding: 84px 0 88px;
    background-position: center center;
  }

  .hero-main__inner {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .hero-main__title {
    font-size: clamp(34px, 9vw, 56px);
    line-height: 1.02;
  }

  .hero-main__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-main .btn {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    height: 52px;
    font-size: 15px;
  }
}

.services-grid-bg {
  position: relative;
  isolation: isolate;
  padding: 56px 32px;
  border-radius: 28px;
  overflow: hidden;

  background:
    linear-gradient(rgba(7, 20, 45, 0.55), rgba(7, 20, 45, 0.68)),
    url("/assets/community-hero.jpg") center center / cover no-repeat fixed;

  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

/* soft luxury overlay */
.services-grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}

/* keep cards above the background */
.services-grid-bg .card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

/* clearer text on cards */
.services-grid-bg .title {
  color: #0f172a;
}

.services-grid-bg .desc {
  color: #475569;
}

.services-grid-bg .learn {
  color: #7c3aed;
}

/* make section spacing feel premium */
.services-grid-bg.grid {
  gap: 28px;
}

/* mobile fallback */
@media (max-width: 768px) {
  .services-grid-bg {
    padding: 28px 18px;
    border-radius: 20px;
    background:
      linear-gradient(rgba(7, 20, 45, 0.58), rgba(7, 20, 45, 0.72)),
      url("/assets/community-hero.jpg") center center / cover no-repeat;
  }
}

/* =========================
   PREMIUM HOME PAGE ANIMATION
   Paste at the very bottom
========================= */

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Keyframes ---------- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSoftZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 18px 34px rgba(124, 58, 237, 0.18);
  }
  50% {
    box-shadow: 0 22px 44px rgba(236, 72, 153, 0.24);
  }
}

@keyframes shineSweep {
  0% {
    transform: translateX(-160%) skewX(-20deg);
  }
  100% {
    transform: translateX(220%) skewX(-20deg);
  }
}

/* ---------- Hero entrance ---------- */
.hero-main {
  position: relative;
  overflow: hidden;
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: heroSoftZoom 1.4s ease-out both;
}

.hero-main__title {
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.1s forwards;
}

.hero-main__subtitle {
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.28s forwards;
}

.hero-main__cta {
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.45s forwards;
}

/* subtle hero button premium feel */
.hero-main .btn {
  position: relative;
  overflow: hidden;
}

.hero-main .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 28%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.15) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.hero-main .btn:hover::before {
  animation: shineSweep 0.9s ease;
}

.hero-main .btn--primary {
  animation: pulseGlow 3.2s ease-in-out infinite;
}

/* ---------- Scroll reveal ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* stagger support */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ---------- Premium hover polish ---------- */
.card,
.tCard,
.cta,
.cta-card,
.mv-card,
.teamCard,
.vCard {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.card:hover,
.tCard:hover,
.mv-card:hover,
.teamCard:hover,
.vCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.cta:hover,
.cta-card:hover {
  transform: translateY(-6px);
}

/* ---------- Gentle floating accents ---------- */
.community-cta__icon,
.mv-icon,
.icon {
  animation: floatGentle 4.6s ease-in-out infinite;
}

/* different timing so they don't all move together */
.mv-card:nth-child(2) .mv-icon,
.card:nth-child(2) .icon,
.card:nth-child(4) .icon {
  animation-duration: 5.2s;
}

.mv-card:nth-child(3) .mv-icon,
.card:nth-child(3) .icon,
.card:nth-child(5) .icon {
  animation-duration: 5.8s;
}

/* ---------- Nice section emphasis ---------- */
.success-stories__num,
.impact__number {
  transition: transform 0.25s ease, color 0.25s ease;
}

.success-stories__stat:hover .success-stories__num,
.impact__stat:hover .impact__number {
  transform: translateY(-3px) scale(1.03);
}

/* ---------- Mobile: tone motion down a little ---------- */
@media (max-width: 768px) {
  .card:hover,
  .tCard:hover,
  .mv-card:hover,
  .teamCard:hover,
  .vCard:hover,
  .cta:hover,
  .cta-card:hover {
    transform: translateY(-4px);
  }

  .community-cta__icon,
  .mv-icon,
  .icon {
    animation-duration: 6s;
  }
}

.ready-transform__card {
  max-width: 520px;
  padding: 22px 20px;
  border-radius: 20px;
}

.ready-transform__btn {
  height: 52px;
  padding: 0 22px;
  font-size: 15px;
  gap: 10px;
}

.ready-transform__btn-icon svg {
  width: 18px;
  height: 18px;
}

.site-header .nav-toggle {
  width: 38px;
  height: 38px;
  gap: 6px;
}

.site-header .nav-toggle span {
  width: 24px;
  height: 2px;
}

/* =========================
   VIDEO TESTIMONIAL AUTO SWAP
========================= */

.vCarousel {
  position: relative;
}

.vCarousel__viewport {
  overflow: hidden;
}

.vCarousel__track {
  display: flex;
  gap: 34px;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.vCard {
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease;
  opacity: 0.72;
  transform: scale(0.96);
  filter: saturate(0.92);
}

.vCard.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.vCard.is-next {
  opacity: 0.9;
  transform: scale(0.98);
}

.vCard__media {
  overflow: hidden;
  border-radius: 22px;
}

.vCard__media img {
  transition: transform 0.8s ease;
}

.vCard.is-active .vCard__media img {
  transform: scale(1.04);
}

.vCard__body {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.vCard.is-active .vCard__body {
  transform: translateY(-2px);
}

/* softer inactive cards */
.vCard:not(.is-active) .vCard__play {
  transform: scale(0.94);
  opacity: 0.92;
}

/* mobile */
@media (max-width: 980px) {
  .vCarousel__track {
    gap: 22px;
  }
}

/* =========================
   TESTIMONIAL AUTO SWAP
========================= */

.tCarousel {
  position: relative;
}

.tCarousel__viewport {
  overflow: hidden;
}

.tCarousel__track {
  display: flex;
  gap: 34px;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tCard {
  opacity: 0.7;
  transform: scale(0.96);
  filter: saturate(0.92);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease;
}

.tCard.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.14),
    0 4px 10px rgba(15, 23, 42, 0.08);
}

.tCard.is-next,
.tCard.is-third {
  opacity: 0.92;
  transform: scale(0.985);
}

.tCard__quoteMark,
.tCard__footer,
.tCard__text {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.tCard.is-active .tCard__quoteMark {
  transform: translateY(-2px);
}

.tCard.is-active .tCard__text {
  transform: translateY(-2px);
}

.tCard.is-active .tCard__footer {
  transform: translateY(-1px);
}

/* nav polish */
.tCarousel__nav {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.tCarousel__nav:hover {
  transform: translateY(-1px);
}

/* dots */
.tCarousel__dot {
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.tCarousel__dot.is-active {
  transform: scale(1.15);
}

/* progress bar already in your HTML */
.tCarousel__progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: translateX(-100%);
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 40%, #ec4899 100%);
  border-radius: inherit;
  animation: tAutoFill 4500ms linear forwards;
  animation-play-state: paused;
}

@keyframes tAutoFill {
  from { transform: translateX(-100%); }
  to { transform: translateX(0%); }
}

@media (max-width: 980px) {
  .tCarousel__track {
    gap: 22px;
  }
}

.about-banner {
  position: relative;
  isolation: isolate;
  padding: 90px 0 110px;
  overflow: hidden;

  background:
    linear-gradient(rgba(7, 20, 45, 0.56), rgba(7, 20, 45, 0.62)),
    url("/assets/community-hero.jpg") center center / cover no-repeat;
}

.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 48%);
}

.about-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 28px;
  text-align: center;
  border-radius: 24px;
  background: rgba(9, 18, 36, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
}

.about-banner__title {
  margin: 0 0 16px;
  color: #ffffff;
}

.about-banner__grad {
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #ff4aa5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-banner__subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
}

@media (max-width: 768px) {
  .about-banner {
    padding: 70px 0 82px;
    background:
      linear-gradient(rgba(7, 20, 45, 0.62), rgba(7, 20, 45, 0.68)),
      url("/assets/community-hero.jpg") center center / cover no-repeat;
  }

  .about-banner__inner {
    padding: 26px 18px;
    border-radius: 18px;
  }
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 24px 110px;

  background:
    linear-gradient(rgba(7, 20, 45, 0.58), rgba(7, 20, 45, 0.66)),
    url("/assets/community-hero.jpg") center center / cover no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 48%);
}

.hero-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 30px;
  border-radius: 28px;
  background: rgba(9, 18, 36, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-section__title {
  margin: 0;
  color: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.hero-section__gradient {
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #ff4aa5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-section__tail {
  white-space: nowrap;
}

.hero-section__text {
  max-width: 980px;
  margin: 30px auto 0;
  color: rgba(255,255,255,0.92);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.hero-section__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn--primary {
  min-width: 210px;
  color: #ffffff;
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #e9138f 100%);
  box-shadow: 0 12px 28px rgba(181, 38, 224, 0.24);
}

.hero-btn--secondary {
  min-width: 170px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.42);
}

.hero-btn--secondary:hover {
  background: rgba(255,255,255,0.14);
}

@media (max-width: 1200px) {
  .hero-section__text br {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 64px 20px 80px;
  }

  .hero-section__inner {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .hero-section__title {
    font-size: 48px;
    line-height: 1.04;
  }

  .hero-section__text {
    margin-top: 22px;
    font-size: 18px;
  }

  .hero-section__actions {
    margin-top: 30px;
    gap: 14px;
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    height: 50px;
    font-size: 15px;
    padding: 0 20px;
  }
}

.success-stories {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 0 110px;

  background:
    linear-gradient(rgba(7, 20, 45, 0.62), rgba(7, 20, 45, 0.68)),
    url("/assets/community-hero.jpg") center center / cover no-repeat;
}

.success-stories::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 48%);
}

.success-stories__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.success-stories__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(36px, 4.8vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0,0,0,0.24);
}

.success-stories__grad {
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #ff4aa5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.success-stories__subtitle {
  max-width: 980px;
  margin: 0 auto 78px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 4px 18px rgba(0,0,0,0.2);
}

.success-stories__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
}

.success-stories__stat {
  padding: 28px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.success-stories__num {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.success-stories__label {
  color: rgba(255,255,255,0.9);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
}

@media (max-width: 900px) {
  .success-stories {
    padding: 70px 0 84px;
  }

  .success-stories__subtitle {
    margin-bottom: 48px;
  }

  .success-stories__stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

:root {
  --ap-bg: #f7f3ff;
  --ap-surface: #ffffff;
  --ap-surface-soft: #fbf9ff;
  --ap-text: #171325;
  --ap-text-soft: #6a647a;
  --ap-line: rgba(85, 60, 140, 0.12);
  --ap-primary: #6f38ff;
  --ap-primary-dark: #5526d6;
  --ap-secondary: #ff4fa3;
  --ap-dark: #120d22;
  --ap-dark-soft: #1c1433;
  --ap-shadow: 0 20px 60px rgba(31, 17, 65, 0.12);
  --ap-radius-xl: 32px;
  --ap-radius-lg: 24px;
  --ap-radius-md: 18px;
  --ap-container: 1200px;
}

.about-premium {
  background:
    radial-gradient(circle at top left, rgba(111, 56, 255, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.10), transparent 24%),
    var(--ap-bg);
  color: var(--ap-text);
}

.ap-container {
  width: min(calc(100% - 32px), var(--ap-container));
  margin-inline: auto;
}

.ap-eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ap-primary);
}

.ap-section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.ap-btn:hover {
  transform: translateY(-2px);
}

.ap-btn--primary {
  background: linear-gradient(135deg, var(--ap-primary), var(--ap-secondary));
  color: #fff;
  box-shadow: 0 16px 40px rgba(111, 56, 255, 0.24);
}

.ap-btn--primary:hover {
  box-shadow: 0 24px 48px rgba(111, 56, 255, 0.28);
}

.ap-btn--secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ap-text);
  border: 1px solid var(--ap-line);
}

.ap-btn--secondary:hover {
  background: #fff;
}

.ap-hero {
  padding: 92px 0 70px;
}

.ap-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.ap-hero__title {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.ap-hero__text {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ap-text-soft);
}

.ap-hero__actions,
.ap-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ap-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.ap-hero__chips li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  font-weight: 600;
}

.ap-panel {
  height: 100%;
  padding: 28px;
  border-radius: var(--ap-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--ap-shadow);
  backdrop-filter: blur(10px);
}

.ap-panel__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--ap-line);
}

.ap-panel__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.ap-panel__number {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.14), rgba(255, 79, 163, 0.14));
  color: var(--ap-primary);
  font-weight: 800;
}

.ap-panel__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.ap-panel__item p {
  margin: 0;
  color: var(--ap-text-soft);
  line-height: 1.6;
}

.ap-story,
.ap-pillars,
.ap-difference,
.ap-leadership {
  padding: 88px 0;
}

.ap-story__grid,
.ap-difference__grid,
.ap-leadership__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.ap-story__media img,
.ap-leadership__image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--ap-radius-xl);
  box-shadow: var(--ap-shadow);
}

.ap-story__content p:not(.ap-eyebrow),
.ap-difference__copy p:not(.ap-eyebrow),
.ap-leadership__card p:not(.ap-eyebrow) {
  margin: 18px 0 0;
  color: var(--ap-text-soft);
  line-height: 1.85;
  font-size: 1.03rem;
}

.ap-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.ap-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ap-card,
.ap-mini-card,
.ap-leadership__card {
  padding: 28px;
  border-radius: var(--ap-radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 40px rgba(33, 20, 68, 0.08);
}

.ap-card h3,
.ap-mini-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.ap-card p,
.ap-mini-card p {
  margin: 0;
  color: var(--ap-text-soft);
  line-height: 1.75;
}

.ap-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.10), rgba(255, 79, 163, 0.12));
  color: var(--ap-primary);
}

.ap-icon svg {
  width: 28px;
  height: 28px;
}

.ap-values-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ap-values-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--ap-text);
}

.ap-values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ap-primary), var(--ap-secondary));
  transform: translateY(-50%);
}

.ap-impact {
  padding: 88px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 163, 0.10), transparent 18%),
    linear-gradient(180deg, var(--ap-dark), var(--ap-dark-soft));
  color: #fff;
}

.ap-impact__intro {
  max-width: 740px;
  margin-bottom: 30px;
}

.ap-impact .ap-eyebrow {
  color: rgba(255,255,255,0.74);
}

.ap-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ap-stat {
  padding: 28px 24px;
  border-radius: var(--ap-radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.ap-stat__number {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
}

.ap-stat__label {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.74);
  font-weight: 600;
  line-height: 1.5;
}

.ap-difference__grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.ap-difference__cards {
  display: grid;
  gap: 18px;
}

.ap-mini-card h3 {
  font-size: 1.2rem;
}

.ap-quote {
  margin: 24px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--ap-secondary);
  background: rgba(255, 79, 163, 0.06);
  border-radius: 0 18px 18px 0;
  color: var(--ap-text);
  line-height: 1.8;
  font-size: 1.04rem;
}

.ap-cta {
  padding: 0 0 96px;
}

.ap-cta__card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--ap-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(111, 56, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #1a1330, #281b49);
  color: #fff;
  box-shadow: var(--ap-shadow);
}

.ap-cta__card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ap-cta__card p:last-child {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.ap-cta__card .ap-eyebrow {
  color: rgba(255,255,255,0.74);
}

.ap-cta__card .ap-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

.ap-cta__card .ap-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
}

@media (max-width: 1100px) {
  .ap-hero__grid,
  .ap-story__grid,
  .ap-difference__grid,
  .ap-leadership__grid,
  .ap-cta__card {
    grid-template-columns: 1fr;
  }

  .ap-pillars__grid,
  .ap-impact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ap-hero,
  .ap-story,
  .ap-pillars,
  .ap-impact,
  .ap-difference,
  .ap-leadership {
    padding: 72px 0;
  }

  .ap-hero__title {
    max-width: 100%;
  }

  .ap-pillars__grid,
  .ap-impact__grid {
    grid-template-columns: 1fr;
  }

  .ap-panel,
  .ap-card,
  .ap-mini-card,
  .ap-leadership__card,
  .ap-cta__card,
  .ap-stat {
    padding: 22px;
  }

  .ap-story__media img,
  .ap-leadership__image img {
    min-height: 340px;
  }
}

.ap-team {
  padding: 88px 0;
  background:
    radial-gradient(circle at top left, rgba(111, 56, 255, 0.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 79, 163, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.12));
}

.ap-team__head {
  max-width: 760px;
  margin-bottom: 32px;
}

.ap-team__intro {
  margin: 18px 0 0;
  color: var(--ap-text-soft);
  line-height: 1.8;
  font-size: 1.04rem;
}

.ap-teamCarousel {
  position: relative;
  padding: 26px;
  border-radius: var(--ap-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.72));
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: var(--ap-shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.ap-teamCarousel__topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.ap-teamCarousel__meta-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  color: var(--ap-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ap-teamCarousel__meta-text {
  margin: 12px 0 0;
  max-width: 600px;
  color: var(--ap-text-soft);
  line-height: 1.7;
}

.ap-teamCarousel__controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.ap-teamCarousel__nav {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(111, 56, 255, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--ap-text);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 10px 24px rgba(27, 16, 59, 0.08);
}

.ap-teamCarousel__nav:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--ap-primary), var(--ap-secondary));
  color: #fff;
  border-color: transparent;
}

.ap-teamCarousel__nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ap-teamCarousel__nav span {
  font-size: 1.7rem;
  line-height: 1;
}

.ap-teamCarousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  outline: none;
  scroll-snap-type: x mandatory;
  border-radius: 24px;
}

.ap-teamCarousel__viewport::-webkit-scrollbar {
  display: none;
}

.ap-teamCarousel__track {
  display: flex;
  gap: 24px;
}

.ap-teamCard {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fcfaff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 38px rgba(30, 18, 63, 0.08);
  scroll-snap-align: start;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ap-teamCard:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 56, 255, 0.22);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.13);
}

.ap-teamCard__media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #eadfff;
}

.ap-teamCard__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(16, 10, 31, 0.20));
  pointer-events: none;
}

.ap-teamCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.ap-teamCard:hover .ap-teamCard__media img {
  transform: scale(1.04);
}

.ap-teamCard__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ap-primary);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ap-teamCard__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  flex: 1;
}

.ap-teamCard__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.ap-teamCard__name {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.ap-teamCard__role {
  margin: 6px 0 0;
  color: var(--ap-secondary);
  font-weight: 700;
  line-height: 1.5;
}

.ap-teamCard__bio {
  margin: 0;
  color: var(--ap-text-soft);
  line-height: 1.75;
  flex: 1;
}

.ap-teamCard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.ap-teamCard__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  color: var(--ap-primary);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.ap-teamCard__social:hover {
  background: linear-gradient(135deg, var(--ap-primary), var(--ap-secondary));
  color: #fff;
  transform: translateY(-2px);
}

.ap-teamCard__socialIcon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
}

.ap-teamCard__socialIcon svg {
  width: 18px;
  height: 18px;
}

.ap-teamCarousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ap-teamCarousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.18);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.ap-teamCarousel__dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--ap-primary), var(--ap-secondary));
}

.ap-teamCarousel__dot:hover {
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .ap-teamCard {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 760px) {
  .ap-team {
    padding: 72px 0;
  }

  .ap-teamCarousel {
    padding: 20px;
  }

  .ap-teamCarousel__topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .ap-teamCarousel__controls {
    justify-content: flex-start;
  }

  .ap-teamCard {
    flex-basis: 100%;
  }

  .ap-teamCard__body {
    padding: 20px;
  }
}

:root {
  --tp-bg: #f7f3ff;
  --tp-surface: #ffffff;
  --tp-surface-soft: #fbf9ff;
  --tp-text: #171325;
  --tp-text-soft: #6a647a;
  --tp-line: rgba(85, 60, 140, 0.12);
  --tp-primary: #6f38ff;
  --tp-primary-dark: #5526d6;
  --tp-secondary: #ff4fa3;
  --tp-dark: #120d22;
  --tp-dark-soft: #1c1433;
  --tp-shadow: 0 20px 60px rgba(31, 17, 65, 0.12);
  --tp-radius-xl: 32px;
  --tp-radius-lg: 24px;
  --tp-radius-md: 18px;
  --tp-container: 1200px;
}

.tp-page {
  background:
    radial-gradient(circle at top left, rgba(111, 56, 255, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.10), transparent 24%),
    var(--tp-bg);
  color: var(--tp-text);
}

.tp-container {
  width: min(calc(100% - 32px), var(--tp-container));
  margin-inline: auto;
}

.tp-eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-primary);
}

.tp-section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.tp-section-copy {
  margin: 18px 0 0;
  color: var(--tp-text-soft);
  line-height: 1.8;
  font-size: 1.03rem;
  max-width: 720px;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.tp-btn:hover {
  transform: translateY(-2px);
}

.tp-btn--primary {
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
  color: #fff;
  box-shadow: 0 16px 40px rgba(111, 56, 255, 0.24);
}

.tp-btn--primary:hover {
  box-shadow: 0 24px 48px rgba(111, 56, 255, 0.28);
}

.tp-btn--secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--tp-text);
  border: 1px solid var(--tp-line);
}

.tp-btn--secondary:hover {
  background: #fff;
}

.tp-hero {
  padding: 92px 0 72px;
}

.tp-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.tp-hero__title {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.tp-hero__text {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--tp-text-soft);
}

.tp-hero__actions,
.tp-featured__actions,
.tp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.tp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.tp-hero__chips li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  font-weight: 600;
}

.tp-proofCard {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--tp-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--tp-shadow);
  backdrop-filter: blur(10px);
}

.tp-proofCard__item {
  padding: 18px 0;
  border-top: 1px solid var(--tp-line);
}

.tp-proofCard__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.tp-proofCard__item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--tp-primary);
}

.tp-proofCard__item span {
  display: block;
  margin-top: 10px;
  color: var(--tp-text-soft);
  line-height: 1.6;
  font-weight: 600;
}

.tp-featured,
.tp-stories,
.tp-video,
.tp-quoteBand {
  padding: 88px 0;
}

.tp-featured__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.tp-featured__copy p:not(.tp-eyebrow) {
  margin: 18px 0 0;
  color: var(--tp-text-soft);
  line-height: 1.85;
  font-size: 1.03rem;
}

.tp-featured__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.tp-featured__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--tp-text);
}

.tp-featured__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
  transform: translateY(-50%);
}

.tp-featuredCard {
  position: relative;
  padding: 30px;
  border-radius: var(--tp-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbf8ff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: var(--tp-shadow);
}

.tp-featuredCard__quoteMark {
  font-size: 5rem;
  line-height: 1;
  color: rgba(111, 56, 255, 0.14);
  font-weight: 800;
}

.tp-featuredCard__quote {
  margin: -10px 0 0;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--tp-text);
  letter-spacing: -0.01em;
}

.tp-featuredCard__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.tp-featuredCard__author strong,
.tp-card__meta strong,
.tp-videoCard__body strong {
  display: block;
  font-size: 1rem;
}

.tp-featuredCard__author span,
.tp-card__meta span,
.tp-videoCard__body span {
  display: block;
  margin-top: 4px;
  color: var(--tp-text-soft);
  line-height: 1.5;
}

.tp-featuredCard__results {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tp-resultPill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  color: var(--tp-primary);
  font-weight: 700;
  font-size: 0.92rem;
}

.tp-avatar {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 32px rgba(111, 56, 255, 0.22);
}

.tp-avatar--sm {
  width: 48px;
  height: 48px;
  font-size: 0.92rem;
}

.tp-stories__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.tp-carousel__controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.tp-carousel__nav {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(111, 56, 255, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--tp-text);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 10px 24px rgba(27, 16, 59, 0.08);
}

.tp-carousel__nav:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
  color: #fff;
  border-color: transparent;
}

.tp-carousel__nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.tp-carousel__nav span {
  font-size: 1.7rem;
  line-height: 1;
}

.tp-carousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  outline: none;
  scroll-snap-type: x mandatory;
  border-radius: 24px;
}

.tp-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.tp-carousel__track {
  display: flex;
  gap: 24px;
}

.tp-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fcfaff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 38px rgba(30, 18, 63, 0.08);
  scroll-snap-align: start;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 56, 255, 0.22);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.13);
}

.tp-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.tp-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  color: var(--tp-primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.tp-card__stars {
  color: #ffb938;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  white-space: nowrap;
}

.tp-card__text {
  margin: 0;
  color: var(--tp-text);
  line-height: 1.85;
  flex: 1;
}

.tp-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.tp-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tp-carousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.18);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.tp-carousel__dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
}

.tp-video__head {
  max-width: 760px;
  margin-bottom: 30px;
}

.tp-video__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tp-videoCard {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fcfaff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 38px rgba(30, 18, 63, 0.08);
}

.tp-videoCard__poster {
  position: relative;
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
  cursor: pointer;
  text-align: left;
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(111, 56, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #1d1436, #311f59);
  color: #fff;
  overflow: hidden;
}

.tp-videoCard__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00) 28%, rgba(0,0,0,0.20) 100%);
  pointer-events: none;
}

.tp-videoCard__pill,
.tp-videoCard__overlayTitle,
.tp-videoCard__play {
  position: absolute;
  z-index: 1;
}

.tp-videoCard__pill {
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tp-videoCard__play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 2rem;
  transition: transform 0.22s ease, background 0.22s ease;
}

.tp-videoCard__poster:hover .tp-videoCard__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255, 255, 255, 0.22);
}

.tp-videoCard__overlayTitle {
  left: 20px;
  right: 20px;
  bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tp-videoCard__body {
  padding: 20px 22px 22px;
}

.tp-videoModal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.tp-videoModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 10, 24, 0.72);
  backdrop-filter: blur(8px);
}

.tp-videoModal__dialog {
  position: relative;
  width: min(calc(100% - 24px), 960px);
  margin: 5vh auto;
  z-index: 1;
}

.tp-videoModal__close {
  position: absolute;
  top: -12px;
  right: -4px;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--tp-text);
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(20, 12, 43, 0.18);
}

.tp-videoModal__frameWrap {
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 24px 60px rgba(20, 12, 43, 0.26);
  aspect-ratio: 16 / 9;
}

.tp-videoModal__frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.tp-quoteBand__card {
  position: relative;
  padding: 34px;
  border-radius: var(--tp-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(111, 56, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #1a1330, #281b49);
  color: #fff;
  box-shadow: var(--tp-shadow);
}

.tp-quoteBand__mark {
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.16);
}

.tp-quoteBand__text {
  margin: -8px 0 0;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.6;
  max-width: 18ch;
  letter-spacing: -0.02em;
}

.tp-quoteBand__by {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

.tp-cta {
  padding: 0 0 96px;
}

.tp-cta__card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--tp-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: var(--tp-shadow);
}

.tp-cta__card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.tp-cta__card p:last-child {
  margin: 16px 0 0;
  color: var(--tp-text-soft);
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .tp-hero__grid,
  .tp-featured__grid,
  .tp-cta__card {
    grid-template-columns: 1fr;
  }

  .tp-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .tp-video__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tp-hero,
  .tp-featured,
  .tp-stories,
  .tp-video,
  .tp-quoteBand {
    padding: 72px 0;
  }

  .tp-hero__title {
    max-width: 100%;
  }

  .tp-stories__head {
    flex-direction: column;
    align-items: stretch;
  }

  .tp-carousel__controls {
    justify-content: flex-start;
  }

  .tp-card {
    flex-basis: 100%;
  }

  .tp-video__grid {
    grid-template-columns: 1fr;
  }

  .tp-videoCard__poster {
    min-height: 280px;
  }

  .tp-proofCard,
  .tp-featuredCard,
  .tp-card,
  .tp-quoteBand__card,
  .tp-cta__card {
    padding: 22px;
  }
}

:root {
  --ppg-bg: #f7f3ff;
  --ppg-surface: #ffffff;
  --ppg-surface-soft: #fbf9ff;
  --ppg-text: #171325;
  --ppg-text-soft: #6a647a;
  --ppg-line: rgba(85, 60, 140, 0.12);
  --ppg-primary: #6f38ff;
  --ppg-primary-dark: #5526d6;
  --ppg-secondary: #ff4fa3;
  --ppg-dark: #120d22;
  --ppg-dark-soft: #1c1433;
  --ppg-shadow: 0 20px 60px rgba(31, 17, 65, 0.12);
  --ppg-radius-xl: 32px;
  --ppg-radius-lg: 24px;
  --ppg-radius-md: 18px;
  --ppg-container: 1200px;
}

.ppg-page {
  background:
    radial-gradient(circle at top left, rgba(111, 56, 255, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.10), transparent 24%),
    var(--ppg-bg);
  color: var(--ppg-text);
}

.ppg-container {
  width: min(calc(100% - 32px), var(--ppg-container));
  margin-inline: auto;
}

.ppg-eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ppg-primary);
}

.ppg-section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.ppg-section-copy {
  margin: 18px 0 0;
  color: var(--ppg-text-soft);
  line-height: 1.8;
  font-size: 1.03rem;
  max-width: 740px;
}

.ppg-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.ppg-heading--light .ppg-eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.ppg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.ppg-btn:hover {
  transform: translateY(-2px);
}

.ppg-btn--primary {
  background: linear-gradient(135deg, var(--ppg-primary), var(--ppg-secondary));
  color: #fff;
  box-shadow: 0 16px 40px rgba(111, 56, 255, 0.24);
}

.ppg-btn--primary:hover {
  box-shadow: 0 24px 48px rgba(111, 56, 255, 0.28);
}

.ppg-btn--secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ppg-text);
  border: 1px solid var(--ppg-line);
}

.ppg-btn--secondary:hover {
  background: #fff;
}

.ppg-hero {
  padding: 92px 0 72px;
}

.ppg-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.ppg-hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.ppg-hero__text {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ppg-text-soft);
}

.ppg-hero__actions,
.ppg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ppg-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.ppg-hero__chips li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  font-weight: 600;
}

.ppg-panel {
  height: 100%;
  padding: 28px;
  border-radius: var(--ppg-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--ppg-shadow);
  backdrop-filter: blur(10px);
}

.ppg-panel__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--ppg-line);
}

.ppg-panel__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.ppg-panel__number {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.14), rgba(255, 79, 163, 0.14));
  color: var(--ppg-primary);
  font-weight: 800;
}

.ppg-panel__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.ppg-panel__item p {
  margin: 0;
  color: var(--ppg-text-soft);
  line-height: 1.6;
}

.ppg-value,
.ppg-packages,
.ppg-activation,
.ppg-faq {
  padding: 88px 0;
}

.ppg-value__grid,
.ppg-activation__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ppg-card,
.ppg-miniCard {
  padding: 28px;
  border-radius: var(--ppg-radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 40px rgba(33, 20, 68, 0.08);
}

.ppg-card h3,
.ppg-miniCard h3,
.ppg-stepCard h3 {
  margin: 0 0 14px;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}

.ppg-card p,
.ppg-miniCard p,
.ppg-stepCard p {
  margin: 0;
  color: var(--ppg-text-soft);
  line-height: 1.75;
}

.ppg-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.10), rgba(255, 79, 163, 0.12));
  color: var(--ppg-primary);
}

.ppg-icon svg {
  width: 28px;
  height: 28px;
}

.ppg-quote {
  margin: 34px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--ppg-secondary);
  background: rgba(255, 79, 163, 0.06);
  border-radius: 0 20px 20px 0;
  line-height: 1.8;
  font-size: 1.08rem;
  color: var(--ppg-text);
}

.ppg-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ppg-packageCard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--ppg-radius-xl);
  background: linear-gradient(180deg, #ffffff, #fcfaff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 40px rgba(33, 20, 68, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ppg-packageCard:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 56, 255, 0.22);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.13);
}

.ppg-packageCard--featured {
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff, #faf5ff);
  border-color: rgba(111, 56, 255, 0.18);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.12);
}

.ppg-packageCard__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ppg-primary), var(--ppg-secondary));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ppg-packageCard__top {
  margin-bottom: 18px;
}

.ppg-packageCard__tier {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ppg-packageCard__tier--bronze {
  background: rgba(177, 116, 72, 0.12);
  color: #9c5c33;
}

.ppg-packageCard__tier--silver {
  background: rgba(111, 56, 255, 0.10);
  color: var(--ppg-primary);
}

.ppg-packageCard__tier--gold {
  background: rgba(255, 194, 73, 0.14);
  color: #a06a00;
}

.ppg-packageCard__desc {
  margin: 16px 0 0;
  color: var(--ppg-text-soft);
  line-height: 1.75;
}

.ppg-packageCard__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.ppg-packageCard__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--ppg-text);
  font-weight: 600;
}

.ppg-packageCard__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ppg-primary), var(--ppg-secondary));
  transform: translateY(-50%);
}

.ppg-packageCard__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--ppg-line);
}

.ppg-packageCard__bestfor {
  color: var(--ppg-text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ppg-inlineLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ppg-primary);
  text-decoration: none;
  font-weight: 800;
}

.ppg-inlineLink::after {
  content: "→";
  transition: transform 0.2s ease;
}

.ppg-inlineLink:hover::after {
  transform: translateX(4px);
}

.ppg-process {
  padding: 88px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 163, 0.10), transparent 18%),
    linear-gradient(180deg, var(--ppg-dark), var(--ppg-dark-soft));
  color: #fff;
}

.ppg-process .ppg-section-title {
  color: #fff;
}

.ppg-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ppg-stepCard {
  padding: 24px;
  border-radius: var(--ppg-radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.ppg-stepCard p {
  color: rgba(255,255,255,0.76);
}

.ppg-stepCard__num {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.28), rgba(255, 79, 163, 0.22));
  color: #fff;
  font-weight: 800;
}

.ppg-faqList {
  display: grid;
  gap: 16px;
}

.ppg-faqItem {
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 14px 34px rgba(33, 20, 68, 0.06);
  overflow: hidden;
}

.ppg-faqItem__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: var(--ppg-text);
  font-weight: 700;
  cursor: pointer;
}

.ppg-faqItem__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ppg-primary);
  transition: transform 0.22s ease;
}

.ppg-faqItem.is-open .ppg-faqItem__icon {
  transform: rotate(45deg);
}

.ppg-faqItem__panel {
  padding: 0 24px 22px;
}

.ppg-faqItem__panel p {
  margin: 0;
  color: var(--ppg-text-soft);
  line-height: 1.8;
}

.ppg-cta {
  padding: 0 0 96px;
}

.ppg-cta__card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--ppg-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(111, 56, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #1a1330, #281b49);
  color: #fff;
  box-shadow: var(--ppg-shadow);
}

.ppg-cta__card .ppg-eyebrow {
  color: rgba(255,255,255,0.74);
}

.ppg-cta__card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ppg-cta__card p:last-child {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.ppg-cta__card .ppg-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

.ppg-cta__card .ppg-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
}

@media (max-width: 1100px) {
  .ppg-hero__grid,
  .ppg-cta__card {
    grid-template-columns: 1fr;
  }

  .ppg-value__grid,
  .ppg-packages__grid,
  .ppg-activation__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ppg-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ppg-hero,
  .ppg-value,
  .ppg-packages,
  .ppg-activation,
  .ppg-process,
  .ppg-faq {
    padding: 72px 0;
  }

  .ppg-hero__title {
    max-width: 100%;
  }

  .ppg-value__grid,
  .ppg-packages__grid,
  .ppg-activation__grid,
  .ppg-process__grid {
    grid-template-columns: 1fr;
  }

  .ppg-panel,
  .ppg-card,
  .ppg-miniCard,
  .ppg-packageCard,
  .ppg-stepCard,
  .ppg-cta__card {
    padding: 22px;
  }

  .ppg-faqItem__btn {
    padding: 20px;
  }

  .ppg-faqItem__panel {
    padding: 0 20px 20px;
  }
}

.ppg-activation {
  padding: 88px 0;
}

.ppg-activation__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.ppg-miniCard {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
  border-radius: var(--ppg-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 249, 255, 0.92));
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 40px rgba(33, 20, 68, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ppg-miniCard:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 56, 255, 0.20);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.12);
}

.ppg-miniCard h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ppg-text);
}

.ppg-miniCard p {
  margin: 0;
  color: var(--ppg-text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 760px) {
  .ppg-activation {
    padding: 72px 0;
  }

  .ppg-activation__grid {
    grid-template-columns: 1fr;
  }

  .ppg-miniCard {
    padding: 22px;
  }
}

here is the css 
/* styles.css */
:root{
  --bg: #f6f7fb;
  --white: #ffffff;
  --purple: #7c3aed;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  --radius: 44px;
}

*{ box-sizing: border-box; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: #fff;
}

.wrap{
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  padding: 36px 0 44px;
  display: grid;
  gap: 70px;
}

.cta{
  border-radius: var(--radius);
  padding: 78px 20px 72px;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta--one{
  background: linear-gradient(90deg, #7a1cff 0%, #f0006d 100%);
}

.cta--two{
  background: linear-gradient(90deg, #f0006d 0%, #7a1cff 100%);
}

.cta h2{
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 3.8vw, 62px);
  line-height: 1.12;
}

.cta p{
  margin: 0 auto 36px;
  max-width: 980px;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.55;
  font-weight: 400;
  opacity: 0.95;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  padding: 0 46px;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.cta-card{
  border-radius: var(--radius);
  background: linear-gradient(90deg, #7a1cff 0%, #c0008a 55%, #d1003d 100%);
  padding: 78px 20px 72px;
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  color: #fff;
}

.cta-card h2{
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 3.8vw, 62px);
  line-height: 1.12;
}

.cta-card p{
  margin: 0 auto 36px;
  max-width: 980px;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.55;
  font-weight: 400;
  opacity: 0.95;
}

.cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  padding: 0 46px;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
}

@media (max-width: 720px){
  .wrap{ width: min(1400px, calc(100% - 28px)); gap: 46px; }
  .cta{ padding: 56px 18px 54px; border-radius: 34px; }
  .btn{ height: 60px; font-size: 18px; padding: 0 34px; }

  .cta-card{ padding: 56px 18px 54px; border-radius: 34px; }
  .cta-btn{ height: 60px; font-size: 18px; padding: 0 34px; }
}

/* =========================
   File: styles.css
========================= */

:root{
  --bg: #ffffff;
  --ink: #0f172a;          /* dark navy */
  --muted: #475569;        /* slate */
  --line: rgba(15, 23, 42, 0.08);

  --gradA: #6a00ff;        /* purple */
  --gradB: #ff2d8d;        /* pink */
  --grad: linear-gradient(90deg, var(--gradA) 0%, var(--gradB) 100%);

  --heroBg: linear-gradient(180deg, #fbf1f7 0%, #ffffff 70%);
  --radius: 999px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.center{ text-align:center; }

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap{
  height: 80px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 160px;
}
.brand__logo{
  height: 44px;
  width: auto;
}

/* Desktop nav */
.nav{
  display:flex;
  align-items:center;
  gap: 28px;
}

.nav__link{
  font-weight: 500;
  color: #334155;
  position: relative;
  padding: 8px 2px;
}
.nav__link:hover{ color: #0f172a; }
.nav__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  height:2px;
  width:0%;
  background: var(--grad);
  border-radius: 2px;
  transition: width 180ms ease;
}
.nav__link:hover::after{ width:100%; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: transform 120ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  will-change: transform;
}
.btn:active{ transform: translateY(1px); }

.btn--pill{
  padding: 12px 22px;
}

.btn--primary{
  color:#fff;
  background: var(--grad);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.25);
}
.btn--primary:hover{
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.30);
  transform: translateY(-1px);
}

.btn--outline{
  color: #6a00ff;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
}
.btn--outline:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--nav{
  margin-left: 10px;
}

/* Mobile nav toggle */
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items:center;
  justify-content:center;
  gap: 5px;
  padding: 10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero{
  background: var(--heroBg);
  padding: 84px 0 110px;
}
.hero__inner{
  text-align:center;
  padding-top: 10px;
}
.hero__title{
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 800;
}
.gradient-text{
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle{
  max-width: 820px;
  margin: 0 auto 34px;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.6;
  color: #334155;
}
.hero__cta{
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Sections */
.section{
  padding: 90px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}
.section--services{
  padding-top: 80px;
}
.section__title{
  font-size: clamp(34px, 4vw, 56px);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section__subtitle{
  margin: 0 auto;
  max-width: 820px;
  color: #475569;
  font-size: 18px;
  line-height: 1.6;
}

/* Optional faint placeholders for service cards */
.services-grid{
  margin-top: 46px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card{
  height: 120px;
  border-radius: 18px;
  border: 1px dashed rgba(124, 58, 237, 0.25);
  background: linear-gradient(180deg, rgba(124,58,237,0.06), rgba(255,45,141,0.03));
}

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer__inner{
  display:flex;
  justify-content:center;
  color: #64748b;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 920px){
  .nav-toggle{ display:flex; }

  .nav{
    position: fixed;
    inset: 80px 16px auto 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
    display: grid;
    gap: 12px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open{
    opacity: 1;
    transform: translateY(0px);
    pointer-events: auto;
  }

  .btn--nav{
    margin-left: 0;
    width: 100%;
  }

  .nav__link{
    padding: 12px 10px;
    border-radius: 12px;
  }
  .nav__link:hover{
    background: rgba(15, 23, 42, 0.04);
  }

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

    :root{
      --ink: #0f172a;
      --muted: #475569;
      --link: #7c3aed;

      --card-bg: #fbf2f7;
      --card-border: rgba(15, 23, 42, 0.04);
      --shadow: 0 14px 28px rgba(15, 23, 42, 0.06);

      --purple: #7c3aed;
      --pink: #ec4899;
    }

    *{ box-sizing: border-box; }
    body{
      margin: 0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--ink);
      background: #fff;
    }

    .wrap{
      width: min(1320px, calc(100% - 64px));
      margin: 0 auto;
      padding: 56px 0;
    }

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

    .card{
      background: linear-gradient(180deg, rgba(251,242,247,1) 0%, rgba(251,242,247,0.78) 100%);
      border: 1px solid var(--card-border);
      border-radius: 28px;
      padding: 34px 40px 30px;
      box-shadow: var(--shadow);
      min-height: 250px;

      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .icon{
      width: 54px;
      height: 54px;
      margin-bottom: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .title{
      font-size: 28px;
      line-height: 1.25;
      margin: 0 0 14px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .desc{
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.7;
      max-width: 56ch;
    }

    .learn{
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--link);
      font-weight: 500;
      font-size: 18px;
      text-decoration: none;
    }
    .learn svg{
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2.4;
      fill: none;
    }
    .learn:hover{ opacity: 0.9; }

    .is-purple{ color: var(--purple); }
    .is-pink{ color: var(--pink); }

    @media (max-width: 980px){
      .wrap{ width: min(900px, calc(100% - 40px)); padding: 40px 0; }
      .grid{ grid-template-columns: 1fr; gap: 22px; }
      .card{ padding: 28px 28px 24px; min-height: auto; }
      .title{ font-size: 24px; }
      .desc{ font-size: 17px; }
      .learn{ font-size: 17px; }
    }

    .cta,
.cta-card{
  border-radius: 28px;
}
  
/* Reduce size of the 3 CTA cards a bit + make all text white (except button text) */
.wrap{
  width: min(1280px, calc(100% - 64px));
  gap: 56px;
}

.cta,
.cta-card{
  padding: 64px 20px 58px; /* smaller than before */
  color: #fff;
}

/* Keep ALL text white */
.cta h2,
.cta p,
.cta-card h2,
.cta-card p{
  color: #fff;
}

/* Slightly smaller typography to match reduced card size */
.cta h2,
.cta-card h2{
  font-size: clamp(32px, 3.2vw, 56px);
}

.cta p,
.cta-card p{
  font-size: clamp(15px, 1.35vw, 21px);
  margin-bottom: 28px;
}

/* Keep button text as-is (purple). Buttons already set their own color. */
@media (max-width: 720px){
  .wrap{
    width: min(1280px, calc(100% - 28px));
    gap: 40px;
  }

  .cta,
  .cta-card{
    padding: 50px 18px 48px;
  }
}



  :root{
    --bg: #f7f7fb;
    --text: #0e1326;
    --muted: #4b5563;
    --purple: #7c3aed;
    --pink: #d20a8c;
    --check: #7c3aed;
    --shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
  }

  .hero{
    background: var(--bg);
    padding: 72px 24px;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  }

  .hero__container{
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 76px;
  }

  .hero__media{
    position: relative;
    width: 720px;
    height: 430px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #d1d5db;
    flex: 0 0 auto;
  }

  .hero__media-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero__play{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 92px;
    height: 92px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 16px 28px rgba(0,0,0,0.22);
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .hero__play:focus-visible{
    outline: 3px solid rgba(124,58,237,0.45);
    outline-offset: 6px;
  }

  .hero__play-icon{
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--purple);
    transform: translateX(2px);
  }

  .hero__content{
    max-width: 560px;
  }

  .hero__title{
    margin: 0 0 18px 0;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.03;
    font-size: clamp(40px, 4vw, 66px);
  }

  .hero__title--purple{ color: var(--purple); }
  .hero__title--pink{ color: var(--pink); }

  .hero__desc{
    margin: 0 0 26px 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
  }

  .hero__list{
    list-style: none;
    padding: 0;
    margin: 0 0 34px 0;
    display: grid;
    gap: 18px;
  }

  .hero__item{
    display: flex;
    align-items: center;
    gap: 14px;
    color: #1f2937;
    font-size: 18px;
    line-height: 1.4;
  }

  .hero__check{
    width: 22px;
    height: 22px;
    display: inline-block;
    flex: 0 0 auto;
    background: no-repeat center / contain;
    /* inline SVG check */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%237c3aed' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .hero__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 38px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
    box-shadow: 0 14px 26px rgba(124,58,237,0.22);
  }

  /* Responsive */
  @media (max-width: 1100px){
    .hero__container{
      flex-direction: column;
      align-items: flex-start;
      gap: 40px;
    }
    .hero__media{
      width: min(720px, 100%);
      height: clamp(260px, 44vw, 430px);
    }
    .hero__content{ max-width: 720px; }
  }


  .sponsor-partner{
    background:#fff;
    text-align:center;
    padding: 34px 24px 34px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .sponsor-partner__title{
  margin: 0 0 8px;              /* was 14px */
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f172a;
}

  .sponsor-partner__subtitle{
  margin: 0 auto;               /* removes extra vertical spacing */
  max-width: 1100px;
  font-size: clamp(15px, 1.25vw, 20px);  /* smaller text */
  line-height: 1.55;
  color: #475569;
  font-weight: 500;
}

/* Make wrapping look nicer on mobile */
.sponsor-partner__title,
.sponsor-partner__subtitle{
  text-wrap: balance;     /* modern browsers: balances line breaks nicely */
}

/* Mobile fixes */
@media (max-width: 600px){
  .sponsor-partner{
    padding: 26px 16px 26px; /* cleaner side spacing */
  }

  .sponsor-partner__subtitle br{
    display: none;         /* removes forced break that causes ugly layout */
  }

  .sponsor-partner__title{
    font-size: 32px;
    line-height: 1.12;
    margin-bottom: 6px;    /* tighter gap */
  }

  .sponsor-partner__subtitle{
    font-size: 15px;
    line-height: 1.6;
    max-width: 36ch;       /* prevents overly wide lines */
  }
}

.partner-why{
    background: linear-gradient(90deg, #ffffff 0%, #fbf1f7 70%, #ffffff 100%);
    padding: 72px 24px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #0f172a;
  }

  .partner-why__inner{
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: start;
  }

  .partner-why__title{
    margin: 0 0 30px 0;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .partner-why__list{
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    gap: 26px;
  }

  .partner-why__item{
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
  }

  .partner-why__num{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    background: linear-gradient(135deg, #ff2d8d 0%, #6a00ff 100%);
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.18);
  }

  .partner-why__item-title{
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
  }

  .partner-why__item-desc{
    font-size: 20px;
    line-height: 1.6;
    color: #475569;
    font-weight: 500;
    max-width: 62ch;
  }

  .partner-why__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 38px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
    box-shadow: 0 16px 30px rgba(124,58,237,0.22);
    white-space: nowrap;
  }

  .partner-why__right{
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
    background: #e5e7eb;
    height: 520px;
  }

  .partner-why__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 980px){
    .partner-why__inner{
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .partner-why__right{
      height: clamp(320px, 55vw, 520px);
    }
    .partner-why__item-desc{
      font-size: 18px;
    }
  }

  @media (max-width: 520px){
    .partner-why{
      padding: 54px 16px;
    }
    .partner-why__list{ gap: 22px; }
    .partner-why__item{
      grid-template-columns: 40px 1fr;
      gap: 14px;
    }
    .partner-why__num{
      width: 40px;
      height: 40px;
    }
    .partner-why__item-title{ font-size: 18px; }
    .partner-why__item-desc{ font-size: 16px; }
    .partner-why__cta{
      height: 58px;
      padding: 0 26px;
      font-size: 16px;
      width: fit-content;
    }
  }

  .ppack{
    background:#fff;
    padding: 56px 24px 72px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:#0f172a;
  }

  .ppack__title{
    margin: 0 0 38px;
    text-align:center;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(26px, 2.2vw, 40px);
    line-height: 1.2;
  }

  .ppack__grid{
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
  }

  .ppack__card{
    border-radius: 26px;
    background:#fff;
    padding: 44px 44px 38px;
  }

  .ppack__card--base{
    border: 2px solid rgba(15, 23, 42, 0.12);
    box-shadow: none;
  }

  .ppack__card--featured{
    border: 2px solid rgba(167, 115, 255, 0.70);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.10);
  }

  .ppack__pill{
    display: inline-flex;
    align-items: center;
    height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    color:#fff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }

  .ppack__pill--bronze{ background:#ff7a00; }
  .ppack__pill--silver{ background:#6b7280; }
  .ppack__pill--gold{ background:#f4b400; }

  .ppack__list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 24px;
  }

  .ppack__item{
    display:flex;
    align-items: center;
    gap: 16px;
    font-size: 22px;
    line-height: 1.45;
    color:#334155;
    font-weight: 500;
  }

  .ppack__check{
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    background: no-repeat center / contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%2300c853' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  @media (max-width: 1040px){
    .ppack__grid{ grid-template-columns: 1fr; gap: 22px; }
    .ppack__card{ padding: 34px 28px 30px; }
    .ppack__item{ font-size: 18px; }
    .ppack__pill{ font-size: 18px; height: 48px; }
  }

  /* Hover border to logo color (Partnership Packages cards) */
.ppack{
  /* Uses your existing theme vars if present; falls back to purple */
  --logo-color: var(--gradA, var(--purple, #7c3aed));
}

.ppack__card{
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.ppack__card:hover,
.ppack__card:focus-within{
  border-color: var(--logo-color);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

/* Keep the featured card’s hover consistent (still goes to logo color) */
.ppack__card--featured:hover,
.ppack__card--featured:focus-within{
  border-color: var(--logo-color);
}

/* Slightly smaller card text */
.ppack__pill{
  font-size: 15px;     /* was 18px */
  height: 46px;        /* was 48px */
  padding: 0 22px;     /* was 24px */
  margin-bottom: 20px; /* was 22px */
}

.ppack__item{
  font-size: 15px;     /* was 18px */
  gap: 12px;           /* was 14px */
}

.ppack__list{
  gap: 16px;           /* was 18px */
}

  .ready-strip{
    background: linear-gradient(180deg, #fbf1f7 0%, #ffffff 100%);
    text-align: center;
    padding: 64px 24px 66px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .ready-strip__title{
    margin: 0 0 16px;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
    font-size: clamp(40px, 5.4vw, 78px);
  }

  .ready-strip__subtitle{
    margin: 0 auto;
    max-width: 980px;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
    font-size: clamp(16px, 1.6vw, 24px);
  }

  .ready-transform{
    background: linear-gradient(180deg, #fbf1f7 0%, #ffffff 100%);
    padding: 70px 24px 86px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #0f172a;
  }

  .ready-transform__inner{
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
  }

  .ready-transform__title{
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(32px, 4.2vw, 60px); /* ✅ reduced */
}

  .ready-transform__subtitle{
    margin: 0 auto 40px;
    max-width: 980px;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
    font-size: clamp(16px, 1.6vw, 24px);
  }

  .ready-transform__card{
  max-width: 860px;   /* ✅ middle width */
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 44px 46px 38px;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
  text-align: left;
}

  .ready-transform__field{
    margin-bottom: 26px;
  }

  .ready-transform__label{
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #0f172a;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .ready-transform__icon{
    color: #7c3aed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
  }

  .ready-transform__control{
    position: relative;
  }

  .ready-transform__input,
  .ready-transform__textarea{
    width: 100%;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 20px;
    color: #0f172a;
    outline: none;
  }

  .ready-transform__input{
    height: 62px;
    padding-right: 62px; /* room for badge */
  }

  .ready-transform__textarea{
    min-height: 170px;
    resize: none;
    padding-top: 18px;
  }

  .ready-transform__input::placeholder,
  .ready-transform__textarea::placeholder{
    color: #9aa3af;
    font-weight: 500;
  }

  .ready-transform__input:focus,
  .ready-transform__textarea:focus{
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
    background: #fff;
  }

  .ready-transform__badge{
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #ef4444;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    line-height: 1;
    font-size: 18px;
    pointer-events: none;
  }

  .ready-transform__btn{
    width: 100%;
    margin-top: 10px;
    height: 74px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(124,58,237,0.22);
  }

  .ready-transform__btn:focus-visible{
    outline: 3px solid rgba(124,58,237,0.45);
    outline-offset: 6px;
  }

  .ready-transform__btn-icon{
    display: inline-flex;
    color: #fff;
  }

  @media (max-width: 720px){
    .ready-transform{
      padding: 54px 16px 66px;
    }

    .ready-transform__subtitle{
      margin-bottom: 28px;
      max-width: 42ch;
    }

    .ready-transform__card{
      padding: 28px 18px 24px;
      border-radius: 22px;
    }

    .ready-transform__label{
      font-size: 18px;
    }

    .ready-transform__input,
    .ready-transform__textarea{
      font-size: 18px;
    }

    .ready-transform__btn{
      height: 66px;
      font-size: 18px;
    }
  }

  .balm-footer{
    background: #0b1424;
    color: #e5e7eb;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    padding: 52px 24px 38px;
  }

  .balm-footer__inner{
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .balm-footer__logo{
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 34px;
    color: #b56bff;
    margin: 4px 0 18px;
  }

  .balm-footer__desc{
    margin: 0;
    max-width: 520px;
    color: #9aa4b2;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 500;
  }

  .balm-footer__title{
    margin: 10px 0 18px;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.01em;
  }

  .balm-footer__links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
  }

  .balm-footer__link{
    color: #9aa4b2;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
  }

  .balm-footer__link:hover{
    color: #ffffff;
  }

  .balm-footer__social{
    display: flex;
    gap: 18px;
    margin-top: 18px;
  }

  .balm-footer__social-btn{
    width: 62px;
    height: 62px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #121c2e;
    color: #ffffff;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  }

  .balm-footer__social-btn:hover{
    box-shadow: inset 0 0 0 1px rgba(181,107,255,0.55);
  }

  .balm-footer__rule{
    max-width: 1320px;
    margin: 46px auto 18px;
    height: 1px;
    background: rgba(255,255,255,0.08);
  }

  .balm-footer__copy{
    text-align: center;
    color: #8b96a6;
    font-size: 22px;
    font-weight: 600;
    padding-top: 10px;
  }

  @media (max-width: 980px){
    .balm-footer__inner{
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .balm-footer__desc{ font-size: 18px; }
    .balm-footer__link{ font-size: 18px; }
    .balm-footer__copy{ font-size: 18px; }
  }


.aboutpg-header{
  width: 100%;
  background: #ffffff;
}

.aboutpg-header__inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.aboutpg-brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.aboutpg-brand__logo{
  height: 54px;
  width: auto;
  display: block;
}

.aboutpg-nav{
  display: flex;
  align-items: center;
  gap: 56px;
}

.aboutpg-nav__link{
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
}

.aboutpg-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  white-space: nowrap;
}

@media (max-width: 980px){
  .aboutpg-nav{ gap: 22px; flex-wrap: wrap; justify-content: center; }
  .aboutpg-nav__link{ font-size: 18px; }
  .aboutpg-cta{ font-size: 18px; height: 52px; padding: 0 26px; }
}

/* =========================================================
   HERO FIX (paste at the VERY BOTTOM of your style.css)
   This removes the "weird background" behind the 2 hero buttons
   and stops class name collisions between two different heroes.
========================================================= */

/* Theme helpers (safe even if you already have vars) */
:root{
  --gradA: #6a00ff;
  --gradB: #ff2d8d;
  --grad: linear-gradient(90deg, var(--gradA) 0%, var(--gradB) 100%);
  --ink: #0f172a;
  --muted: #475569;
}

/* Gradient text */
.gradient-text{
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons (scoped + reliable) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration:none;
  border: 0;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 200ms ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  color:#fff;
  background: var(--grad);
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.22);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.28);
}

.btn--outline{
  color: var(--gradA);
  border: 2px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    var(--grad) border-box;
}
.btn--outline:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
}

/* =========================
   HERO #1 (Main hero)
========================= */
.hero-main{
  background: linear-gradient(180deg, #fbf1f7 0%, #ffffff 70%);
  padding: 84px 0 110px;
}

.hero-main__inner{
  text-align:center;
  padding-top: 10px;
}

.hero-main__title{
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 900;
  color: var(--ink);
}

.hero-main__subtitle{
  max-width: 820px;
  margin: 0 auto 34px;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.6;
  color: #334155;
}

/* ✅ THIS is the important part: no background behind both buttons */
.hero-main__cta{
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;

  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.hero-main__cta::before,
.hero-main__cta::after{
  content:none !important;
  display:none !important;
}

/* =========================
   HERO #2 (Split hero)
========================= */
.hero-split{
  background: #f7f7fb;
  padding: 72px 24px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero-split__container{
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 76px;
}

.hero-split__media{
  position: relative;
  width: 720px;
  height: 430px;
  border-radius: 22px;
  overflow: hidden;
  background: #d1d5db;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
  flex: 0 0 auto;
}

.hero-split__media-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-split__play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 28px rgba(0,0,0,0.22);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.hero-split__play:focus-visible{
  outline: 3px solid rgba(124,58,237,0.45);
  outline-offset: 6px;
}

.hero-split__play-icon{
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--gradA);
  transform: translateX(2px);
}

.hero-split__content{
  max-width: 560px;
}

.hero-split__title{
  margin: 0 0 18px 0;
  color: #0e1326;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.03;
  font-size: clamp(40px, 4vw, 66px);
}

.hero-split__title--purple{ color: var(--gradA); }
.hero-split__title--pink{ color: #d20a8c; }

.hero-split__desc{
  margin: 0 0 26px 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-split__list{
  list-style: none;
  padding: 0;
  margin: 0 0 34px 0;
  display: grid;
  gap: 18px;
}

.hero-split__item{
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.4;
}

.hero-split__check{
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 auto;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%236a00ff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero-split__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 38px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  box-shadow: 0 14px 26px rgba(124,58,237,0.22);
}

/* Responsive */
@media (max-width: 1100px){
  .hero-split__container{
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .hero-split__media{
    width: min(720px, 100%);
    height: clamp(260px, 44vw, 430px);
  }
  .hero-split__content{
    max-width: 720px;
  }
}

/* ===== Header "Book a Call" button — match screenshot ===== */
.site-header .btn--header-call{
  /* exact pill + gradient look */
  background: linear-gradient(90deg, #6a00ff 0%, #ff2d8d 100%) !important;
  color: #fff !important;

  border: none !important;
  border-radius: 999px !important;

  /* size similar to screenshot */
  padding: 14px 30px !important;
  font-weight: 700 !important;

  /* subtle depth like screenshot */
  box-shadow: 0 10px 24px rgba(106, 0, 255, 0.22) !important;
}

.site-header .btn--header-call:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(106, 0, 255, 0.26) !important;
}

.site-header .btn--header-call:active{
  transform: translateY(0px);
}

/* ===== Mobile hamburger: match screenshot (3 lines, no box) ===== */
@media (max-width: 920px){
  .site-header .nav-toggle{
    /* remove the “rounded square” look */
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;

    width: 48px;
    height: 48px;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;

    cursor: pointer;
  }

  .site-header .nav-toggle span{
    display: block;
    width: 34px;          /* line length */
    height: 3px;          /* line thickness */
    background: #0f172a;  /* dark navy like screenshot */
    border-radius: 999px; /* rounded ends */
  }

  /* nice focus ring (optional) */
  .site-header .nav-toggle:focus-visible{
    outline: 3px solid rgba(124,58,237,.35);
    outline-offset: 6px;
    border-radius: 12px;
  }
}

/* =========================================================
   FIGMA HERO (Exact recreation - isolated classes)
   Paste at VERY BOTTOM of style.css
========================================================= */

.fig-hero{
  background: #ffffff;
  padding: 86px 0 96px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.fig-hero__container{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: flex-start;
  gap: 86px;
}

/* Left media card */
.fig-hero__media{
  position: relative;
  width: 740px;
  height: 440px;
  border-radius: 22px;
  overflow: hidden;
  background: #d1d5db;

  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
  flex: 0 0 auto;
}

.fig-hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play button */
.fig-hero__play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 98px;
  height: 98px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.92);

  display: grid;
  place-items: center;
  cursor: pointer;

  box-shadow: 0 18px 34px rgba(0,0,0,0.20);
}

.fig-hero__play:focus-visible{
  outline: 3px solid rgba(124,58,237,0.35);
  outline-offset: 8px;
}

.fig-hero__play-icon{
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #7c3aed;
  transform: translateX(3px);
}

/* Right content */
.fig-hero__content{
  max-width: 620px;
  padding-top: 8px;
}

.fig-hero__title{
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: 76px;
  color: #0f172a;
}

.fig-hero__title-purple{ color: #7c3aed; }
.fig-hero__title-pink{ color: #d20a8c; }

.fig-hero__desc{
  margin: 0 0 28px;
  color: #475569;
  font-weight: 500;
  line-height: 1.65;
  font-size: 20px;
}

/* List with purple checks */
.fig-hero__list{
  list-style: none;
  padding: 0;
  margin: 0 0 34px;

  display: grid;
  gap: 22px;
}

.fig-hero__item{
  position: relative;
  padding-left: 44px;
  color: #334155;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.45;
}

.fig-hero__item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;

  width: 26px;
  height: 26px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  /* Purple check icon */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%237c3aed' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* CTA button */
.fig-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 66px;
  padding: 0 52px;
  border-radius: 999px;

  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;

  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.22);
}

.fig-hero__btn:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.fig-hero__btn:active{
  transform: translateY(0);
}

/* Responsive (matches layout behavior: stack on smaller screens) */
@media (max-width: 1100px){
  .fig-hero__container{
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .fig-hero__media{
    width: min(740px, 100%);
    height: clamp(260px, 44vw, 440px);
  }

  .fig-hero__title{
    font-size: clamp(44px, 7vw, 70px);
  }

  .fig-hero__desc{
    font-size: 18px;
  }

  .fig-hero__item{
    font-size: 18px;
  }

  .fig-hero__btn{
    height: 62px;
    padding: 0 44px;
    font-size: 18px;
  }
}

/* =========================================================
   BB HERO — matches the "good" screenshot (not oversized)
   Paste at VERY BOTTOM of style.css
========================================================= */
.bb-hero, .bb-hero * { box-sizing: border-box; }

.bb-hero{
  background: #f7f7fb;               /* subtle light gray like screenshot */
  padding: 72px 0 86px;               /* removes giant white space */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.bb-hero__inner{
  max-width: 1400px;                  /* gives right side enough space */
  margin: 0 auto;
  padding: 0 24px;

  display: grid;                      /* grid prevents “too narrow right column” */
  grid-template-columns: minmax(520px, 740px) minmax(420px, 620px);
  gap: 76px;
  align-items: center;                /* aligns content like screenshot */
}

/* LEFT IMAGE CARD */
.bb-hero__media{
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #d1d5db;
  aspect-ratio: 720 / 430;            /* keeps exact card proportion */
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
}

.bb-hero__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PLAY BUTTON */
.bb-hero__play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  cursor: pointer;

  box-shadow: 0 18px 34px rgba(0,0,0,0.20);
}

.bb-hero__play-icon{
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #7c3aed;
  transform: translateX(2px);
}

/* RIGHT CONTENT */
.bb-hero__content{
  max-width: 620px;
}

/* slightly smaller so line1 fits */
.bb-hero__title{
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

/* force line 1 to stay on one line */
.bb-hero__line1{
  display: inline-block;
  white-space: nowrap;
}
.bb-hero__title-purple{ color: #7c3aed; }
.bb-hero__title-pink{ color: #d20a8c; }

.bb-hero__desc{
  margin: 0 0 28px;
  color: #475569;
  font-weight: 500;
  line-height: 1.65;
  font-size: 18px;                    /* matches screenshot */
  max-width: 54ch;
}

/* CHECK LIST */
.bb-hero__list{
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: grid;
  gap: 18px;
}

.bb-hero__item{
  position: relative;
  padding-left: 44px;
  color: #334155;
  font-weight: 600;
  font-size: 18px;                    /* matches screenshot */
  line-height: 1.5;
}

.bb-hero__item::before{
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%237c3aed' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* CTA BUTTON */
.bb-hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;                       /* screenshot-ish */
  padding: 0 44px;
  border-radius: 999px;

  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 18px;

  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.22);
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .bb-hero__inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bb-hero__content{ max-width: 720px; }
}

/* Smaller paragraph */
.bb-hero__desc{
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 58ch;
}

/* Smaller list + tighter spacing */
.bb-hero__list{
  gap: 14px;
  margin: 0 0 26px;
}

.bb-hero__item{
  font-size: 16px;
  line-height: 1.45;
  padding-left: 38px;  /* slightly less indent */
}

/* Smaller check icon to match */
.bb-hero__item::before{
  width: 20px;
  height: 20px;
  top: 2px;
}

/* Smaller button */
.bb-hero__btn{
  height: 52px;
  padding: 0 36px;
  font-size: 16px;
  font-weight: 800;
}

/* ===== Make header NAV links smaller (e.g., "Sponsor Partner") ===== */
.site-header .nav__link{
  font-size: 16px;   /* reduce text size */
  padding: 6px 2px;  /* optional: slightly tighter */
}

/* ===== Make the header BUTTON smaller ("Book a Call") ===== */
.site-header .btn--nav{
  font-size: 16px;     /* text size */
  padding: 10px 20px;  /* controls overall button size */
  height: 48px;        /* optional: forces a smaller pill */
}

/* If you added the special class earlier, this guarantees it shrinks too */
.site-header .btn--header-call{
  font-size: 16px !important;
  padding: 10px 20px !important;
  height: 48px !important;
}

/* Smaller nav link text */
.site-header .nav__link{
  font-size: 16px;     /* change to 15px if you want smaller */
  line-height: 1;
  padding: 6px 2px;    /* keeps spacing neat */
}

/* =========================================================
   ABOUT BALM GLOBAL — matches screenshot
========================================================= */
.about-banner{
  /* soft pink background like screenshot */
  background: linear-gradient(180deg, #fbf1f7 0%, #ffffff 100%);
  padding: 86px 0 110px;
}

.about-banner__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.about-banner__title{
  margin: 0 0 22px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800; /* was 900 */
  letter-spacing: -0.03em;
  line-height: 1.02;

  /* reduced again */
  font-size: clamp(46px, 6.2vw, 90px); /* was 49px ... 93px */
  color: #0f172a;
}

.about-banner__grad{
  background: linear-gradient(90deg, #6a00ff 0%, #ff2d8d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-banner__subtitle{
  margin: 0 auto;
  max-width: 980px;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  color: #475569;
  line-height: 1.55;

  /* subtitle size like screenshot */
  font-size: clamp(18px, 2.0vw, 30px);

  /* nicer line breaks */
  text-wrap: balance;
}

/* mobile spacing like screenshot (still roomy but not huge) */
@media (max-width: 600px){
  .about-banner{
    padding: 64px 0 78px;
  }
  .about-banner__title{
    margin-bottom: 16px;
  }
}

.story-section{
  background: #fff;
  padding: 90px 0;
}

.story-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;

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

/* Left side */
.story-title{
  margin: 0 0 22px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(40px, 4.2vw, 64px);
  color: #0f172a;
}

.story-paragraph{
  margin: 0 0 22px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  max-width: 56ch;
}

.story-brand{
  font-weight: 800;
  color: #0f172a;
}

/* Right side image */
.story-imageWrap{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  background: #f1f5f9;
}

.story-image{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px){
  .story-container{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-paragraph{
    max-width: 100%;
  }
}

/* --- Section wrapper (light bg like screenshot) --- */
.mv-section{
  background: #f8fafc;
  padding: 90px 0 110px;
}

/* --- centered width + side padding --- */
.mv-container{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 26px;
}

/* --- 3-card layout --- */
.mv-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

/* --- card styling --- */
.mv-card{
  background: #ffffff;
  border-radius: 22px;
  padding: 44px 44px 42px;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.10),
    0 2px 6px rgba(15, 23, 42, 0.06);
  min-height: 360px;
}

/* --- gradient icon circle --- */
.mv-icon{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: radial-gradient(90% 90% at 30% 30%, #a855f7 0%, #ec4899 55%, #db2777 100%);
}

/* white-line icon look */
.mv-svg{
  width: 30px;
  height: 30px;
  color: #ffffff;
}

/* --- titles --- */
.mv-title{
  margin: 0 0 18px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  font-size: clamp(26px, 2.3vw, 40px);
  line-height: 1.1;
}

/* --- paragraph text --- */
.mv-text{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #475569;
  max-width: 42ch;
}

/* --- values list (dot bullets like screenshot) --- */
.mv-list{
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #475569;
  font-size: 18px;
  line-height: 1.9;
}

.mv-list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mv-list li::before{
  content: "•";
  color: #475569;
  line-height: 1.9;
}

/* --- responsive --- */
@media (max-width: 980px){
  .mv-grid{ grid-template-columns: 1fr; }
  .mv-card{ min-height: unset; }
  .mv-text{ max-width: 100%; }
}

.impact{
  /* thin purple border like screenshot */
  border-top: 3px solid #7c3aed;
  border-bottom: 3px solid #7c3aed;

  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 50%, #ec4899 100%);
  color: #fff;
  padding: 90px 0 95px;
}

.impact__inner{
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
}

.impact__title{
  margin: 0 0 58px;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-size: clamp(32px, 4vw, 56px);
}

.impact__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
  text-align: center;
}

.impact__number{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(48px, 5.6vw, 86px);
  margin-bottom: 14px;
  text-shadow: 0 6px 22px rgba(0,0,0,.18);
}

.impact__label{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 26px);
  opacity: 0.98;
}

/* Responsive */
@media (max-width: 980px){
  .impact{ padding: 70px 0 75px; }
  .impact__title{ margin-bottom: 42px; }
  .impact__grid{ grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }
}

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

.team{
  background: #fff;
  padding: 86px 0 96px;
}

.team__inner{
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
}

.team__head{
  text-align: center;
  margin-bottom: 44px;
}

.team__title{
  margin: 0 0 10px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.05;
}

.team__subtitle{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  color: #475569;
  line-height: 1.6;
}

/* Carousel Layout */
.teamCarousel{
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 14px;
}

.teamCarousel__viewport{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  outline: none;
}

.teamCarousel__viewport:focus{
  box-shadow: 0 0 0 4px rgba(168, 85, 247, .25);
}

.teamCarousel__track{
  display: flex;
  gap: 34px;
  padding: 0 2px;
}

/* Cards */
.teamCard{
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 68px) / 3); /* 3 cards per view with gap */
  min-width: 260px;
}

.teamCard__media{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.06);
  background: #f1f5f9;
}

.teamCard__media img{
  width: 100%;
  height: 340px;
  display: block;
  object-fit: cover;
}

.teamCard__media--bw img{
  filter: grayscale(100%) contrast(1.05);
}

.teamCard__body{
  padding: 18px 2px 0;
}

.teamCard__name{
  margin: 0 0 4px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
  font-size: 26px;
}

.teamCard__role{
  margin: 0 0 14px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #a855f7;
  font-weight: 700;
  font-size: 18px;
}

/* Social button */
.teamCard__social{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 14px;

  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.10);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.teamCard__socialIcon{
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: #a855f7;
}
.teamCard__socialIcon svg{ width: 18px; height: 18px; }

.teamCard__social:hover{
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.10);
}

/* Prev/Next buttons */
.teamCarousel__nav{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  font-size: 30px;
  line-height: 0;
  display: grid;
  place-items: center;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.teamCarousel__nav:hover{ transform: translateY(-1px); box-shadow: 0 14px 22px rgba(15, 23, 42, 0.12); }
.teamCarousel__nav:disabled{ opacity: .4; cursor: not-allowed; transform: none; }

/* Dots */
.teamCarousel__dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.teamCarousel__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 42, 0.18);
  cursor: pointer;
}
.teamCarousel__dot.is-active{
  background: #a855f7;
}

/* Responsive: 2 per view */
@media (max-width: 980px){
  .teamCarousel{ grid-template-columns: 44px 1fr 44px; }
  .teamCard{ flex-basis: calc((100% - 34px) / 2); }
  .teamCard__media img{ height: 320px; }
}

/* Mobile: 1 per view */
@media (max-width: 640px){
  .teamCarousel{ grid-template-columns: 40px 1fr 40px; gap: 10px; }
  .teamCarousel__track{ gap: 18px; }
  .teamCard{ flex-basis: 100%; }
  .teamCard__media img{ height: 300px; }
}

/* ===== Community CTA (matches screenshot style) ===== */
.community-cta{
  background: #faf3f7;              /* soft pink-tint */
  padding: 105px 0 115px;
  position: relative;
}

.community-cta::before{
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 70px;
  background: linear-gradient(to bottom, rgba(15,23,42,.08), rgba(15,23,42,0));
  opacity: .25;                      /* subtle top fade like screenshot */
  pointer-events: none;
}

.community-cta__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.community-cta__icon{
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  color: #7c3aed;                    /* purple */
}

.community-cta__icon svg{
  width: 100%;
  height: 100%;
}

.community-cta__title{
  margin: 0 0 16px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.community-cta__subtitle{
  margin: 0 auto 34px;
  max-width: 62ch;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.6;
  color: #475569;
}

/* Buttons */
.community-cta__actions{
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.community-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 44px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  will-change: transform;
}

.community-btn--primary{
  color: #fff;
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 40%, #ec4899 100%);
  box-shadow: 0 14px 30px rgba(236, 72, 153, .25);
}

.community-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(236, 72, 153, .32);
}

.community-btn--outline{
  color: #7c3aed;
  background: rgba(255,255,255,.75);
  border: 3px solid #7c3aed;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.community-btn--outline:hover{
  transform: translateY(-1px);
  background: #ffffff;
}

/* Responsive */
@media (max-width: 520px){
  .community-btn{
    width: 100%;
    max-width: 320px;
    font-size: 18px;
    height: 58px;
    padding: 0 28px;
  }
  .community-cta__actions{ width: 100%; }
}

.site-footer{
  background: #0b1220; /* deep navy */
  color: rgba(255,255,255,.78);
  padding: 70px 0 34px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.site-footer__container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
}

.site-footer__grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Brand */
.site-footer__brand{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 34px;
  color: #a855f7; /* purple brand */
  margin-bottom: 18px;
}

.site-footer__desc{
  margin: 0;
  max-width: 52ch;
  font-size: 22px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}

/* Titles */
.site-footer__title{
  margin: 8px 0 18px;
  font-weight: 900;
  font-size: 26px;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.01em;
}

/* Links */
.site-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.site-footer__links a{
  text-decoration: none;
  font-size: 22px;
  color: rgba(255,255,255,.55);
  transition: color .15s ease, transform .15s ease;
}

.site-footer__links a:hover{
  color: rgba(255,255,255,.88);
  transform: translateX(2px);
}

/* Social */
.site-footer__social{
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}

.social-btn{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.social-btn svg{
  width: 24px;
  height: 24px;
}

.social-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
}

/* Divider + bottom */
.site-footer__divider{
  margin-top: 56px;
  height: 1px;
  background: rgba(255,255,255,.10);
}

.site-footer__bottom{
  padding-top: 26px;
  display: flex;
  justify-content: center;
}

.site-footer__copyright{
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 22px;
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 980px){
  .site-footer__container{ padding: 0 22px; }
  .site-footer__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .site-footer__brand{ font-size: 30px; }
  .site-footer__desc, .site-footer__links a, .site-footer__copyright{ font-size: 18px; }
  .site-footer__title{ font-size: 22px; }
}

.success-stories{
  background: #faf3f7;            /* soft pink tint */
  padding: 86px 0 110px;
  position: relative;
}

/* subtle top fade like the screenshot */
.success-stories::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(15,23,42,.10), rgba(15,23,42,0));
  opacity: .18;
  pointer-events:none;
}

.success-stories__inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.success-stories__title{
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #0f172a;
  font-size: clamp(42px, 5.2vw, 86px);
}

.success-stories__grad{
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 35%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.success-stories__subtitle{
  margin: 0 auto 110px;
  max-width: 70ch;
  color: #475569;
  font-size: clamp(16px, 1.55vw, 24px);
  line-height: 1.7;
  font-weight: 600;
}

/* stats row */
.success-stories__stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  align-items: end;
}

.success-stories__num{
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(46px, 4.8vw, 78px);
  color: #a855f7; /* purple like screenshot */
  margin-bottom: 14px;
}

.success-stories__label{
  font-weight: 700;
  color: #475569;
  font-size: clamp(16px, 1.6vw, 24px);
}

/* responsive */
@media (max-width: 900px){
  .success-stories__subtitle{ margin-bottom: 70px; }
  .success-stories__stats{ grid-template-columns: 1fr; gap: 34px; }
}

/* Desktop / tablet: keep phrase together */
.success-stories__title{
  font-weight: 900;
}

.success-stories__grad{
  display: inline-block;
  white-space: nowrap;  /* keeps "Amazing Women" together on larger screens */
  font-weight: 900;
}

/* Mobile: reduce weight + allow wrapping */
@media (max-width: 560px){
  .success-stories__title{
    font-weight: 800;    /* reduced from 900 */
  }

  .success-stories__grad{
    white-space: normal; /* now it can wrap */
    font-weight: 800;    /* reduced from 900 */
  }
}

/* Mobile behavior: controlled lines + lighter weight */
@media (max-width: 560px){
  .success-stories__subtitle{
    font-weight: 500; /* reduce weight */
    max-width: 100%;
  }

  .ss-sub{ display: block; }
  .ss-sub--1{ white-space: nowrap; }  /* keep first line one line */
  .ss-sub--3{ white-space: nowrap; }  /* keep "community support" together */
}

/* Prevent "and" from being orphaned on its own line */
.ss-keep{
  white-space: nowrap; /* keeps "training, and" together */
}

/* Ultra-small phones: allow wrapping if needed (optional safety) */
@media (max-width: 360px){
  .ss-sub--1{ white-space: normal; }
  .ss-sub--3{ white-space: normal; }
}

.testimonials{
  background: #ffffff;
  padding: 86px 0 96px;
}

.testimonials__inner{
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.testimonials__head{
  text-align: center;
  margin-bottom: 44px;
}

.testimonials__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.05;
}

.testimonials__subtitle{
  margin: 0;
  font-size: clamp(16px, 1.5vw, 22px);
  color: #475569;
  line-height: 1.6;
  font-weight: 600;
}

/* Carousel */
.tCarousel{
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 14px;
}

.tCarousel__viewport{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  outline: none;
}

.tCarousel__viewport:focus{
  box-shadow: 0 0 0 4px rgba(168, 85, 247, .25);
}

.tCarousel__track{
  display: flex;
  gap: 34px;
  padding: 6px 2px 10px;
}

/* Card */
.tCard{
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 68px) / 3); /* 3 cards visible */
  min-width: 280px;

  background: #fff;
  border-radius: 22px;
  padding: 34px 34px 30px;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.10),
    0 2px 6px rgba(15, 23, 42, 0.06);
}

.tCard__top{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.tCard__quoteMark{
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: rgba(168, 85, 247, .55);
}

.tCard__stars{
  display: flex;
  gap: 6px;
}

.tStar{
  color: #fbbf24; /* gold */
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.08));
}

.tCard__text{
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  font-weight: 600;
}

/* Footer / avatar */
.tCard__footer{
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
}

.tCard__avatar{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  background: #e2e8f0;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.10);
}

.tCard__avatar--bw{
  filter: grayscale(100%) contrast(1.05);
}

.tCard__meta{
  display: grid;
  gap: 2px;
}

.tCard__name{
  font-weight: 900;
  color: #0f172a;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.tCard__role{
  font-weight: 600;
  color: #475569;
  font-size: 16px;
}

.tCard__tag{
  margin-top: 4px;
  font-weight: 800;
  color: #a855f7;
  font-size: 14px;
}

/* Nav buttons */
.tCarousel__nav{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  font-size: 30px;
  line-height: 0;
  display: grid;
  place-items: center;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.tCarousel__nav:hover{ transform: translateY(-1px); box-shadow: 0 14px 22px rgba(15, 23, 42, 0.12); }
.tCarousel__nav:disabled{ opacity: .4; cursor: not-allowed; transform: none; }

/* Dots */
.tCarousel__dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.tCarousel__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 42, 0.18);
  cursor: pointer;
}
.tCarousel__dot.is-active{
  background: #a855f7;
}

/* Responsive: 2 cards */
@media (max-width: 980px){
  .tCarousel{ grid-template-columns: 44px 1fr 44px; }
  .tCard{ flex-basis: calc((100% - 34px) / 2); }
}

/* Mobile: 1 card */
@media (max-width: 640px){
  .tCarousel{ grid-template-columns: 40px 1fr 40px; gap: 10px; }
  .tCarousel__track{ gap: 18px; }
  .tCard{ flex-basis: 100%; }
}

/* REQUIRED for the testimonial slider to actually slide */
.tCarousel__viewport{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.tCarousel__track{
  display: flex;
  gap: 34px;
  padding: 6px 2px 10px;
}

.tCard{
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 68px) / 3); /* 3 visible desktop */
  min-width: 280px;
}

@media (max-width: 980px){
  .tCard{ flex-basis: calc((100% - 34px) / 2); } /* 2 visible */
}
@media (max-width: 640px){
  .tCard{ flex-basis: 100%; } /* 1 visible */
}

/* ===== Testimonials autoplay progress bar ===== */
.tCarousel__progress{
  width: min(520px, 92%);
  height: 6px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.tCarousel__progress span{
  display: block;
  height: 100%;
  width: 100%;
  transform: translateX(-100%);
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 40%, #ec4899 100%);
  border-radius: inherit;

  animation: tFill 4500ms linear forwards;
  animation-play-state: paused; /* JS starts/pauses it */
}

@keyframes tFill{
  from{ transform: translateX(-100%); }
  to{ transform: translateX(0%); }
}

.tCarousel__progress span{
  animation-play-state: paused;
}

@keyframes tFill{
  from{ transform: translateX(-100%); }
  to{ transform: translateX(0%); }
}

.video-testimonials{
  background: #ffffff;
  padding: 86px 0 96px;
}

.video-testimonials__inner{
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.video-testimonials__head{
  text-align: center;
  margin-bottom: 44px;
}

.video-testimonials__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.05;
}

.video-testimonials__subtitle{
  margin: 0;
  font-size: clamp(16px, 1.5vw, 22px);
  color: #475569;
  line-height: 1.6;
  font-weight: 600;
}

/* Carousel layout */
.vCarousel{
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 14px;
}

.vCarousel__viewport{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  outline: none;
}

.vCarousel__viewport:focus{
  box-shadow: 0 0 0 4px rgba(168, 85, 247, .25);
}

.vCarousel__track{
  display: flex;
  gap: 34px;
  padding: 6px 2px 10px;
}

/* Cards (2 visible on desktop like screenshot) */
.vCard{
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 34px) / 2);
  min-width: 300px;
}

.vCard__media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.10),
    0 2px 6px rgba(15, 23, 42, 0.06);
}

.vCard__media img{
  width: 100%;
  height: 380px;
  display: block;
  object-fit: cover;
}

/* Play button like screenshot */
.vCard__play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;

  background: rgba(255,255,255,.92);
  color: #a855f7;
  font-size: 26px;
  line-height: 0;

  display: grid;
  place-items: center;
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}

.vCard__play:hover{
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 36px rgba(0,0,0,.22);
}

.vCard__body{
  padding: 18px 2px 0;
}

.vCard__name{
  margin: 0 0 6px;
  font-weight: 900;
  color: #0f172a;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.vCard__role{
  margin: 0;
  font-weight: 800;
  color: #a855f7;
  font-size: 18px;
}

/* Nav buttons */
.vCarousel__nav{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  font-size: 30px;
  line-height: 0;
  display: grid;
  place-items: center;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.vCarousel__nav:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(15, 23, 42, 0.12);
}

.vCarousel__nav:disabled{
  opacity: .4;
  cursor: not-allowed;
  transform: none;
}

/* Dots */
.vCarousel__dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.vCarousel__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 42, 0.18);
  cursor: pointer;
}

.vCarousel__dot.is-active{
  background: #a855f7;
}

/* Responsive */
@media (max-width: 980px){
  .vCarousel{ grid-template-columns: 44px 1fr 44px; }
  .vCard{ flex-basis: 100%; }
  .vCard__media img{ height: 320px; }
}

/* Modal */
.vModal{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.vModal[hidden]{ display: none; }

.vModal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .62);
}

.vModal__dialog{
  position: relative;
  width: min(980px, 92vw);
  margin: 8vh auto 0;
  background: #0b1220;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.vModal__close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.vModal__frameWrap{
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
}

.vModal__frame{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.featured-quote{
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 45%, #ec4899 100%);
  padding: 120px 0 110px;
  color: #fff;
}

.featured-quote__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.featured-quote__mark{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 1;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.45);
  transform: translateY(-6px);
}

.featured-quote__figure{
  margin: 0;
}

.featured-quote__text{
  margin: 0 auto 26px;
  max-width: 46ch;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-size: clamp(26px, 3.2vw, 44px);

  color: rgba(255, 255, 255, 0.95);
}

.featured-quote__by{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.6vw, 24px);
  color: rgba(255, 255, 255, 0.92);
}

/* Responsive spacing */
@media (max-width: 640px){
  .featured-quote{
    padding: 90px 0 85px;
  }
  .featured-quote__text{
    max-width: 52ch;
  }
}

.featured-quote__mark{
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}

.featured-quote__svg{
  width: clamp(70px, 7vw, 110px);
  height: auto;
  color: rgba(255, 255, 255, 0.45); /* same soft icon look */
  filter: drop-shadow(0 6px 22px rgba(0,0,0,.12));
}

/* ===== Ready CTA (matches screenshot) ===== */
.cta-ready{
  background: #faf3f7;               /* soft pink tint */
  padding: 95px 0 105px;
  border-top: 3px solid #a855f7;     /* thin purple line at top */
}

.cta-ready__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cta-ready__title{
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
}

.cta-ready__subtitle{
  margin: 0 auto 38px;
  max-width: 60ch;
  font-weight: 600;
  color: #475569;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.65;
}

.cta-ready__actions{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Buttons */
.cta-ready__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 44px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  will-change: transform;
}

/* Gradient filled */
.cta-ready__btn--primary{
  color: #fff;
  border: 0;
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 40%, #ec4899 100%);
  box-shadow: 0 18px 40px rgba(236, 72, 153, .22);
}

.cta-ready__btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(236, 72, 153, .28);
}

/* Outlined */
.cta-ready__btn--outline{
  color: #7c3aed;
  background: rgba(255,255,255,.75);
  border: 3px solid #7c3aed;
  box-shadow: 0 12px 26px rgba(15,23,42,.10);
}

.cta-ready__btn--outline:hover{
  transform: translateY(-1px);
  background: #fff;
}

/* Responsive */
@media (max-width: 560px){
  .cta-ready{ padding: 75px 0 80px; }

  .cta-ready__btn{
    width: 100%;
    max-width: 340px;
    height: 58px;
    font-size: 18px;
    padding: 0 28px;
  }

  .cta-ready__actions{
    width: 100%;
  }
}

/* Keep the title on ONE line on mobile */
@media (max-width: 560px){
  .cta-ready__title{
    white-space: nowrap;
    font-size: clamp(20px, 5.6vw, 34px); /* shrinks to fit */
    letter-spacing: -0.02em;
  }
}

@media (max-width: 560px){
  /* extra breathing room on mobile (also respects iPhone notch safe-area) */
  .cta-ready__inner{
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }

  .cta-ready__title{
    white-space: nowrap;
    padding-inline: 6px;                 /* keeps "Story?" off the edge */
    font-size: clamp(18px, 5.2vw, 32px); /* slightly smaller so it fits */
    letter-spacing: -0.02em;
  }
}

/* Mobile: only "Story?" can wrap */
@media (max-width: 560px){
  .cta-ready__title{
    white-space: normal;         /* allow wrapping */
    padding-inline: 10px;        /* keep away from edges */
  }

  .cta-ready__titleMain{
    white-space: nowrap;         /* lock the main part to one line */
  }

  .cta-ready__titleTail{
    display: inline-block;       /* allows it to sit nicely on next line */
    margin-left: 8px;            /* spacing if it stays on same line */
  }
}

.hero-section {
  background: #efeaee;
  padding: 76px 24px 126px;
}

.hero-section__inner {
  max-width: 1680px;
  margin: 0 auto;
  text-align: center;
}

.hero-section__title {
  margin: 0;
  color: #07142d;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(42px, 4.8vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-section__gradient {
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #e9138f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-section__text {
  max-width: 1220px;
  margin: 38px auto 0;
  color: #4f5f74;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(19px, 1.8vw, 31px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.hero-section__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 58px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 0 46px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn--primary {
  min-width: 296px;
  color: #ffffff;
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #e9138f 100%);
  box-shadow: 0 10px 24px rgba(181, 38, 224, 0.16);
}

.hero-btn--secondary {
  min-width: 238px;
  color: #8f24ff;
  background: transparent;
  border: 3px solid #9229ff;
}

.hero-btn--secondary:hover {
  background: rgba(146, 41, 255, 0.04);
}

@media (max-width: 1200px) {
  .hero-section__text br {
    display: none;
  }

  .hero-section__text {
    max-width: 980px;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 56px 20px 90px;
  }

  .hero-section__title {
    font-size: 48px;
    line-height: 1.04;
  }

  .hero-section__text {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.6;
  }

  .hero-section__actions {
    margin-top: 42px;
    gap: 18px;
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    height: 78px;
    font-size: 18px;
    padding: 0 32px;
  }
}

.hero-section__tail {
  white-space: nowrap;
}

.hero-btn {
  height: 64px;
  padding: 0 24px;
  font-size: 16px;
}

.hero-btn--primary {
  min-width: 210px;
}

.hero-btn--secondary {
  min-width: 170px;
}

.hero-section__title {
  margin: 0;
  color: #07142d;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-section__text {
  max-width: 1220px;
  margin: 38px auto 0;
  color: #4f5f74;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.site-footer__brand {
  margin-bottom: 12px;
  color: #a855f7;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.site-footer__desc {
  margin: 0;
  max-width: 46ch;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.6;
}

.site-footer__title {
  margin: 6px 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.site-footer__links {
  gap: 10px;
}

.site-footer__links a {
  font-size: 16px;
  line-height: 1.4;
}

.site-footer__title {
  margin: 6px 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.site-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.social-btn {
  width: 42px;
  height: 42px;
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.site-footer__copyright {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  letter-spacing: -0.01em;
}

.balm-footer__logo {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.balm-footer__desc {
  margin: 0;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.balm-footer__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.balm-footer__links {
  gap: 10px;
}

.balm-footer__link {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.balm-footer__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.balm-footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.balm-footer__social-btn {
  width: 38px;
  height: 38px;
}

.balm-footer__social-btn svg {
  width: 16px;
  height: 16px;
}

.balm-footer__copy {
  font-size: 14px;
  font-weight: 500;
  padding-top: 6px;
}

.sponsor-partner__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f172a;
}

.partner-why {
  padding: 56px 20px;
}

.partner-why__inner {
  max-width: 1180px;
  gap: 48px;
}

.partner-why__title {
  margin: 0 0 22px 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
}

.partner-why__list {
  gap: 18px;
  margin: 0 0 28px 0;
}

.partner-why__item {
  grid-template-columns: 36px 1fr;
  gap: 14px;
}

.partner-why__num {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.partner-why__item-title {
  font-size: 16px;
  margin: 0 0 4px 0;
}

.partner-why__item-desc {
  font-size: 15px;
  line-height: 1.5;
}

.partner-why__cta {
  height: 52px;
  padding: 0 26px;
  font-size: 15px;
}

.partner-why__right {
  height: 420px;
  border-radius: 20px;
}

.hero-main__title {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 900;
  color: #0f172a;
}

.card {
  min-height: 210px;
  padding: 24px 28px 22px;
  border-radius: 22px;
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.icon svg {
  width: 42px;
  height: 42px;
}

.title {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
}

.desc {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
}

.learn {
  font-size: 15px;
  gap: 8px;
}

.learn svg {
  width: 16px;
  height: 16px;
}

.wrap {
  width: min(1180px, calc(100% - 56px));
  padding: 40px 0;
  gap: 40px;
}

.cta,
.cta-card {
  padding: 44px 18px 40px;
  border-radius: 22px;
}

.cta h2,
.cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.15;
}

.cta p,
.cta-card p {
  margin: 0 auto 22px;
  max-width: 760px;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.5;
}

.btn,
.cta-btn {
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
  border-radius: 999px;
}

.about-banner {
  padding: 64px 0 78px;
}

.about-banner__inner {
  max-width: 1000px;
  padding: 0 20px;
}

.about-banner__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.about-banner__subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.story-section {
  padding: 64px 0;
}

.story-container {
  max-width: 1100px;
  gap: 44px;
}

.story-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.05;
}

.story-paragraph {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 52ch;
}

.story-imageWrap {
  border-radius: 18px;
}

.story-image {
  aspect-ratio: 4 / 3;
}

.mv-section {
  padding: 64px 0 78px;
}

.mv-container {
  max-width: 1140px;
  padding: 0 20px;
}

.mv-grid {
  gap: 26px;
}

.mv-card {
  min-height: 300px;
  padding: 30px 30px 28px;
  border-radius: 18px;
}

.mv-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}

.mv-svg {
  width: 26px;
  height: 26px;
}

.mv-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.12;
}

.mv-text,
.mv-list {
  font-size: 17px;
  line-height: 1.6;
}

.mv-list li {
  gap: 8px;
}

.impact {
  padding: 64px 0 68px;
}

.impact__inner {
  max-width: 1100px;
  padding: 0 20px;
}

.impact__title {
  margin: 0 0 40px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.impact__grid {
  gap: 18px;
}

.impact__number {
  font-size: clamp(36px, 4.2vw, 62px);
  margin-bottom: 10px;
}

.impact__label {
  font-size: clamp(14px, 1.3vw, 20px);
}

@media (max-width: 980px){
  .impact {
    padding: 64px 0 68px;
  }

  .impact__title {
    margin-bottom: 32px;
  }

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

.community-cta__title {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.08;
}

.community-cta__subtitle {
  margin: 0 auto 18px;
  max-width: 40ch;
  font-size: 17px;
  line-height: 1.5;
}

.community-cta__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.08;
}

.community-cta__subtitle {
  margin: 0 auto 18px;
  max-width: 40ch;
  font-size: 19px;
  line-height: 1.5;
}

.success-stories {
  padding: 64px 0 78px;
}

.success-stories__inner {
  max-width: 1080px;
  padding: 0 20px;
}

.success-stories__title {
  margin: 0 0 14px;
  font-size: clamp(31px, 3.4vw, 55px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.success-stories__subtitle {
  margin: 0 auto 72px;
  max-width: 62ch;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.6;
  font-weight: 500;
}

.success-stories__stats {
  gap: 26px;
}

.success-stories__num {
  font-size: clamp(37px, 3.8vw, 59px);
  margin-bottom: 10px;
}

.success-stories__label {
  font-size: clamp(17px, 1.2vw, 21px);
}

.featured-quote__text {
  font-size: clamp(18px, 2vw, 30px);
}

.featured-quote__by {
  font-size: 14px;
}

.hero-main {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 0 120px;
  overflow: hidden;

  background:
    url("/assets/community-hero.jpg") center 28% / cover no-repeat;
}

/* dark overlay for readability */
.hero-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 20, 45, 0.58) 0%,
      rgba(7, 20, 45, 0.42) 38%,
      rgba(7, 20, 45, 0.62) 100%
    );
}

/* soft spotlight / luxury feel */
.hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 52%);
  pointer-events: none;
}

.hero-main__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 52px 44px;
  border-radius: 30px;
  background: rgba(9, 18, 36, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.hero-main__title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(42px, 5.5vw, 90px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.gradient-text {
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #ff4aa5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-main__subtitle {
  max-width: 900px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero-main__cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-main .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-main .btn:hover {
  transform: translateY(-2px);
}

.hero-main .btn--primary {
  color: #fff;
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #e9138f 100%);
  box-shadow: 0 14px 34px rgba(181, 38, 224, 0.34);
}

.hero-main .btn--outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-main .btn--outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* mobile */
@media (max-width: 768px) {
  .hero-main {
    min-height: auto;
    padding: 84px 0 88px;
    background-position: center center;
  }

  .hero-main__inner {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .hero-main__title {
    font-size: clamp(34px, 9vw, 56px);
    line-height: 1.02;
  }

  .hero-main__subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-main .btn {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    height: 52px;
    font-size: 15px;
  }
}

.services-grid-bg {
  position: relative;
  isolation: isolate;
  padding: 56px 32px;
  border-radius: 28px;
  overflow: hidden;

  background:
    linear-gradient(rgba(7, 20, 45, 0.55), rgba(7, 20, 45, 0.68)),
    url("/assets/community-hero.jpg") center center / cover no-repeat fixed;

  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

/* soft luxury overlay */
.services-grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}

/* keep cards above the background */
.services-grid-bg .card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

/* clearer text on cards */
.services-grid-bg .title {
  color: #0f172a;
}

.services-grid-bg .desc {
  color: #475569;
}

.services-grid-bg .learn {
  color: #7c3aed;
}

/* make section spacing feel premium */
.services-grid-bg.grid {
  gap: 28px;
}

/* mobile fallback */
@media (max-width: 768px) {
  .services-grid-bg {
    padding: 28px 18px;
    border-radius: 20px;
    background:
      linear-gradient(rgba(7, 20, 45, 0.58), rgba(7, 20, 45, 0.72)),
      url("/assets/community-hero.jpg") center center / cover no-repeat;
  }
}

/* =========================
   PREMIUM HOME PAGE ANIMATION
   Paste at the very bottom
========================= */

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Keyframes ---------- */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSoftZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 18px 34px rgba(124, 58, 237, 0.18);
  }
  50% {
    box-shadow: 0 22px 44px rgba(236, 72, 153, 0.24);
  }
}

@keyframes shineSweep {
  0% {
    transform: translateX(-160%) skewX(-20deg);
  }
  100% {
    transform: translateX(220%) skewX(-20deg);
  }
}

/* ---------- Hero entrance ---------- */
.hero-main {
  position: relative;
  overflow: hidden;
}

.hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: heroSoftZoom 1.4s ease-out both;
}

.hero-main__title {
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.1s forwards;
}

.hero-main__subtitle {
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.28s forwards;
}

.hero-main__cta {
  opacity: 0;
  animation: heroFadeUp 0.9s ease-out 0.45s forwards;
}

/* subtle hero button premium feel */
.hero-main .btn {
  position: relative;
  overflow: hidden;
}

.hero-main .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 28%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.15) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.hero-main .btn:hover::before {
  animation: shineSweep 0.9s ease;
}

.hero-main .btn--primary {
  animation: pulseGlow 3.2s ease-in-out infinite;
}

/* ---------- Scroll reveal ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* stagger support */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ---------- Premium hover polish ---------- */
.card,
.tCard,
.cta,
.cta-card,
.mv-card,
.teamCard,
.vCard {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.card:hover,
.tCard:hover,
.mv-card:hover,
.teamCard:hover,
.vCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.cta:hover,
.cta-card:hover {
  transform: translateY(-6px);
}

/* ---------- Gentle floating accents ---------- */
.community-cta__icon,
.mv-icon,
.icon {
  animation: floatGentle 4.6s ease-in-out infinite;
}

/* different timing so they don't all move together */
.mv-card:nth-child(2) .mv-icon,
.card:nth-child(2) .icon,
.card:nth-child(4) .icon {
  animation-duration: 5.2s;
}

.mv-card:nth-child(3) .mv-icon,
.card:nth-child(3) .icon,
.card:nth-child(5) .icon {
  animation-duration: 5.8s;
}

/* ---------- Nice section emphasis ---------- */
.success-stories__num,
.impact__number {
  transition: transform 0.25s ease, color 0.25s ease;
}

.success-stories__stat:hover .success-stories__num,
.impact__stat:hover .impact__number {
  transform: translateY(-3px) scale(1.03);
}

/* ---------- Mobile: tone motion down a little ---------- */
@media (max-width: 768px) {
  .card:hover,
  .tCard:hover,
  .mv-card:hover,
  .teamCard:hover,
  .vCard:hover,
  .cta:hover,
  .cta-card:hover {
    transform: translateY(-4px);
  }

  .community-cta__icon,
  .mv-icon,
  .icon {
    animation-duration: 6s;
  }
}

.ready-transform__card {
  max-width: 520px;
  padding: 22px 20px;
  border-radius: 20px;
}

.ready-transform__btn {
  height: 52px;
  padding: 0 22px;
  font-size: 15px;
  gap: 10px;
}

.ready-transform__btn-icon svg {
  width: 18px;
  height: 18px;
}

.site-header .nav-toggle {
  width: 38px;
  height: 38px;
  gap: 6px;
}

.site-header .nav-toggle span {
  width: 24px;
  height: 2px;
}

/* =========================
   VIDEO TESTIMONIAL AUTO SWAP
========================= */

.vCarousel {
  position: relative;
}

.vCarousel__viewport {
  overflow: hidden;
}

.vCarousel__track {
  display: flex;
  gap: 34px;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.vCard {
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease;
  opacity: 0.72;
  transform: scale(0.96);
  filter: saturate(0.92);
}

.vCard.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.vCard.is-next {
  opacity: 0.9;
  transform: scale(0.98);
}

.vCard__media {
  overflow: hidden;
  border-radius: 22px;
}

.vCard__media img {
  transition: transform 0.8s ease;
}

.vCard.is-active .vCard__media img {
  transform: scale(1.04);
}

.vCard__body {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.vCard.is-active .vCard__body {
  transform: translateY(-2px);
}

/* softer inactive cards */
.vCard:not(.is-active) .vCard__play {
  transform: scale(0.94);
  opacity: 0.92;
}

/* mobile */
@media (max-width: 980px) {
  .vCarousel__track {
    gap: 22px;
  }
}

/* =========================
   TESTIMONIAL AUTO SWAP
========================= */

.tCarousel {
  position: relative;
}

.tCarousel__viewport {
  overflow: hidden;
}

.tCarousel__track {
  display: flex;
  gap: 34px;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tCard {
  opacity: 0.7;
  transform: scale(0.96);
  filter: saturate(0.92);
  transition:
    transform 0.45s ease,
    opacity 0.45s ease,
    box-shadow 0.45s ease,
    filter 0.45s ease;
}

.tCard.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.14),
    0 4px 10px rgba(15, 23, 42, 0.08);
}

.tCard.is-next,
.tCard.is-third {
  opacity: 0.92;
  transform: scale(0.985);
}

.tCard__quoteMark,
.tCard__footer,
.tCard__text {
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.tCard.is-active .tCard__quoteMark {
  transform: translateY(-2px);
}

.tCard.is-active .tCard__text {
  transform: translateY(-2px);
}

.tCard.is-active .tCard__footer {
  transform: translateY(-1px);
}

/* nav polish */
.tCarousel__nav {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.tCarousel__nav:hover {
  transform: translateY(-1px);
}

/* dots */
.tCarousel__dot {
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.tCarousel__dot.is-active {
  transform: scale(1.15);
}

/* progress bar already in your HTML */
.tCarousel__progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: translateX(-100%);
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 40%, #ec4899 100%);
  border-radius: inherit;
  animation: tAutoFill 4500ms linear forwards;
  animation-play-state: paused;
}

@keyframes tAutoFill {
  from { transform: translateX(-100%); }
  to { transform: translateX(0%); }
}

@media (max-width: 980px) {
  .tCarousel__track {
    gap: 22px;
  }
}

.about-banner {
  position: relative;
  isolation: isolate;
  padding: 90px 0 110px;
  overflow: hidden;

  background:
    linear-gradient(rgba(7, 20, 45, 0.56), rgba(7, 20, 45, 0.62)),
    url("/assets/community-hero.jpg") center center / cover no-repeat;
}

.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 48%);
}

.about-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 28px;
  text-align: center;
  border-radius: 24px;
  background: rgba(9, 18, 36, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
}

.about-banner__title {
  margin: 0 0 16px;
  color: #ffffff;
}

.about-banner__grad {
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #ff4aa5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-banner__subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
}

@media (max-width: 768px) {
  .about-banner {
    padding: 70px 0 82px;
    background:
      linear-gradient(rgba(7, 20, 45, 0.62), rgba(7, 20, 45, 0.68)),
      url("/assets/community-hero.jpg") center center / cover no-repeat;
  }

  .about-banner__inner {
    padding: 26px 18px;
    border-radius: 18px;
  }
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 24px 110px;

  background:
    linear-gradient(rgba(7, 20, 45, 0.58), rgba(7, 20, 45, 0.66)),
    url("/assets/community-hero.jpg") center center / cover no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 48%);
}

.hero-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 30px;
  border-radius: 28px;
  background: rgba(9, 18, 36, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-section__title {
  margin: 0;
  color: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.hero-section__gradient {
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #ff4aa5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-section__tail {
  white-space: nowrap;
}

.hero-section__text {
  max-width: 980px;
  margin: 30px auto 0;
  color: rgba(255,255,255,0.92);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15px, 1.3vw, 22px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.hero-section__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
}

.hero-btn--primary {
  min-width: 210px;
  color: #ffffff;
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #e9138f 100%);
  box-shadow: 0 12px 28px rgba(181, 38, 224, 0.24);
}

.hero-btn--secondary {
  min-width: 170px;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.42);
}

.hero-btn--secondary:hover {
  background: rgba(255,255,255,0.14);
}

@media (max-width: 1200px) {
  .hero-section__text br {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 64px 20px 80px;
  }

  .hero-section__inner {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .hero-section__title {
    font-size: 48px;
    line-height: 1.04;
  }

  .hero-section__text {
    margin-top: 22px;
    font-size: 18px;
  }

  .hero-section__actions {
    margin-top: 30px;
    gap: 14px;
    flex-direction: column;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    min-width: 0;
    height: 50px;
    font-size: 15px;
    padding: 0 20px;
  }
}

.success-stories {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 0 110px;

  background:
    linear-gradient(rgba(7, 20, 45, 0.62), rgba(7, 20, 45, 0.68)),
    url("/assets/community-hero.jpg") center center / cover no-repeat;
}

.success-stories::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 48%);
}

.success-stories__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.success-stories__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(36px, 4.8vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0,0,0,0.24);
}

.success-stories__grad {
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #ff4aa5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.success-stories__subtitle {
  max-width: 980px;
  margin: 0 auto 78px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 4px 18px rgba(0,0,0,0.2);
}

.success-stories__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
}

.success-stories__stat {
  padding: 28px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.success-stories__num {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.success-stories__label {
  color: rgba(255,255,255,0.9);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
}

@media (max-width: 900px) {
  .success-stories {
    padding: 70px 0 84px;
  }

  .success-stories__subtitle {
    margin-bottom: 48px;
  }

  .success-stories__stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

:root {
  --ap-bg: #f7f3ff;
  --ap-surface: #ffffff;
  --ap-surface-soft: #fbf9ff;
  --ap-text: #171325;
  --ap-text-soft: #6a647a;
  --ap-line: rgba(85, 60, 140, 0.12);
  --ap-primary: #6f38ff;
  --ap-primary-dark: #5526d6;
  --ap-secondary: #ff4fa3;
  --ap-dark: #120d22;
  --ap-dark-soft: #1c1433;
  --ap-shadow: 0 20px 60px rgba(31, 17, 65, 0.12);
  --ap-radius-xl: 32px;
  --ap-radius-lg: 24px;
  --ap-radius-md: 18px;
  --ap-container: 1200px;
}

.about-premium {
  background:
    radial-gradient(circle at top left, rgba(111, 56, 255, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.10), transparent 24%),
    var(--ap-bg);
  color: var(--ap-text);
}

.ap-container {
  width: min(calc(100% - 32px), var(--ap-container));
  margin-inline: auto;
}

.ap-eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ap-primary);
}

.ap-section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.ap-btn:hover {
  transform: translateY(-2px);
}

.ap-btn--primary {
  background: linear-gradient(135deg, var(--ap-primary), var(--ap-secondary));
  color: #fff;
  box-shadow: 0 16px 40px rgba(111, 56, 255, 0.24);
}

.ap-btn--primary:hover {
  box-shadow: 0 24px 48px rgba(111, 56, 255, 0.28);
}

.ap-btn--secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ap-text);
  border: 1px solid var(--ap-line);
}

.ap-btn--secondary:hover {
  background: #fff;
}

.ap-hero {
  padding: 92px 0 70px;
}

.ap-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.ap-hero__title {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.ap-hero__text {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ap-text-soft);
}

.ap-hero__actions,
.ap-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ap-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.ap-hero__chips li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  font-weight: 600;
}

.ap-panel {
  height: 100%;
  padding: 28px;
  border-radius: var(--ap-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--ap-shadow);
  backdrop-filter: blur(10px);
}

.ap-panel__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--ap-line);
}

.ap-panel__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.ap-panel__number {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.14), rgba(255, 79, 163, 0.14));
  color: var(--ap-primary);
  font-weight: 800;
}

.ap-panel__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.ap-panel__item p {
  margin: 0;
  color: var(--ap-text-soft);
  line-height: 1.6;
}

.ap-story,
.ap-pillars,
.ap-difference,
.ap-leadership {
  padding: 88px 0;
}

.ap-story__grid,
.ap-difference__grid,
.ap-leadership__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.ap-story__media img,
.ap-leadership__image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--ap-radius-xl);
  box-shadow: var(--ap-shadow);
}

.ap-story__content p:not(.ap-eyebrow),
.ap-difference__copy p:not(.ap-eyebrow),
.ap-leadership__card p:not(.ap-eyebrow) {
  margin: 18px 0 0;
  color: var(--ap-text-soft);
  line-height: 1.85;
  font-size: 1.03rem;
}

.ap-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.ap-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ap-card,
.ap-mini-card,
.ap-leadership__card {
  padding: 28px;
  border-radius: var(--ap-radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 40px rgba(33, 20, 68, 0.08);
}

.ap-card h3,
.ap-mini-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.ap-card p,
.ap-mini-card p {
  margin: 0;
  color: var(--ap-text-soft);
  line-height: 1.75;
}

.ap-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.10), rgba(255, 79, 163, 0.12));
  color: var(--ap-primary);
}

.ap-icon svg {
  width: 28px;
  height: 28px;
}

.ap-values-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ap-values-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--ap-text);
}

.ap-values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ap-primary), var(--ap-secondary));
  transform: translateY(-50%);
}

.ap-impact {
  padding: 88px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 163, 0.10), transparent 18%),
    linear-gradient(180deg, var(--ap-dark), var(--ap-dark-soft));
  color: #fff;
}

.ap-impact__intro {
  max-width: 740px;
  margin-bottom: 30px;
}

.ap-impact .ap-eyebrow {
  color: rgba(255,255,255,0.74);
}

.ap-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ap-stat {
  padding: 28px 24px;
  border-radius: var(--ap-radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.ap-stat__number {
  display: block;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
}

.ap-stat__label {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.74);
  font-weight: 600;
  line-height: 1.5;
}

.ap-difference__grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.ap-difference__cards {
  display: grid;
  gap: 18px;
}

.ap-mini-card h3 {
  font-size: 1.2rem;
}

.ap-quote {
  margin: 24px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--ap-secondary);
  background: rgba(255, 79, 163, 0.06);
  border-radius: 0 18px 18px 0;
  color: var(--ap-text);
  line-height: 1.8;
  font-size: 1.04rem;
}

.ap-cta {
  padding: 0 0 96px;
}

.ap-cta__card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--ap-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(111, 56, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #1a1330, #281b49);
  color: #fff;
  box-shadow: var(--ap-shadow);
}

.ap-cta__card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ap-cta__card p:last-child {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.ap-cta__card .ap-eyebrow {
  color: rgba(255,255,255,0.74);
}

.ap-cta__card .ap-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

.ap-cta__card .ap-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
}

@media (max-width: 1100px) {
  .ap-hero__grid,
  .ap-story__grid,
  .ap-difference__grid,
  .ap-leadership__grid,
  .ap-cta__card {
    grid-template-columns: 1fr;
  }

  .ap-pillars__grid,
  .ap-impact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ap-hero,
  .ap-story,
  .ap-pillars,
  .ap-impact,
  .ap-difference,
  .ap-leadership {
    padding: 72px 0;
  }

  .ap-hero__title {
    max-width: 100%;
  }

  .ap-pillars__grid,
  .ap-impact__grid {
    grid-template-columns: 1fr;
  }

  .ap-panel,
  .ap-card,
  .ap-mini-card,
  .ap-leadership__card,
  .ap-cta__card,
  .ap-stat {
    padding: 22px;
  }

  .ap-story__media img,
  .ap-leadership__image img {
    min-height: 340px;
  }
}

.ap-team {
  padding: 88px 0;
  background:
    radial-gradient(circle at top left, rgba(111, 56, 255, 0.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 79, 163, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.12));
}

.ap-team__head {
  max-width: 760px;
  margin-bottom: 32px;
}

.ap-team__intro {
  margin: 18px 0 0;
  color: var(--ap-text-soft);
  line-height: 1.8;
  font-size: 1.04rem;
}

.ap-teamCarousel {
  position: relative;
  padding: 26px;
  border-radius: var(--ap-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.72));
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: var(--ap-shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.ap-teamCarousel__topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.ap-teamCarousel__meta-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  color: var(--ap-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ap-teamCarousel__meta-text {
  margin: 12px 0 0;
  max-width: 600px;
  color: var(--ap-text-soft);
  line-height: 1.7;
}

.ap-teamCarousel__controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.ap-teamCarousel__nav {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(111, 56, 255, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--ap-text);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 10px 24px rgba(27, 16, 59, 0.08);
}

.ap-teamCarousel__nav:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--ap-primary), var(--ap-secondary));
  color: #fff;
  border-color: transparent;
}

.ap-teamCarousel__nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ap-teamCarousel__nav span {
  font-size: 1.7rem;
  line-height: 1;
}

.ap-teamCarousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  outline: none;
  scroll-snap-type: x mandatory;
  border-radius: 24px;
}

.ap-teamCarousel__viewport::-webkit-scrollbar {
  display: none;
}

.ap-teamCarousel__track {
  display: flex;
  gap: 24px;
}

.ap-teamCard {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fcfaff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 38px rgba(30, 18, 63, 0.08);
  scroll-snap-align: start;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ap-teamCard:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 56, 255, 0.22);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.13);
}

.ap-teamCard__media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #eadfff;
}

.ap-teamCard__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(16, 10, 31, 0.20));
  pointer-events: none;
}

.ap-teamCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.ap-teamCard:hover .ap-teamCard__media img {
  transform: scale(1.04);
}

.ap-teamCard__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ap-primary);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ap-teamCard__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  flex: 1;
}

.ap-teamCard__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.ap-teamCard__name {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.ap-teamCard__role {
  margin: 6px 0 0;
  color: var(--ap-secondary);
  font-weight: 700;
  line-height: 1.5;
}

.ap-teamCard__bio {
  margin: 0;
  color: var(--ap-text-soft);
  line-height: 1.75;
  flex: 1;
}

.ap-teamCard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.ap-teamCard__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  color: var(--ap-primary);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.ap-teamCard__social:hover {
  background: linear-gradient(135deg, var(--ap-primary), var(--ap-secondary));
  color: #fff;
  transform: translateY(-2px);
}

.ap-teamCard__socialIcon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
}

.ap-teamCard__socialIcon svg {
  width: 18px;
  height: 18px;
}

.ap-teamCarousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ap-teamCarousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.18);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.ap-teamCarousel__dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--ap-primary), var(--ap-secondary));
}

.ap-teamCarousel__dot:hover {
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .ap-teamCard {
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 760px) {
  .ap-team {
    padding: 72px 0;
  }

  .ap-teamCarousel {
    padding: 20px;
  }

  .ap-teamCarousel__topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .ap-teamCarousel__controls {
    justify-content: flex-start;
  }

  .ap-teamCard {
    flex-basis: 100%;
  }

  .ap-teamCard__body {
    padding: 20px;
  }
}

:root {
  --tp-bg: #f7f3ff;
  --tp-surface: #ffffff;
  --tp-surface-soft: #fbf9ff;
  --tp-text: #171325;
  --tp-text-soft: #6a647a;
  --tp-line: rgba(85, 60, 140, 0.12);
  --tp-primary: #6f38ff;
  --tp-primary-dark: #5526d6;
  --tp-secondary: #ff4fa3;
  --tp-dark: #120d22;
  --tp-dark-soft: #1c1433;
  --tp-shadow: 0 20px 60px rgba(31, 17, 65, 0.12);
  --tp-radius-xl: 32px;
  --tp-radius-lg: 24px;
  --tp-radius-md: 18px;
  --tp-container: 1200px;
}

.tp-page {
  background:
    radial-gradient(circle at top left, rgba(111, 56, 255, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.10), transparent 24%),
    var(--tp-bg);
  color: var(--tp-text);
}

.tp-container {
  width: min(calc(100% - 32px), var(--tp-container));
  margin-inline: auto;
}

.tp-eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-primary);
}

.tp-section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.tp-section-copy {
  margin: 18px 0 0;
  color: var(--tp-text-soft);
  line-height: 1.8;
  font-size: 1.03rem;
  max-width: 720px;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.tp-btn:hover {
  transform: translateY(-2px);
}

.tp-btn--primary {
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
  color: #fff;
  box-shadow: 0 16px 40px rgba(111, 56, 255, 0.24);
}

.tp-btn--primary:hover {
  box-shadow: 0 24px 48px rgba(111, 56, 255, 0.28);
}

.tp-btn--secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--tp-text);
  border: 1px solid var(--tp-line);
}

.tp-btn--secondary:hover {
  background: #fff;
}

.tp-hero {
  padding: 92px 0 72px;
}

.tp-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.tp-hero__title {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.tp-hero__text {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--tp-text-soft);
}

.tp-hero__actions,
.tp-featured__actions,
.tp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.tp-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.tp-hero__chips li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  font-weight: 600;
}

.tp-proofCard {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: var(--tp-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--tp-shadow);
  backdrop-filter: blur(10px);
}

.tp-proofCard__item {
  padding: 18px 0;
  border-top: 1px solid var(--tp-line);
}

.tp-proofCard__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.tp-proofCard__item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--tp-primary);
}

.tp-proofCard__item span {
  display: block;
  margin-top: 10px;
  color: var(--tp-text-soft);
  line-height: 1.6;
  font-weight: 600;
}

.tp-featured,
.tp-stories,
.tp-video,
.tp-quoteBand {
  padding: 88px 0;
}

.tp-featured__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.tp-featured__copy p:not(.tp-eyebrow) {
  margin: 18px 0 0;
  color: var(--tp-text-soft);
  line-height: 1.85;
  font-size: 1.03rem;
}

.tp-featured__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.tp-featured__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--tp-text);
}

.tp-featured__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
  transform: translateY(-50%);
}

.tp-featuredCard {
  position: relative;
  padding: 30px;
  border-radius: var(--tp-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbf8ff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: var(--tp-shadow);
}

.tp-featuredCard__quoteMark {
  font-size: 5rem;
  line-height: 1;
  color: rgba(111, 56, 255, 0.14);
  font-weight: 800;
}

.tp-featuredCard__quote {
  margin: -10px 0 0;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--tp-text);
  letter-spacing: -0.01em;
}

.tp-featuredCard__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.tp-featuredCard__author strong,
.tp-card__meta strong,
.tp-videoCard__body strong {
  display: block;
  font-size: 1rem;
}

.tp-featuredCard__author span,
.tp-card__meta span,
.tp-videoCard__body span {
  display: block;
  margin-top: 4px;
  color: var(--tp-text-soft);
  line-height: 1.5;
}

.tp-featuredCard__results {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tp-resultPill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  color: var(--tp-primary);
  font-weight: 700;
  font-size: 0.92rem;
}

.tp-avatar {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 32px rgba(111, 56, 255, 0.22);
}

.tp-avatar--sm {
  width: 48px;
  height: 48px;
  font-size: 0.92rem;
}

.tp-stories__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.tp-carousel__controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.tp-carousel__nav {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(111, 56, 255, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--tp-text);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 10px 24px rgba(27, 16, 59, 0.08);
}

.tp-carousel__nav:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
  color: #fff;
  border-color: transparent;
}

.tp-carousel__nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.tp-carousel__nav span {
  font-size: 1.7rem;
  line-height: 1;
}

.tp-carousel__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  outline: none;
  scroll-snap-type: x mandatory;
  border-radius: 24px;
}

.tp-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.tp-carousel__track {
  display: flex;
  gap: 24px;
}

.tp-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fcfaff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 38px rgba(30, 18, 63, 0.08);
  scroll-snap-align: start;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 56, 255, 0.22);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.13);
}

.tp-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.tp-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  color: var(--tp-primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.tp-card__stars {
  color: #ffb938;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  white-space: nowrap;
}

.tp-card__text {
  margin: 0;
  color: var(--tp-text);
  line-height: 1.85;
  flex: 1;
}

.tp-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.tp-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tp-carousel__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.18);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.tp-carousel__dot.is-active {
  width: 34px;
  background: linear-gradient(135deg, var(--tp-primary), var(--tp-secondary));
}

.tp-video__head {
  max-width: 760px;
  margin-bottom: 30px;
}

.tp-video__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tp-videoCard {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fcfaff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 38px rgba(30, 18, 63, 0.08);
}

.tp-videoCard__poster {
  position: relative;
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
  cursor: pointer;
  text-align: left;
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(111, 56, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #1d1436, #311f59);
  color: #fff;
  overflow: hidden;
}

.tp-videoCard__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00) 28%, rgba(0,0,0,0.20) 100%);
  pointer-events: none;
}

.tp-videoCard__pill,
.tp-videoCard__overlayTitle,
.tp-videoCard__play {
  position: absolute;
  z-index: 1;
}

.tp-videoCard__pill {
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tp-videoCard__play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-size: 2rem;
  transition: transform 0.22s ease, background 0.22s ease;
}

.tp-videoCard__poster:hover .tp-videoCard__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255, 255, 255, 0.22);
}

.tp-videoCard__overlayTitle {
  left: 20px;
  right: 20px;
  bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tp-videoCard__body {
  padding: 20px 22px 22px;
}

.tp-videoModal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.tp-videoModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 10, 24, 0.72);
  backdrop-filter: blur(8px);
}

.tp-videoModal__dialog {
  position: relative;
  width: min(calc(100% - 24px), 960px);
  margin: 5vh auto;
  z-index: 1;
}

.tp-videoModal__close {
  position: absolute;
  top: -12px;
  right: -4px;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--tp-text);
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(20, 12, 43, 0.18);
}

.tp-videoModal__frameWrap {
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 24px 60px rgba(20, 12, 43, 0.26);
  aspect-ratio: 16 / 9;
}

.tp-videoModal__frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.tp-quoteBand__card {
  position: relative;
  padding: 34px;
  border-radius: var(--tp-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(111, 56, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #1a1330, #281b49);
  color: #fff;
  box-shadow: var(--tp-shadow);
}

.tp-quoteBand__mark {
  font-size: 5rem;
  line-height: 1;
  color: rgba(255,255,255,0.16);
}

.tp-quoteBand__text {
  margin: -8px 0 0;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.6;
  max-width: 18ch;
  letter-spacing: -0.02em;
}

.tp-quoteBand__by {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

.tp-cta {
  padding: 0 0 96px;
}

.tp-cta__card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--tp-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: var(--tp-shadow);
}

.tp-cta__card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.tp-cta__card p:last-child {
  margin: 16px 0 0;
  color: var(--tp-text-soft);
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .tp-hero__grid,
  .tp-featured__grid,
  .tp-cta__card {
    grid-template-columns: 1fr;
  }

  .tp-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .tp-video__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tp-hero,
  .tp-featured,
  .tp-stories,
  .tp-video,
  .tp-quoteBand {
    padding: 72px 0;
  }

  .tp-hero__title {
    max-width: 100%;
  }

  .tp-stories__head {
    flex-direction: column;
    align-items: stretch;
  }

  .tp-carousel__controls {
    justify-content: flex-start;
  }

  .tp-card {
    flex-basis: 100%;
  }

  .tp-video__grid {
    grid-template-columns: 1fr;
  }

  .tp-videoCard__poster {
    min-height: 280px;
  }

  .tp-proofCard,
  .tp-featuredCard,
  .tp-card,
  .tp-quoteBand__card,
  .tp-cta__card {
    padding: 22px;
  }
}

:root {
  --ppg-bg: #f7f3ff;
  --ppg-surface: #ffffff;
  --ppg-surface-soft: #fbf9ff;
  --ppg-text: #171325;
  --ppg-text-soft: #6a647a;
  --ppg-line: rgba(85, 60, 140, 0.12);
  --ppg-primary: #6f38ff;
  --ppg-primary-dark: #5526d6;
  --ppg-secondary: #ff4fa3;
  --ppg-dark: #120d22;
  --ppg-dark-soft: #1c1433;
  --ppg-shadow: 0 20px 60px rgba(31, 17, 65, 0.12);
  --ppg-radius-xl: 32px;
  --ppg-radius-lg: 24px;
  --ppg-radius-md: 18px;
  --ppg-container: 1200px;
}

.ppg-page {
  background:
    radial-gradient(circle at top left, rgba(111, 56, 255, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.10), transparent 24%),
    var(--ppg-bg);
  color: var(--ppg-text);
}

.ppg-container {
  width: min(calc(100% - 32px), var(--ppg-container));
  margin-inline: auto;
}

.ppg-eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ppg-primary);
}

.ppg-section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.ppg-section-copy {
  margin: 18px 0 0;
  color: var(--ppg-text-soft);
  line-height: 1.8;
  font-size: 1.03rem;
  max-width: 740px;
}

.ppg-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.ppg-heading--light .ppg-eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.ppg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.ppg-btn:hover {
  transform: translateY(-2px);
}

.ppg-btn--primary {
  background: linear-gradient(135deg, var(--ppg-primary), var(--ppg-secondary));
  color: #fff;
  box-shadow: 0 16px 40px rgba(111, 56, 255, 0.24);
}

.ppg-btn--primary:hover {
  box-shadow: 0 24px 48px rgba(111, 56, 255, 0.28);
}

.ppg-btn--secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ppg-text);
  border: 1px solid var(--ppg-line);
}

.ppg-btn--secondary:hover {
  background: #fff;
}

.ppg-hero {
  padding: 92px 0 72px;
}

.ppg-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.ppg-hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.ppg-hero__text {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ppg-text-soft);
}

.ppg-hero__actions,
.ppg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ppg-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.ppg-hero__chips li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  font-weight: 600;
}

.ppg-panel {
  height: 100%;
  padding: 28px;
  border-radius: var(--ppg-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--ppg-shadow);
  backdrop-filter: blur(10px);
}

.ppg-panel__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--ppg-line);
}

.ppg-panel__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.ppg-panel__number {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.14), rgba(255, 79, 163, 0.14));
  color: var(--ppg-primary);
  font-weight: 800;
}

.ppg-panel__item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.ppg-panel__item p {
  margin: 0;
  color: var(--ppg-text-soft);
  line-height: 1.6;
}

.ppg-value,
.ppg-packages,
.ppg-activation,
.ppg-faq {
  padding: 88px 0;
}

.ppg-value__grid,
.ppg-activation__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ppg-card,
.ppg-miniCard {
  padding: 28px;
  border-radius: var(--ppg-radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 40px rgba(33, 20, 68, 0.08);
}

.ppg-card h3,
.ppg-miniCard h3,
.ppg-stepCard h3 {
  margin: 0 0 14px;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}

.ppg-card p,
.ppg-miniCard p,
.ppg-stepCard p {
  margin: 0;
  color: var(--ppg-text-soft);
  line-height: 1.75;
}

.ppg-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.10), rgba(255, 79, 163, 0.12));
  color: var(--ppg-primary);
}

.ppg-icon svg {
  width: 28px;
  height: 28px;
}

.ppg-quote {
  margin: 34px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--ppg-secondary);
  background: rgba(255, 79, 163, 0.06);
  border-radius: 0 20px 20px 0;
  line-height: 1.8;
  font-size: 1.08rem;
  color: var(--ppg-text);
}

.ppg-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ppg-packageCard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--ppg-radius-xl);
  background: linear-gradient(180deg, #ffffff, #fcfaff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 40px rgba(33, 20, 68, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ppg-packageCard:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 56, 255, 0.22);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.13);
}

.ppg-packageCard--featured {
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff, #faf5ff);
  border-color: rgba(111, 56, 255, 0.18);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.12);
}

.ppg-packageCard__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ppg-primary), var(--ppg-secondary));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ppg-packageCard__top {
  margin-bottom: 18px;
}

.ppg-packageCard__tier {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ppg-packageCard__tier--bronze {
  background: rgba(177, 116, 72, 0.12);
  color: #9c5c33;
}

.ppg-packageCard__tier--silver {
  background: rgba(111, 56, 255, 0.10);
  color: var(--ppg-primary);
}

.ppg-packageCard__tier--gold {
  background: rgba(255, 194, 73, 0.14);
  color: #a06a00;
}

.ppg-packageCard__desc {
  margin: 16px 0 0;
  color: var(--ppg-text-soft);
  line-height: 1.75;
}

.ppg-packageCard__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.ppg-packageCard__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  line-height: 1.7;
  color: var(--ppg-text);
  font-weight: 600;
}

.ppg-packageCard__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ppg-primary), var(--ppg-secondary));
  transform: translateY(-50%);
}

.ppg-packageCard__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--ppg-line);
}

.ppg-packageCard__bestfor {
  color: var(--ppg-text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ppg-inlineLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ppg-primary);
  text-decoration: none;
  font-weight: 800;
}

.ppg-inlineLink::after {
  content: "→";
  transition: transform 0.2s ease;
}

.ppg-inlineLink:hover::after {
  transform: translateX(4px);
}

.ppg-process {
  padding: 88px 0;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 163, 0.10), transparent 18%),
    linear-gradient(180deg, var(--ppg-dark), var(--ppg-dark-soft));
  color: #fff;
}

.ppg-process .ppg-section-title {
  color: #fff;
}

.ppg-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ppg-stepCard {
  padding: 24px;
  border-radius: var(--ppg-radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.ppg-stepCard p {
  color: rgba(255,255,255,0.76);
}

.ppg-stepCard__num {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.28), rgba(255, 79, 163, 0.22));
  color: #fff;
  font-weight: 800;
}

.ppg-faqList {
  display: grid;
  gap: 16px;
}

.ppg-faqItem {
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 14px 34px rgba(33, 20, 68, 0.06);
  overflow: hidden;
}

.ppg-faqItem__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: var(--ppg-text);
  font-weight: 700;
  cursor: pointer;
}

.ppg-faqItem__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ppg-primary);
  transition: transform 0.22s ease;
}

.ppg-faqItem.is-open .ppg-faqItem__icon {
  transform: rotate(45deg);
}

.ppg-faqItem__panel {
  padding: 0 24px 22px;
}

.ppg-faqItem__panel p {
  margin: 0;
  color: var(--ppg-text-soft);
  line-height: 1.8;
}

.ppg-cta {
  padding: 0 0 96px;
}

.ppg-cta__card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--ppg-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(111, 56, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #1a1330, #281b49);
  color: #fff;
  box-shadow: var(--ppg-shadow);
}

.ppg-cta__card .ppg-eyebrow {
  color: rgba(255,255,255,0.74);
}

.ppg-cta__card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ppg-cta__card p:last-child {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.ppg-cta__card .ppg-btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

.ppg-cta__card .ppg-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
}

@media (max-width: 1100px) {
  .ppg-hero__grid,
  .ppg-cta__card {
    grid-template-columns: 1fr;
  }

  .ppg-value__grid,
  .ppg-packages__grid,
  .ppg-activation__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ppg-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ppg-hero,
  .ppg-value,
  .ppg-packages,
  .ppg-activation,
  .ppg-process,
  .ppg-faq {
    padding: 72px 0;
  }

  .ppg-hero__title {
    max-width: 100%;
  }

  .ppg-value__grid,
  .ppg-packages__grid,
  .ppg-activation__grid,
  .ppg-process__grid {
    grid-template-columns: 1fr;
  }

  .ppg-panel,
  .ppg-card,
  .ppg-miniCard,
  .ppg-packageCard,
  .ppg-stepCard,
  .ppg-cta__card {
    padding: 22px;
  }

  .ppg-faqItem__btn {
    padding: 20px;
  }

  .ppg-faqItem__panel {
    padding: 0 20px 20px;
  }
}

.ppg-activation {
  padding: 88px 0;
}

.ppg-activation__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.ppg-miniCard {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px;
  border-radius: var(--ppg-radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 249, 255, 0.92));
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 40px rgba(33, 20, 68, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ppg-miniCard:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 56, 255, 0.20);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.12);
}

.ppg-miniCard h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ppg-text);
}

.ppg-miniCard p {
  margin: 0;
  color: var(--ppg-text-soft);
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 760px) {
  .ppg-activation {
    padding: 72px 0;
  }

  .ppg-activation__grid {
    grid-template-columns: 1fr;
  }

  .ppg-miniCard {
    padding: 22px;
  }
}

.site-footer-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(111, 56, 255, 0.14), transparent 22%),
    radial-gradient(circle at bottom right, rgba(255, 79, 163, 0.12), transparent 22%),
    linear-gradient(180deg, #0d1222 0%, #11182d 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 72px 0 28px;
}

.site-footer-premium__container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-footer-premium__top {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.site-footer-premium__brandBlock {
  max-width: 420px;
}

.site-footer-premium__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.site-footer-premium__logo {
  height: 50px;
  width: auto;
  display: block;
}

.site-footer-premium__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
  max-width: 40ch;
}

.site-footer-premium__ctaWrap {
  margin-top: 26px;
}

.site-footer-premium__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f38ff 0%, #ff4fa3 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(111, 56, 255, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.site-footer-premium__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(111, 56, 255, 0.28);
}

.site-footer-premium__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.site-footer-premium__title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer-premium__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.site-footer-premium__links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-premium__links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.site-footer-premium__contactText {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
  max-width: 28ch;
}

.site-footer-premium__social {
  display: grid;
  gap: 10px;
}

.site-footer-premium__socialBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.site-footer-premium__socialBtn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(111, 56, 255, 0.34);
}

.site-footer-premium__socialBtn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.site-footer-premium__socialBtn span {
  font-size: 14px;
  font-weight: 600;
}

.site-footer-premium__divider {
  height: 1px;
  margin: 34px 0 20px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.14) 20%,
    rgba(255,255,255,0.14) 80%,
    rgba(255,255,255,0) 100%
  );
}

.site-footer-premium__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-premium__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.site-footer-premium__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-premium__legal a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-premium__legal a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .site-footer-premium__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer-premium__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer-premium {
    padding: 56px 0 24px;
  }

  .site-footer-premium__grid {
    grid-template-columns: 1fr;
  }

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

.balm-footer-premium {
  position: relative;
  overflow: hidden;
  padding: 78px 0 28px;
  background:
    linear-gradient(180deg, #0d1120 0%, #12182c 100%);
  color: rgba(255, 255, 255, 0.82);
}

.balm-footer-premium__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
}

.balm-footer-premium__glow--one {
  top: -60px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: #6f38ff;
}

.balm-footer-premium__glow--two {
  right: -40px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: #ff4fa3;
}

.balm-footer-premium__container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.balm-footer-premium__top {
  display: grid;
  grid-template-columns: 1.02fr 1.18fr;
  gap: 52px;
  align-items: start;
}

.balm-footer-premium__brandBlock {
  max-width: 430px;
}

.balm-footer-premium__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.balm-footer-premium__logo {
  height: 50px;
  width: auto;
  display: block;
}

.balm-footer-premium__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
  max-width: 40ch;
}

.balm-footer-premium__ctaWrap {
  margin-top: 26px;
}

.balm-footer-premium__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f38ff 0%, #ff4fa3 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(111, 56, 255, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.balm-footer-premium__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(111, 56, 255, 0.32);
}

.balm-footer-premium__linksWrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.balm-footer-premium__title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.balm-footer-premium__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.balm-footer-premium__links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.balm-footer-premium__links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.balm-footer-premium__connectText {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
  max-width: 28ch;
}

.balm-footer-premium__social {
  display: grid;
  gap: 10px;
}

.balm-footer-premium__socialBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.balm-footer-premium__socialBtn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(111, 56, 255, 0.34);
}

.balm-footer-premium__socialBtn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.balm-footer-premium__socialBtn span {
  font-size: 14px;
  font-weight: 600;
}

.balm-footer-premium__divider {
  height: 1px;
  margin: 38px 0 20px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.14) 20%,
    rgba(255,255,255,0.14) 80%,
    rgba(255,255,255,0) 100%
  );
}

.balm-footer-premium__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.balm-footer-premium__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.balm-footer-premium__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.balm-footer-premium__legal a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.balm-footer-premium__legal a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .balm-footer-premium__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .balm-footer-premium__linksWrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .balm-footer-premium {
    padding: 58px 0 24px;
  }

  .balm-footer-premium__linksWrap {
    grid-template-columns: 1fr;
  }

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

.balm-footer-premium {
  position: relative;
  overflow: hidden;
  padding: 78px 0 28px;
  background:
    linear-gradient(180deg, #0d1120 0%, #12182c 100%);
  color: rgba(255, 255, 255, 0.82);
}

.balm-footer-premium__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
}

.balm-footer-premium__glow--one {
  top: -60px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: #6f38ff;
}

.balm-footer-premium__glow--two {
  right: -40px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: #ff4fa3;
}

.balm-footer-premium__container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.balm-footer-premium__top {
  display: grid;
  grid-template-columns: 1.02fr 1.18fr;
  gap: 52px;
  align-items: start;
}

.balm-footer-premium__brandBlock {
  max-width: 430px;
}

.balm-footer-premium__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.balm-footer-premium__logo {
  height: 50px;
  width: auto;
  display: block;
}

.balm-footer-premium__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
  max-width: 40ch;
}

.balm-footer-premium__ctaWrap {
  margin-top: 26px;
}

.balm-footer-premium__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6f38ff 0%, #ff4fa3 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(111, 56, 255, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.balm-footer-premium__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(111, 56, 255, 0.32);
}

.balm-footer-premium__linksWrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.balm-footer-premium__title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.balm-footer-premium__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.balm-footer-premium__links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.balm-footer-premium__links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.balm-footer-premium__connectText {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.7;
  max-width: 28ch;
}

.balm-footer-premium__social {
  display: grid;
  gap: 10px;
}

.balm-footer-premium__socialBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.balm-footer-premium__socialBtn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(111, 56, 255, 0.34);
}

.balm-footer-premium__socialBtn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.balm-footer-premium__socialBtn span {
  font-size: 14px;
  font-weight: 600;
}

.balm-footer-premium__divider {
  height: 1px;
  margin: 38px 0 20px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.14) 20%,
    rgba(255,255,255,0.14) 80%,
    rgba(255,255,255,0) 100%
  );
}

.balm-footer-premium__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.balm-footer-premium__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.balm-footer-premium__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.balm-footer-premium__legal a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.balm-footer-premium__legal a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .balm-footer-premium__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .balm-footer-premium__linksWrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .balm-footer-premium {
    padding: 58px 0 24px;
  }

  .balm-footer-premium__linksWrap {
    grid-template-columns: 1fr;
  }

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

:root{
  --sp-bg: #f7f3ff;
  --sp-surface: #ffffff;
  --sp-surface-soft: #fbf9ff;
  --sp-text: #171325;
  --sp-text-soft: #6a647a;
  --sp-line: rgba(85, 60, 140, 0.12);
  --sp-primary: #6f38ff;
  --sp-secondary: #ff4fa3;
  --sp-dark: #120d22;
  --sp-dark-soft: #1c1433;
  --sp-shadow: 0 20px 60px rgba(31, 17, 65, 0.12);
  --sp-radius-xl: 32px;
  --sp-radius-lg: 24px;
  --sp-container: 1200px;
  --sp-header-height: 80px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sp-text);
  background: var(--sp-bg);
}

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

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

.container{
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* =========================
   HEADER
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-wrap{
  height: var(--sp-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
}

.brand__logo{
  height: 44px;
  width: auto;
}

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

.nav__link{
  position: relative;
  padding: 8px 2px;
  font-size: 16px;
  font-weight: 500;
  color: #334155;
}

.nav__link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sp-primary), var(--sp-secondary));
  transition: width 0.2s ease;
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after{
  width: 100%;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover{
  transform: translateY(-2px);
}

.btn--pill{
  border-radius: 999px;
}

.btn--nav,
.btn--header-call{
  background: linear-gradient(90deg, var(--sp-primary), var(--sp-secondary));
  color: #fff;
  box-shadow: 0 14px 34px rgba(111, 56, 255, 0.22);
  font-size: 15px;
  min-height: 48px;
  padding: 0 20px;
}

.nav-toggle{
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
}

/* =========================
   HERO BANNER
========================= */
.about-banner{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 110px;
  background:
    linear-gradient(rgba(7, 20, 45, 0.60), rgba(7, 20, 45, 0.68)),
    url("../assets/community-hero.jpg") center center / cover no-repeat;
}

.about-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 48%);
}

.about-banner__inner{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 28px;
  text-align: center;
  border-radius: 24px;
  background: rgba(9, 18, 36, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
}

.about-banner__title{
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-banner__grad{
  background: linear-gradient(90deg, #8d26ff 0%, #b526e0 48%, #ff4aa5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-banner__subtitle{
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  font-weight: 500;
}

/* =========================
   PAGE
========================= */
.services-premium{
  background:
    radial-gradient(circle at top left, rgba(111, 56, 255, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.10), transparent 24%),
    var(--sp-bg);
  color: var(--sp-text);
  padding-bottom: 96px;
}

.sp-container{
  width: min(calc(100% - 32px), var(--sp-container));
  margin-inline: auto;
}

.sp-eyebrow{
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sp-primary);
}

.sp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.sp-btn:hover{
  transform: translateY(-2px);
}

.sp-btn--primary{
  background: linear-gradient(135deg, var(--sp-primary), var(--sp-secondary));
  color: #fff;
  box-shadow: 0 16px 40px rgba(111, 56, 255, 0.24);
}

.sp-btn--primary:hover{
  box-shadow: 0 24px 48px rgba(111, 56, 255, 0.28);
}

.sp-btn--secondary,
.sp-btn--ghost{
  background: rgba(255, 255, 255, 0.82);
  color: var(--sp-text);
  border: 1px solid var(--sp-line);
}

.sp-btn--secondary:hover,
.sp-btn--ghost:hover{
  background: #fff;
}

/* =========================
   HERO SECTION
========================= */
.sp-hero{
  padding: 88px 0 48px;
}

.sp-hero__grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.sp-hero__title{
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 13ch;
}

.sp-hero__text{
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--sp-text-soft);
}

.sp-hero__actions,
.sp-service-actions,
.sp-cta-card__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sp-trust-list{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.sp-trust-list li{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  font-weight: 600;
}

.sp-panel-card{
  height: 100%;
  padding: 28px;
  border-radius: var(--sp-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--sp-shadow);
}

.sp-panel-card__label{
  margin: 0 0 18px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sp-primary);
}

.sp-panel-stat{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--sp-line);
}

.sp-panel-stat:first-of-type{
  border-top: 0;
  padding-top: 0;
}

.sp-panel-stat__number{
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.14), rgba(255, 79, 163, 0.14));
  color: var(--sp-primary);
  font-weight: 800;
}

.sp-panel-stat strong{
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.sp-panel-stat p{
  margin: 0;
  color: var(--sp-text-soft);
  line-height: 1.6;
}

/* =========================
   ANCHOR NAV
========================= */
.sp-anchor-nav{
  position: sticky;
  top: var(--sp-header-height);
  z-index: 20;
  padding: 10px 0 0;
  background: linear-gradient(180deg, rgba(247,243,255,0.92), rgba(247,243,255,0.72));
  backdrop-filter: blur(10px);
}

.sp-anchor-nav__inner{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.sp-anchor-link{
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--sp-line);
  color: var(--sp-text-soft);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s ease;
}

.sp-anchor-link:hover,
.sp-anchor-link.is-active{
  color: #fff;
  background: linear-gradient(135deg, var(--sp-primary), var(--sp-secondary));
  border-color: transparent;
}

/* =========================
   CONTENT SECTIONS
========================= */
.sp-section{
  padding: 88px 0;
}

.sp-section--dark{
  background:
    radial-gradient(circle at top left, rgba(255, 79, 163, 0.10), transparent 18%),
    linear-gradient(180deg, var(--sp-dark), var(--sp-dark-soft));
  color: #fff;
}

.sp-section-heading{
  max-width: 760px;
  margin-bottom: 34px;
}

.sp-section-heading h2{
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.sp-section-heading p{
  margin: 18px 0 0;
  color: var(--sp-text-soft);
  line-height: 1.8;
  font-size: 1.03rem;
}

.sp-section-heading--light h2,
.sp-section-heading--light p{
  color: #fff;
}

.sp-section-heading--light p{
  color: rgba(255,255,255,0.78);
}

/* =========================
   FEATURED SERVICE
========================= */
.sp-featured-service{
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  padding: 30px;
  border-radius: var(--sp-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbf8ff);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: var(--sp-shadow);
}

.sp-badge{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(111, 56, 255, 0.08);
  border: 1px solid rgba(111, 56, 255, 0.12);
  color: var(--sp-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sp-service-kicker{
  margin: 18px 0 10px;
  color: var(--sp-secondary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.sp-featured-service h3,
.sp-service-card h3{
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.sp-service-copy{
  margin: 18px 0 0;
  color: var(--sp-text-soft);
  line-height: 1.85;
  font-size: 1.03rem;
}

.sp-feature-list,
.sp-mini-list{
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.sp-feature-list li,
.sp-mini-list li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--sp-text);
  line-height: 1.7;
}

.sp-feature-list li::before,
.sp-mini-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sp-primary), var(--sp-secondary));
  transform: translateY(-50%);
}

.sp-featured-service__meta{
  display: grid;
  gap: 16px;
}

.sp-meta-card{
  padding: 22px;
  border-radius: var(--sp-radius-lg);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 14px 34px rgba(33, 20, 68, 0.06);
}

.sp-meta-card span{
  display: block;
  margin-bottom: 8px;
  color: var(--sp-primary);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-meta-card strong{
  display: block;
  line-height: 1.6;
}

/* =========================
   SERVICE GRID
========================= */
.sp-service-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.sp-service-card{
  padding: 28px;
  border-radius: var(--sp-radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 40px rgba(33, 20, 68, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.sp-service-card:hover{
  transform: translateY(-6px);
  border-color: rgba(111, 56, 255, 0.20);
  box-shadow: 0 24px 56px rgba(30, 18, 63, 0.12);
}

.sp-service-card p:not(.sp-service-kicker){
  margin: 16px 0 0;
  color: var(--sp-text-soft);
  line-height: 1.8;
}

.sp-inline-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--sp-primary);
  text-decoration: none;
  font-weight: 800;
}

.sp-inline-link::after{
  content: "→";
  transition: transform 0.2s ease;
}

.sp-inline-link:hover::after{
  transform: translateX(4px);
}

/* =========================
   PROCESS
========================= */
.sp-process-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.sp-process-card{
  padding: 24px;
  border-radius: var(--sp-radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.sp-process-card h3{
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.sp-process-card p{
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}

.sp-step{
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 56, 255, 0.28), rgba(255, 79, 163, 0.22));
  color: #fff;
  font-weight: 800;
}

/* =========================
   PROOF
========================= */
.sp-proof-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.sp-proof-copy h2{
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.sp-proof-copy p:not(.sp-eyebrow){
  margin: 18px 0 0;
  color: var(--sp-text-soft);
  line-height: 1.85;
  font-size: 1.03rem;
}

.sp-proof-stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sp-stat-card{
  padding: 24px;
  border-radius: var(--sp-radius-lg);
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(111, 56, 255, 0.10);
  box-shadow: 0 16px 40px rgba(33, 20, 68, 0.08);
}

.sp-stat-card strong{
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.sp-stat-card span{
  display: block;
  color: var(--sp-text-soft);
  line-height: 1.7;
}

.sp-quote{
  margin: 34px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--sp-secondary);
  background: rgba(255, 79, 163, 0.06);
  border-radius: 0 20px 20px 0;
  line-height: 1.8;
  font-size: 1.08rem;
  color: var(--sp-text);
}

/* =========================
   CTA
========================= */
.sp-cta-section{
  padding: 0 0 10px;
}

.sp-cta-card{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--sp-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(111, 56, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #1a1330, #281b49);
  color: #fff;
  box-shadow: var(--sp-shadow);
}

.sp-cta-card h2{
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.sp-cta-card p:last-child{
  margin: 16px 0 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
}

.sp-cta-card .sp-eyebrow{
  color: rgba(255,255,255,0.74);
}

.sp-cta-card .sp-btn--secondary{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

.sp-cta-card .sp-btn--secondary:hover{
  background: rgba(255,255,255,0.08);
}

/* =========================
   FOOTER (ONLY FOR SERVICES PAGE)
========================= */
.site-footer{
  background: #0b1220;
  color: rgba(255,255,255,.78);
  padding: 70px 0 34px;
}

.site-footer__container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 44px;
}

.site-footer__grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.site-footer__brand{
  margin-bottom: 12px;
  color: #a855f7;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.site-footer__desc{
  margin: 0;
  max-width: 46ch;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.6;
}

.site-footer__title{
  margin: 6px 0 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
}

.site-footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer__links a{
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255,255,255,.55);
  transition: color 0.15s ease, transform 0.15s ease;
}

.site-footer__links a:hover{
  color: rgba(255,255,255,.88);
  transform: translateX(2px);
}

.site-footer__social{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

.social-btn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}

.social-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
}

.social-btn svg{
  width: 18px;
  height: 18px;
}

.site-footer__divider{
  margin-top: 56px;
  height: 1px;
  background: rgba(255,255,255,.10);
}

.site-footer__bottom{
  padding-top: 26px;
  display: flex;
  justify-content: center;
}

.site-footer__copyright{
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 16px;
  letter-spacing: -0.01em;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
  .sp-hero__grid,
  .sp-featured-service,
  .sp-proof-grid,
  .sp-cta-card{
    grid-template-columns: 1fr;
  }

  .sp-process-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 920px){
  .nav-toggle{
    display: flex;
  }

  .nav{
    position: fixed;
    inset: var(--sp-header-height) 16px auto 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    padding: 16px;
    display: grid;
    gap: 12px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .btn--nav{
    width: 100%;
  }
}

@media (max-width: 760px){
  .about-banner{
    padding: 72px 0 82px;
  }

  .about-banner__inner{
    padding: 26px 18px;
    border-radius: 18px;
  }

  .sp-hero,
  .sp-section{
    padding: 72px 0;
  }

  .sp-anchor-nav{
    top: 72px;
  }

  .sp-anchor-nav__inner{
    gap: 10px;
  }

  .sp-hero__title,
  .sp-proof-copy h2,
  .sp-section-heading h2{
    max-width: 100%;
  }

  .sp-service-grid,
  .sp-proof-stats,
  .sp-process-grid{
    grid-template-columns: 1fr;
  }

  .sp-panel-card,
  .sp-featured-service,
  .sp-service-card,
  .sp-process-card,
  .sp-stat-card,
  .sp-cta-card{
    padding: 22px;
  }

  .site-footer__container{
    padding: 0 22px;
  }
}

    /* =========================
       PREMIUM ADDITIONS
    ========================= */

    .trust-strip {
      background: #ffffff;
      border-top: 1px solid rgba(15, 23, 42, 0.06);
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      padding: 18px 0;
    }

    .trust-strip__inner {
      width: min(1240px, calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .trust-strip__item {
      padding: 10px 16px;
      border-radius: 999px;
      background: #f8f4f8;
      color: #475569;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .founder-note {
      background: linear-gradient(180deg, #ffffff 0%, #fbf1f7 100%);
      padding: 86px 0;
    }

    .founder-note__inner {
      width: min(1240px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 56px;
      align-items: center;
    }

    .founder-note__eyebrow {
      margin: 0 0 12px;
      color: #a855f7;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .founder-note__title {
      margin: 0 0 16px;
      color: #0f172a;
      font-size: clamp(30px, 3.6vw, 54px);
      line-height: 1.06;
      font-weight: 900;
      letter-spacing: -0.03em;
    }

    .founder-note__text {
      margin: 0 0 24px;
      color: #475569;
      font-size: 18px;
      line-height: 1.7;
      max-width: 58ch;
    }

    .founder-note__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 56px;
      padding: 0 28px;
      border-radius: 999px;
      background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
      color: #fff;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 14px 28px rgba(124, 58, 237, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .founder-note__btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(124, 58, 237, 0.24);
    }

    .founder-note__media {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
    }

    .founder-note__media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .floating-cta {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 80;
    }

    .floating-cta__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 54px;
      padding: 0 24px;
      border-radius: 999px;
      background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 18px 34px rgba(124, 58, 237, 0.24);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .floating-cta__btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 40px rgba(124, 58, 237, 0.28);
    }

    .mobile-cta {
      display: none;
    }

    @media (max-width: 900px) {
      .founder-note__inner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .floating-cta {
        display: none;
      }

      .mobile-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 90;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(15, 23, 42, 0.08);
      }

      .mobile-cta__link {
        height: 48px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
      }

      .mobile-cta__link--light {
        background: #f3f4f6;
        color: #0f172a;
      }

      .mobile-cta__link--primary {
        background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
        color: #fff;
      }
    }

    /* =========================
   MOBILE NAV TOGGLE
========================= */

.nav-wrap {
  position: relative;
}

.nav-toggle {
  width: 52px;
  height: 52px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1200;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 30px;
  height: 2.5px;
  background: #1a1a1a;
  border-radius: 999px;
  transform: translateX(-50%);
  transform-origin: center;
  transition:
    top 0.28s ease,
    transform 0.35s cubic-bezier(0.68, -0.2, 0.27, 1.2),
    opacity 0.2s ease,
    width 0.25s ease;
}

.nav-toggle span:nth-child(1) {
  top: 17px;
}

.nav-toggle span:nth-child(2) {
  top: 24px;
}

.nav-toggle span:nth-child(3) {
  top: 31px;
}

/* Hamburger -> X */
.nav-toggle.is-active span:nth-child(1) {
  top: 24px;
  width: 32px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.nav-toggle.is-active span:nth-child(3) {
  top: 24px;
  width: 32px;
  transform: translateX(-50%) rotate(-45deg);
}

.nav-toggle:focus-visible {
  outline: 2px solid #b14cff;
  outline-offset: 4px;
  border-radius: 12px;
}

/* =========================
   MOBILE NAV PANEL
========================= */

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 1100;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;

    padding: 16px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      transform 0.35s ease,
      visibility 0s linear 0.35s;
  }

  .nav > * {
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 0.28s ease,
      transform 0.35s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.25s ease,
      transform 0.35s ease,
      visibility 0s linear 0s;
  }

  .nav.is-open > * {
    opacity: 1;
    transform: translateY(0);
  }

  .nav.is-open > *:nth-child(1) { transition-delay: 0.04s; }
  .nav.is-open > *:nth-child(2) { transition-delay: 0.08s; }
  .nav.is-open > *:nth-child(3) { transition-delay: 0.12s; }
  .nav.is-open > *:nth-child(4) { transition-delay: 0.16s; }
  .nav.is-open > *:nth-child(5) { transition-delay: 0.20s; }
  .nav.is-open > *:nth-child(6) { transition-delay: 0.24s; }

  .nav__link,
  .btn--nav {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav__link {
    text-decoration: none;
  }

  .nav__link:hover {
    background: rgba(177, 76, 255, 0.08);
  }

  .btn--nav {
    text-align: center;
    margin-top: 4px;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* =========================
   DESKTOP NAV RESET
========================= */

@media (min-width: 961px) {
  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
}

/* ========= CLEAN NAV RESET ========= */

html,
body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* header should NOT stick or change on scroll */
.site-header,
.site-header.is-scrolled {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  transform: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.site-header::before,
.site-header.is-scrolled::before {
  display: none !important;
  content: none !important;
}

.nav-wrap,
.site-header.is-scrolled .nav-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  min-height: auto !important;
  transform: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.brand {
  position: relative !important;
  z-index: 1301 !important;
}

.brand__logo {
  display: block !important;
  width: auto !important;
  max-height: 56px !important;
}

/* hamburger button */
.nav-toggle {
  width: 48px !important;
  height: 48px !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 1302 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.nav-toggle span {
  position: absolute !important;
  left: 50% !important;
  width: 28px !important;
  height: 2.5px !important;
  background: #1b1b1b !important;
  border-radius: 999px !important;
  transform: translateX(-50%) !important;
  transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease !important;
}

.nav-toggle span:nth-child(1) {
  top: 15px !important;
}

.nav-toggle span:nth-child(2) {
  top: 23px !important;
}

.nav-toggle span:nth-child(3) {
  top: 31px !important;
}

.nav-toggle.is-active span:nth-child(1) {
  top: 23px !important;
  transform: translateX(-50%) rotate(45deg) !important;
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0 !important;
}

.nav-toggle.is-active span:nth-child(3) {
  top: 23px !important;
  transform: translateX(-50%) rotate(-45deg) !important;
}

/* desktop nav */
@media (min-width: 961px) {
  .nav-toggle {
    display: none !important;
  }

  .nav {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
  }

  .mobile-cta {
    display: none !important;
  }
}

/* mobile nav */
@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex !important;
  }

  .nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1300 !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;

    padding: 14px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
  }

  .nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav__link,
  .btn--nav,
  .btn--header-call {
    display: flex !important;
    width: 100% !important;
    min-height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .mobile-cta {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    z-index: 1200 !important;

    display: flex !important;
    gap: 10px !important;
    align-items: center !important;

    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10px !important;
    box-sizing: border-box !important;

    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12) !important;
  }

  .mobile-cta__link {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }
}

/* KEEP NAV STUCK AT TOP WHILE SCROLLING */
.site-header,
.site-header.is-scrolled {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  background: #fff !important;
}

.nav-wrap,
.site-header .nav-wrap,
.site-header.is-scrolled .nav-wrap {
  position: relative !important;
}

/* ===== FINAL HEADER FIX — paste at very bottom ===== */
:root{
  --final-header-height: 80px;
}

.site-header,
.site-header.is-scrolled{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
  overflow: visible !important;
}

.site-header .nav-wrap,
.site-header.is-scrolled .nav-wrap{
  height: var(--final-header-height) !important;
  min-height: var(--final-header-height) !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  overflow: visible !important;
}

body{
  padding-top: var(--final-header-height) !important;
}

.site-header .brand__logo{
  max-height: 44px !important;
  width: auto !important;
}

/* keep mobile dropdown under the fixed header */
@media (max-width: 960px){
  .site-header .nav{
    top: calc(100% + 10px) !important;
    z-index: 10000 !important;
  }
}

/* ===== SERVICES CARDS: match "How We Work" color style ===== */

.sp-featured-service,
.sp-service-card,
.sp-meta-card {
  background:
    radial-gradient(circle at top left, rgba(255, 79, 163, 0.10), transparent 18%),
    linear-gradient(180deg, var(--sp-dark) 0%, var(--sp-dark-soft) 100%) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 20px 50px rgba(18, 13, 34, 0.22) !important;
}

/* Main headings/text inside service cards */
.sp-featured-service h3,
.sp-service-card h3,
.sp-meta-card strong {
  color: #ffffff !important;
}

.sp-service-copy,
.sp-service-card p:not(.sp-service-kicker),
.sp-meta-card span {
  color: rgba(255,255,255,0.78) !important;
}

/* Small label text */
.sp-service-kicker,
.sp-badge {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--sp-primary), var(--sp-secondary)) !important;
  border: none !important;
}

/* Bullet lists */
.sp-feature-list li,
.sp-mini-list li {
  color: rgba(255,255,255,0.88) !important;
}

.sp-feature-list li::before,
.sp-mini-list li::before {
  background: linear-gradient(135deg, #ffffff, #ffb7dd) !important;
}

/* Links inside cards */
.sp-inline-link {
  color: #ffffff !important;
}

/* Ghost button inside featured card */
.sp-featured-service .sp-btn--ghost,
.sp-featured-service .sp-btn--secondary {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
}

.sp-featured-service .sp-btn--ghost:hover,
.sp-featured-service .sp-btn--secondary:hover {
  background: rgba(255,255,255,0.14) !important;
}

/* ===== HOME PAGE LAYOUT FIX ===== */
.home-sections{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: block;
}

.home-cta-group{
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  gap: 40px;
}

.services-grid-bg,
.bb-hero,
.founder-note,
.sponsor-partner,
.partner-why,
.ppack,
.ready-transform{
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

html,
body{
  overflow-x: hidden;
}

@media (max-width: 768px){
  .home-cta-group{
    width: calc(100% - 24px);
    padding: 28px 0;
    gap: 24px;
  }
}

.founder-note {
  padding: 90px 0;
}

.founder-note__inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: start;
  gap: 48px;
}

.founder-note__content {
  max-width: 640px;
}

.founder-note__eyebrow {
  margin: 0 0 12px;
}

.founder-note__title {
  margin: 0 0 20px;
  max-width: 16ch;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.founder-note__text {
  margin: 0 0 16px;
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.7;
}

.founder-note__btn {
  margin-top: 8px;
}

.founder-note__media {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.founder-note__media img {
  width: 100%;
  max-width: 500px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .founder-note__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .founder-note__content,
  .founder-note__text {
    max-width: 100%;
  }

  .founder-note__title {
    max-width: 100%;
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }

  .founder-note__media {
    justify-content: flex-start;
  }

  .founder-note__media img {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .founder-note {
    padding: 72px 0;
  }

  .founder-note__inner {
    width: min(100% - 24px, 1200px);
  }

  .founder-note__title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.08;
  }

  .founder-note__text {
    font-size: 0.98rem;
  }
}

.home-cta-group .cta,
.home-cta-group .cta-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-cta-group .cta--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.58) 0%,
      rgba(15, 23, 42, 0.50) 35%,
      rgba(15, 23, 42, 0.62) 100%
    ),
    var(--cta-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.home-cta-group .cta--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.20) 0%,
    rgba(210, 10, 140, 0.14) 100%
  );
  z-index: 0;
}

.home-cta-group .cta--photo > * {
  position: relative;
  z-index: 1;
}

.home-cta-group .cta--photo h2,
.home-cta-group .cta--photo p,
.home-cta-group .cta--photo .cta-btn,
.home-cta-group .cta--photo .btn {
  color: #ffffff;
}

.home-cta-group .cta--photo h2,
.home-cta-group .cta--photo p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.home-cta-group .cta--photo .btn,
.home-cta-group .cta--photo .cta-btn {
  background: #ffffff;
  color: #7c3aed;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.home-cta-group .cta--photo .btn:hover,
.home-cta-group .cta--photo .cta-btn:hover {
  transform: translateY(-1px);
}

.home-cta-group .cta--photo p {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.home-cta-group {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 36px 0 44px;
  display: grid;
  gap: 56px;
}

.home-cta-group .cta,
.home-cta-group .cta-card {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-radius: 36px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
}

.home-cta-group .cta::before,
.home-cta-group .cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(7, 12, 28, 0.52) 0%,
      rgba(7, 12, 28, 0.38) 38%,
      rgba(7, 12, 28, 0.62) 100%
    ),
    var(--cta-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  z-index: -2;
}

.home-cta-group .cta::after,
.home-cta-group .cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(8, 12, 26, 0.12), rgba(8, 12, 26, 0.32));
  z-index: -1;
}

.home-cta-group .cta__glass {
  width: min(1080px, 100%);
  padding: 56px 44px;
  border-radius: 34px;
  background: rgba(12, 18, 38, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.home-cta-group .cta h2,
.home-cta-group .cta-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  font-size: clamp(34px, 4.4vw, 72px);
  text-wrap: balance;
}

.home-cta-group .cta p,
.home-cta-group .cta-card p {
  margin: 0 auto 30px;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(17px, 1.55vw, 26px);
  line-height: 1.58;
  font-weight: 500;
  text-wrap: balance;
}

.home-cta-group .cta .btn,
.home-cta-group .cta-card .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  padding: 0 38px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #7c3aed 0%, #ec4899 100%);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.28);
}

.home-cta-group .cta .btn:hover,
.home-cta-group .cta-card .cta-btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .home-cta-group {
    width: min(1280px, calc(100% - 28px));
    gap: 40px;
  }

  .home-cta-group .cta,
  .home-cta-group .cta-card {
    min-height: 380px;
    padding: 18px;
    border-radius: 28px;
  }

  .home-cta-group .cta__glass {
    padding: 34px 20px;
    border-radius: 24px;
  }

  .home-cta-group .cta h2,
  .home-cta-group .cta-card h2 {
    font-size: clamp(28px, 8vw, 44px);
  }

  .home-cta-group .cta p,
  .home-cta-group .cta-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  .home-cta-group .cta .btn,
  .home-cta-group .cta-card .cta-btn {
    height: 56px;
    padding: 0 28px;
    font-size: 16px;
  }
}

.home-cta-group {
  width: min(1080px, calc(100% - 56px));
  gap: 28px;
}

.home-cta-group .cta,
.home-cta-group .cta-card {
  min-height: 280px;
  padding: 14px;
  border-radius: 22px;
}

.home-cta-group .cta__glass {
  width: min(760px, 100%);
  padding: 24px 20px;
  border-radius: 18px;
}

.home-cta-group .cta h2,
.home-cta-group .cta-card h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.home-cta-group .cta p,
.home-cta-group .cta-card p {
  margin: 0 auto 16px;
  max-width: 620px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
}

.home-cta-group .cta .btn,
.home-cta-group .cta-card .cta-btn {
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

@media (max-width: 720px) {
  .home-cta-group {
    width: min(1080px, calc(100% - 24px));
    gap: 20px;
  }

  .home-cta-group .cta,
  .home-cta-group .cta-card {
    min-height: 240px;
    padding: 10px;
    border-radius: 18px;
  }

  .home-cta-group .cta__glass {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .home-cta-group .cta h2,
  .home-cta-group .cta-card h2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .home-cta-group .cta p,
  .home-cta-group .cta-card p {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .home-cta-group .cta .btn,
  .home-cta-group .cta-card .cta-btn {
    height: 40px;
    padding: 0 18px;
    font-size: 13px;
  }
}

.sp-hero--minimal {
  padding: 78px 0 54px;
  background: linear-gradient(180deg, #fbf1f7 0%, #ffffff 100%);
}

.sp-hero--minimal .sp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-hero--minimal .sp-hero__center {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.sp-hero--minimal .sp-eyebrow {
  margin: 0 0 14px;
  color: #7c3aed;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-hero--minimal .sp-hero__title {
  margin: 0 0 18px;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}

.sp-hero--minimal .sp-hero__text {
  margin: 0 auto 28px;
  max-width: 62ch;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.7;
}

.sp-hero--minimal .sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 640px) {
  .sp-hero--minimal {
    padding: 64px 0 42px;
  }

  .sp-hero--minimal .sp-container {
    padding: 0 16px;
  }

  .sp-hero--minimal .sp-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 1.12;
  }

  .sp-hero--minimal .sp-hero__text {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .sp-hero--minimal .sp-btn {
    min-height: 50px;
    padding: 0 24px;
  }
}

.sp-hero--minimal {
  padding: 58px 0 34px;
}

.sp-hero--minimal .sp-container {
  max-width: 980px;
  margin: 0 auto;
}

.sp-hero--minimal .sp-hero__center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.sp-hero--minimal .sp-eyebrow {
  margin: 0 0 12px;
}

.sp-hero--minimal .sp-hero__title {
  margin: 0 auto;
  max-width: 100%;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.sp-hero--minimal .sp-hero__text {
  max-width: 58ch;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.7;
}

.sp-hero--minimal .sp-btn {
  margin-top: 24px;
}

@media (max-width: 760px) {
  .sp-hero--minimal {
    padding: 46px 0 24px;
  }

  .sp-hero--minimal .sp-hero__title {
    font-size: clamp(1.8rem, 7vw, 2.45rem);
    line-height: 1.12;
  }

  .sp-hero--minimal .sp-hero__text {
    font-size: 0.98rem;
    max-width: 100%;
  }
}

.sp-anchor-nav--clean {
  padding: 6px 0 34px;
  background: transparent;
  border: 0;
}

.sp-anchor-nav--clean .sp-anchor-nav__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.sp-anchor-nav--clean .sp-anchor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: all 180ms ease;
}

.sp-anchor-nav--clean .sp-anchor-link:hover {
  color: #0f172a;
  border-color: rgba(124, 58, 237, 0.22);
  transform: translateY(-1px);
}

.sp-anchor-nav--clean .sp-anchor-link.is-active {
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.18);
}

@media (max-width: 640px) {
  .sp-anchor-nav--clean {
    padding: 2px 0 24px;
  }

  .sp-anchor-nav--clean .sp-anchor-nav__inner {
    gap: 10px;
  }

  .sp-anchor-nav--clean .sp-anchor-link {
    min-height: 40px;
    padding: 0 15px;
    font-size: 13px;
  }
}

.sp-section-heading--premium {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.sp-section-heading--premium .sp-eyebrow {
  margin: 0 0 12px;
}

.sp-section-heading--premium h2 {
  margin: 0 auto 16px;
  max-width: 16ch;
  color: #0f172a;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}

.sp-section-heading--premium .sp-section-heading__accent {
  display: block;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sp-section-heading--premium p:last-child {
  margin: 0 auto;
  max-width: 56ch;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  text-wrap: pretty;
}

@media (max-width: 640px) {
  .sp-section-heading--premium {
    margin-bottom: 30px;
  }

  .sp-section-heading--premium h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.1;
  }

  .sp-section-heading--premium p:last-child {
    max-width: 100%;
    font-size: 0.97rem;
  }
}

.sp-section-heading--premium {
  max-width: 1100px;
  margin: 0 auto 52px;
  padding: 0 24px;
  text-align: center;
}

.sp-section-heading--premium .sp-eyebrow {
  margin: 0 0 12px;
  color: #7c3aed;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-section-heading--premium > h2 {
  margin: 0 auto 18px;
  max-width: 900px;
  color: #0f172a;
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}

.sp-section-heading--premium .sp-section-heading__accent {
  display: inline;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sp-section-heading--premium > p:last-child {
  margin: 0 auto;
  max-width: 700px;
  color: #475569;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.72;
  font-weight: 400;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .sp-section-heading--premium {
    margin-bottom: 40px;
    padding: 0 18px;
  }

  .sp-section-heading--premium > h2 {
    max-width: 700px;
    font-size: clamp(1.85rem, 5vw, 2.7rem);
    line-height: 1.14;
  }

  .sp-section-heading--premium > p:last-child {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .sp-section-heading--premium {
    margin-bottom: 30px;
    padding: 0 16px;
  }

  .sp-section-heading--premium > h2 {
    max-width: 100%;
    font-size: clamp(1.7rem, 7vw, 2.25rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
  }

  .sp-section-heading--premium .sp-section-heading__accent {
    display: block;
  }

  .sp-section-heading--premium > p:last-child {
    max-width: 100%;
    font-size: 0.97rem;
    line-height: 1.68;
  }
}

.sp-section-heading--premium {
  max-width: 1180px;
  margin: 0 auto 52px;
  padding: 0 24px;
  text-align: center;
}

.sp-section-heading--premium .sp-eyebrow {
  margin: 0 0 12px;
  color: #7c3aed;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-section-heading--premium > h2 {
  margin: 0 auto 18px;
  max-width: 980px;
  color: #0f172a;
  font-size: clamp(2rem, 2.3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}

.sp-section-heading--premium .sp-section-heading__accent {
  display: inline;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sp-section-heading--premium > p:last-child {
  margin: 0 auto;
  max-width: 720px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.72;
}

@media (max-width: 768px) {
  .sp-section-heading--premium {
    margin-bottom: 34px;
    padding: 0 16px;
  }

  .sp-section-heading--premium > h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
    line-height: 1.14;
  }

  .sp-section-heading--premium .sp-section-heading__accent {
    display: block;
  }

  .sp-section-heading--premium > p:last-child {
    max-width: 100%;
    font-size: 0.97rem;
    line-height: 1.68;
  }
}

.tp-hero--clean {
  padding: 56px 0 26px;
}

.tp-hero--clean .tp-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.tp-hero--clean .tp-hero__content--center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tp-hero--clean .tp-hero__title {
  margin: 0 auto 16px;
  max-width: 18ch;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.tp-hero--clean .tp-hero__text {
  margin: 0 auto;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.72;
  color: #475569;
}

.tp-hero--clean .tp-hero__actions {
  justify-content: center;
  margin-top: 24px;
}

.tp-hero--clean .tp-hero__chips,
.tp-hero--clean .tp-proofCard {
  display: none;
}

@media (max-width: 768px) {
  .tp-hero--clean {
    padding: 42px 0 18px;
  }

  .tp-hero--clean .tp-container {
    padding: 0 16px;
  }

  .tp-hero--clean .tp-hero__title {
    max-width: 100%;
    font-size: clamp(1.75rem, 7vw, 2.45rem);
    line-height: 1.12;
  }

  .tp-hero--clean .tp-hero__text {
    max-width: 100%;
    font-size: 0.97rem;
    line-height: 1.68;
  }
}

.home-testimonials-slider {
  padding: 84px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbf1f7 100%);
}

.home-testimonials-slider__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.home-testimonials-slider__heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.home-testimonials-slider__eyebrow {
  margin: 0 0 12px;
  color: #7c3aed;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-testimonials-slider__title {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}

.home-testimonials-slider__text {
  margin: 0 auto;
  max-width: 58ch;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

.home-testimonials-slider__carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.home-testimonials-slider__viewport {
  overflow: hidden;
  border-radius: 28px;
}

.home-testimonials-slider__track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.home-testimonials-slider__card {
  min-width: 100%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 28px;
  padding: 34px 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.home-testimonials-slider__stars {
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.home-testimonials-slider__quote {
  margin: 0 0 24px;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.75;
}

.home-testimonials-slider__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-testimonials-slider__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  flex: 0 0 auto;
}

.home-testimonials-slider__author strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.3;
}

.home-testimonials-slider__author span {
  display: block;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.4;
}

.home-testimonials-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  z-index: 2;
}

.home-testimonials-slider__nav--prev {
  left: -24px;
}

.home-testimonials-slider__nav--next {
  right: -24px;
}

.home-testimonials-slider__nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.home-testimonials-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.home-testimonials-slider__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.home-testimonials-slider__dot.is-active {
  background: #7c3aed;
  transform: scale(1.15);
}

.home-testimonials-slider__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.home-testimonials-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.22);
}

@media (max-width: 991px) {
  .home-testimonials-slider {
    padding: 72px 0;
  }

  .home-testimonials-slider__nav--prev {
    left: -10px;
  }

  .home-testimonials-slider__nav--next {
    right: -10px;
  }
}

@media (max-width: 640px) {
  .home-testimonials-slider {
    padding: 60px 0;
  }

  .home-testimonials-slider__inner {
    width: min(1180px, calc(100% - 24px));
  }

  .home-testimonials-slider__heading {
    margin-bottom: 28px;
  }

  .home-testimonials-slider__title {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    line-height: 1.14;
  }

  .home-testimonials-slider__text,
  .home-testimonials-slider__quote {
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .home-testimonials-slider__card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .home-testimonials-slider__nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .home-testimonials-slider__nav--prev {
    left: 6px;
  }

  .home-testimonials-slider__nav--next {
    right: 6px;
  }

  .home-testimonials-slider__btn {
    min-height: 50px;
    padding: 0 24px;
  }
}

.home-testimonials-slider__video {
  max-width: 860px;
  margin: 0 auto 28px;
}

.home-testimonials-slider__video-link {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
  text-decoration: none;
}

.home-testimonials-slider__video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-testimonials-slider__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.18) 0%,
    rgba(15, 23, 42, 0.12) 35%,
    rgba(15, 23, 42, 0.48) 100%
  );
}

.home-testimonials-slider__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #7c3aed;
  font-size: 28px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.home-testimonials-slider__video-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 640px) {
  .home-testimonials-slider__video {
    margin-bottom: 22px;
  }

  .home-testimonials-slider__video-link {
    border-radius: 20px;
  }

  .home-testimonials-slider__video-play {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }

  .home-testimonials-slider__video-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    min-height: 36px;
    font-size: 0.85rem;
  }
}

.home-testimonials-slider {
  padding: 84px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbf1f7 100%);
}

.home-testimonials-slider__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.home-testimonials-slider__heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.home-testimonials-slider__eyebrow {
  margin: 0 0 12px;
  color: #7c3aed;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-testimonials-slider__title {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-wrap: balance;
}

.home-testimonials-slider__text {
  margin: 0 auto;
  max-width: 58ch;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

.home-testimonials-slider__video {
  max-width: 860px;
  margin: 0 auto 28px;
}

.home-testimonials-slider__video-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.14);
  cursor: pointer;
}

.home-testimonials-slider__video-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-testimonials-slider__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.18) 0%,
    rgba(15, 23, 42, 0.12) 35%,
    rgba(15, 23, 42, 0.48) 100%
  );
}

.home-testimonials-slider__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #7c3aed;
  font-size: 28px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.home-testimonials-slider__video-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.74);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-testimonials-slider__carousel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.home-testimonials-slider__viewport {
  overflow: hidden;
  border-radius: 28px;
}

.home-testimonials-slider__track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.home-testimonials-slider__card {
  min-width: 100%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 28px;
  padding: 34px 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.home-testimonials-slider__stars {
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.home-testimonials-slider__quote {
  margin: 0 0 24px;
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.75;
}

.home-testimonials-slider__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-testimonials-slider__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  flex: 0 0 auto;
}

.home-testimonials-slider__author strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.3;
}

.home-testimonials-slider__author span {
  display: block;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.4;
}

.home-testimonials-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  z-index: 2;
}

.home-testimonials-slider__nav--prev {
  left: -24px;
}

.home-testimonials-slider__nav--next {
  right: -24px;
}

.home-testimonials-slider__nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.home-testimonials-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.home-testimonials-slider__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.home-testimonials-slider__dot.is-active {
  background: #7c3aed;
  transform: scale(1.15);
}

.home-testimonials-slider__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.home-testimonials-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(90deg, #7c3aed 0%, #d20a8c 100%);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.22);
}

.home-testimonials-slider__modal[hidden] {
  display: none;
}

.home-testimonials-slider__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.home-testimonials-slider__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.home-testimonials-slider__modal-dialog {
  position: relative;
  width: min(960px, calc(100% - 32px));
  margin: 6vh auto 0;
  z-index: 2;
}

.home-testimonials-slider__modal-close {
  position: absolute;
  top: -14px;
  right: -8px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.home-testimonials-slider__modal-frameWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  background: #000000;
}

.home-testimonials-slider__modal-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .home-testimonials-slider {
    padding: 72px 0;
  }

  .home-testimonials-slider__nav--prev {
    left: -10px;
  }

  .home-testimonials-slider__nav--next {
    right: -10px;
  }
}

@media (max-width: 640px) {
  .home-testimonials-slider {
    padding: 60px 0;
  }

  .home-testimonials-slider__inner {
    width: min(1180px, calc(100% - 24px));
  }

  .home-testimonials-slider__heading {
    margin-bottom: 28px;
  }

  .home-testimonials-slider__title {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    line-height: 1.14;
  }

  .home-testimonials-slider__text,
  .home-testimonials-slider__quote {
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .home-testimonials-slider__video {
    margin-bottom: 22px;
  }

  .home-testimonials-slider__video-link {
    border-radius: 20px;
  }

  .home-testimonials-slider__video-play {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }

  .home-testimonials-slider__video-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    min-height: 36px;
    font-size: 0.85rem;
  }

  .home-testimonials-slider__card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .home-testimonials-slider__nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .home-testimonials-slider__nav--prev {
    left: 6px;
  }

  .home-testimonials-slider__nav--next {
    right: 6px;
  }

  .home-testimonials-slider__btn {
    min-height: 50px;
    padding: 0 24px;
  }

  .home-testimonials-slider__modal-dialog {
    width: min(100% - 20px, 960px);
    margin-top: 12vh;
  }

  .home-testimonials-slider__modal-close {
    top: -10px;
    right: -2px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .home-testimonials-slider__modal-frameWrap {
    border-radius: 18px;
  }
}

.home-testimonials-slider__modal-dialog {
  position: relative;
  width: min(960px, calc(100% - 32px));
  margin: 6vh auto 0;
  z-index: 2;
}

.home-testimonials-slider__modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.24);
}

.home-testimonials-slider__modal-close:hover {
  transform: scale(1.04);
}

.home-testimonials-slider__modal-close:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
}

.home-testimonials-slider__modal-frameWrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  background: #000000;
}

@media (max-width: 640px) {
  .home-testimonials-slider__modal-dialog {
    width: min(100% - 20px, 960px);
    margin-top: 12vh;
  }

  .home-testimonials-slider__modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .home-testimonials-slider__modal-frameWrap {
    border-radius: 18px;
  }
}

.bb-hero__video-trigger,
.bb-hero__video-btn {
  border: none;
  cursor: pointer;
}

.bb-hero__video-trigger {
  background: transparent;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
}

.bb-hero__video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bb-video-modal[hidden] {
  display: none !important;
}

.bb-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.bb-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 25, 0.78);
  backdrop-filter: blur(4px);
}

.bb-video-modal__dialog {
  position: relative;
  width: min(960px, calc(100% - 32px));
  margin: 60px auto;
  z-index: 2;
}

.bb-video-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #231f20;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bb-video-modal__frameWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.bb-video-modal__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bb-hero__video-trigger,
.bb-hero__video-btn {
  border: none;
  cursor: pointer;
}

.bb-hero__video-trigger {
  background: transparent;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
}

.bb-hero__video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bb-video-modal[hidden] {
  display: none !important;
}

.bb-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.bb-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 25, 0.78);
  backdrop-filter: blur(4px);
}

.bb-video-modal__dialog {
  position: relative;
  width: min(960px, calc(100% - 32px));
  margin: 60px auto;
  z-index: 2;
}

.bb-video-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #231f20;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bb-video-modal__frameWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.bb-video-modal__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bb-hero__video-trigger,
.bb-hero__video-btn {
  border: none;
  cursor: pointer;
}

.bb-hero__video-trigger {
  background: transparent;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
}

.bb-hero__video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bb-video-modal[hidden] {
  display: none !important;
}

.bb-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.bb-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 25, 0.78);
  backdrop-filter: blur(4px);
}

.bb-video-modal__dialog {
  position: relative;
  width: min(960px, calc(100% - 32px));
  margin: 60px auto;
  z-index: 2;
  overflow: visible;
}

.bb-video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #231f20;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bb-video-modal__frameWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.bb-video-modal__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.founder-note__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.founder-note__btn--secondary {
  background: transparent;
  border: 1px solid currentColor;
}

.founder-note__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.founder-note__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: all 0.3s ease;
}

.founder-note__btn:first-child {
  background: linear-gradient(135deg, #760254, #990053);
  color: #ffffff;
  border: none;
}

.founder-note__btn:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(118, 2, 84, 0.25);
}

.founder-note__btn--secondary {
  background: linear-gradient(135deg, #430175, #5d025a);
  color: #ffffff;
  border: none;
}

.founder-note__btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(67, 1, 117, 0.25);
}

.tp-videoModal[hidden] {
  display: none !important;
}

.tp-videoModal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 24px;
  isolation: isolate;
}

.tp-videoModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  z-index: 1;
}

.tp-videoModal__dialog {
  position: relative;
  z-index: 5;
  width: min(960px, 100%);
  max-height: calc(100vh - 40px);
  border-radius: 22px;
  overflow: visible;
  background: #0f0f14;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.tp-videoModal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 20;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.tp-videoModal__close:hover {
  background: #000;
}

.tp-videoModal__frameWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: 22px;
  overflow: hidden;
  z-index: 2;
}

.tp-videoModal__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-testimonials-slider__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.home-testimonials-slider__viewport::-webkit-scrollbar {
  display: none;
}

.home-testimonials-slider__track {
  display: flex;
  gap: 24px;
}

.home-testimonials-slider__card {
  flex: 0 0 calc(50% - 12px);
}

@media (max-width: 768px) {
  .home-testimonials-slider__card {
    flex: 0 0 100%;
  }
}

.page-hero-banner {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-banner--testimonials {
  background-image: url('/assets/community-hero.jpg');
}

.page-hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 10, 30, 0.58), rgba(8, 10, 30, 0.58));
}

.page-hero-banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  padding: 24px 20px;
  display: flex;
  justify-content: center;
}

.page-hero-banner__glass {
  width: min(1100px, 100%);
  padding: 34px 38px;
  border-radius: 26px;
  background: rgba(17, 22, 52, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.page-hero-banner__title {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.98;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.page-hero-banner__title span {
  background: linear-gradient(90deg, #7c2cff 0%, #d61fd7 55%, #ff3e9e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-hero-banner__text {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
}

@media (max-width: 991px) {
  .page-hero-banner {
    min-height: 44vh;
  }

  .page-hero-banner__glass {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .page-hero-banner__title {
    margin-bottom: 14px;
  }
}

@media (max-width: 640px) {
  .page-hero-banner {
    min-height: 38vh;
  }

  .page-hero-banner__inner {
    padding: 16px;
  }

  .page-hero-banner__glass {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .page-hero-banner__text {
    line-height: 1.45;
  }
}

.tp-stories__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 32px;
}

.tp-stories__intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.tp-stories__intro .tp-eyebrow,
.tp-stories__intro .tp-section-title,
.tp-stories__intro .tp-section-copy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tp-stories__intro .tp-section-title {
  max-width: 850px;
}

.tp-stories__intro .tp-section-copy {
  max-width: 760px;
}

.tp-carousel__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.tp-stories__head--center {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.tp-stories__intro {
  max-width: 900px;
  margin: 0 auto;
}

.tp-stories__intro .tp-eyebrow,
.tp-stories__intro .tp-section-title,
.tp-stories__intro .tp-section-copy {
  text-align: center;
}

.home-testimonials-slider__viewport--marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.home-testimonials-slider__marquee {
  display: flex;
  gap: 24px;
  width: max-content;
}

.home-testimonials-slider__marquee-group {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  min-width: max-content;
  animation: balmTestimonialsScroll 55s linear infinite;
}

.home-testimonials-slider__viewport--marquee:hover .home-testimonials-slider__marquee-group {
  animation-play-state: paused;
}

.home-testimonials-slider__card {
  flex: 0 0 420px;
}

@keyframes balmTestimonialsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 24px));
  }
}

@media (max-width: 991px) {
  .home-testimonials-slider__card {
    flex: 0 0 360px;
  }

  .home-testimonials-slider__marquee-group {
    animation-duration: 60s;
  }
}

@media (max-width: 640px) {
  .home-testimonials-slider__card {
    flex: 0 0 85vw;
  }

  .home-testimonials-slider__marquee-group {
    animation-duration: 70s;
  }
}



.tp-stories__head--center {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.tp-stories__intro {
  max-width: 900px;
  margin: 0 auto;
}

.tp-stories__intro .tp-eyebrow,
.tp-stories__intro .tp-section-title,
.tp-stories__intro .tp-section-copy {
  text-align: center;
}

.home-testimonials-slider__viewport--marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.home-testimonials-slider__marquee {
  display: flex;
  gap: 24px;
}

.home-testimonials-slider__marquee-group {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  animation: balmTestimonialsScroll 40s linear infinite;
}

.home-testimonials-slider__viewport--marquee:hover .home-testimonials-slider__marquee-group {
  animation-play-state: paused;
}

.home-testimonials-slider__card {
  flex: 0 0 340px;
  max-width: 340px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-testimonials-slider__quote {
  position: relative;
  overflow: hidden;
  max-height: 160px;
  line-height: 1.6;
}

.home-testimonials-slider__quote::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

@keyframes balmTestimonialsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .home-testimonials-slider__card {
    flex: 0 0 300px;
    max-width: 300px;
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .home-testimonials-slider__card {
    flex: 0 0 82vw;
    max-width: 82vw;
    min-height: auto;
  }

  .home-testimonials-slider__quote {
    max-height: 140px;
  }
}

.tp-shaped-testimonials {
  padding: 90px 0;
  background: #f6f6f6;
  overflow: hidden;
}

.tp-shaped-testimonials__head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.tp-shaped-testimonials__stage {
  position: relative;
  min-height: 760px;
}

.tp-shape-card {
  position: absolute;
  background: #fff;
  border-radius: 24px;
  padding: 22px 22px 20px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
  color: #2f3137;
}

.tp-shape-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
}

.tp-shape-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #5b2cff, #d62bd8);
  flex-shrink: 0;
}

.tp-shape-card__meta strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.2;
  color: #202124;
}

.tp-shape-card__meta span {
  display: block;
  margin-top: 2px;
  font-size: 0.9rem;
  color: #6f7278;
}

.tp-shape-card__menu {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #4b4f56;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.tp-shape-card__starsRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.tp-shape-card__stars {
  color: #f4b400;
  letter-spacing: 1px;
  font-size: 1.05rem;
}

.tp-shape-card__time {
  font-size: 0.92rem;
  color: #6f7278;
}

.tp-shape-card__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #3a3d44;
}

.tp-shape-card__text mark {
  background: #eee78d;
  color: inherit;
  padding: 0 5px;
  border-radius: 4px;
}

/* shape */
.tp-shape-card--one {
  top: 60px;
  left: 0;
  width: 32%;
  transform: rotate(-1.6deg);
  z-index: 2;
}

.tp-shape-card--two {
  top: 0;
  left: 34%;
  width: 32%;
  transform: rotate(3deg);
  z-index: 3;
}

.tp-shape-card--three {
  top: 58px;
  right: 0;
  width: 32%;
  transform: rotate(-2deg);
  z-index: 2;
}

.tp-shape-card--four {
  top: 360px;
  left: 28%;
  width: 44%;
  transform: rotate(0deg);
  z-index: 1;
}

/* tablet */
@media (max-width: 1100px) {
  .tp-shaped-testimonials__stage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .tp-shape-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }
}

/* mobile */
@media (max-width: 680px) {
  .tp-shaped-testimonials {
    padding: 70px 0;
  }

  .tp-shaped-testimonials__stage {
    grid-template-columns: 1fr;
  }

  .tp-shape-card {
    border-radius: 20px;
    padding: 20px 18px;
  }

  .tp-shape-card__text {
    font-size: 0.95rem;
  }
}

.tp-shape-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ececec;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tp-shape-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-banner__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.about-banner__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  max-width: 720px;
}

.tp-shaped-testimonials__actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.tp-shaped-testimonials__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5b2cff 0%, #d62bd8 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 12px 30px rgba(106, 66, 194, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-shaped-testimonials__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(106, 66, 194, 0.28);
}

.tp-shaped-testimonials__actions {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.tp-shaped-testimonials__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5b2cff 0%, #d62bd8 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 12px 30px rgba(106, 66, 194, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-shaped-testimonials__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(106, 66, 194, 0.28);
}

.tp-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.tp-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-message {
  background: #f7f5f8;
  border: 3px solid #f0e3af;
  padding: 48px 32px;
}

.impact-message__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.impact-message__eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b14cff;
}

.impact-message__title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  font-weight: 800;
  color: #11182d;
  max-width: 700px;
}

.impact-message__text {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #5c6478;
  max-width: 680px;
}

.impact-message__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8a3ffc, #ff2abf);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(138, 63, 252, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.impact-message__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(138, 63, 252, 0.28);
}

.impact-message__media {
  display: flex;
  justify-content: center;
}

.impact-message__image {
  width: 100%;
  max-width: 420px;
  display: block;
  border-radius: 22px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .impact-message {
    padding: 32px 20px;
  }

  .impact-message__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .impact-message__media {
    order: -1;
  }

  .impact-message__image {
    max-width: 100%;
  }
}

.tp-video__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tp-videoCard {
  display: flex;
  flex-direction: column;
}

.tp-videoCard__poster {
  position: relative;
  width: 100%;
  height: 320px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: #111827;
  display: block;
}

.tp-videoCard__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tp-videoCard__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
}

.tp-videoCard__pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #111827;
  font-size: 12px;
  font-weight: 700;
}

.tp-videoCard__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

.tp-videoCard__overlayTitle {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.tp-videoCard__body {
  padding-top: 14px;
}

.tp-videoCard__body strong {
  display: block;
  margin-bottom: 6px;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
}

.tp-videoCard__body span {
  display: block;
  color: #667085;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .tp-video__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tp-video__grid {
    grid-template-columns: 1fr;
  }

  .tp-videoCard__poster {
    height: 280px;
  }
}


/* thumbnail wrapper */
.tp-shape-card__avatar,
.tp-videoCard__poster,
.thumbnail-frame {
  width: 100%;
  height: 260px; /* adjust if needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

/* image */
.tp-shape-card__avatar img,
.tp-videoCard__poster img,
.thumbnail-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}


/* TEXT TESTIMONIAL PROFILE IMAGES — keep small */
.tp-shape-card__avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.tp-shape-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* VIDEO THUMBNAILS — larger but controlled separately */
.tp-videoCard__poster {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 18px;
  display: block;
}

.tp-videoCard__poster img,
.tp-videoCard__poster iframe,
.tp-videoCard__poster video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* TOP ROW OF TEXT TESTIMONIAL CARD */
.tp-shape-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tp-shape-card__meta {
  flex: 1;
}

.tp-shape-card__meta strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.tp-shape-card__meta span {
  display: block;
  font-size: 13px;
  line-height: 1.4;
}

.ap-team {
  padding: 90px 0;
  background: #ffffff;
}

.ap-team__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.ap-team__title {
  margin: 10px 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: #231f20;
}

.ap-team__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5f5a5d;
}

.ap-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ap-team__card {
  background: #fff;
  border: 1px solid rgba(118, 2, 84, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(35, 31, 32, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ap-team__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(35, 31, 32, 0.12);
}

.ap-team__card--featured {
  grid-column: span 3;
  background: linear-gradient(135deg, #760254 0%, #5d025a 55%, #430175 100%);
  color: #fff;
  border: none;
}

.ap-team__card--featured .ap-team__role,
.ap-team__card--featured p,
.ap-team__card--featured h3,
.ap-team__card--featured .ap-team__links a {
  color: #fff;
}

.ap-team__content h3 {
  margin: 8px 0 12px;
  font-size: 1.4rem;
  color: #231f20;
}

.ap-team__role {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #760254;
}

.ap-team__content p {
  margin: 0 0 18px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5f5a5d;
}

.ap-team__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ap-team__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(118, 2, 84, 0.08);
  color: #760254;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ap-team__links a:hover {
  background: #760254;
  color: #fff;
}

@media (max-width: 991px) {
  .ap-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ap-team__card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .ap-team {
    padding: 70px 0;
  }

  .ap-team__grid {
    grid-template-columns: 1fr;
  }

  .ap-team__card--featured {
    grid-column: span 1;
  }

  .ap-team__card {
    padding: 22px;
  }
}

.tp-quoteBand {
  padding: 72px 0;
}

.tp-quoteBand__card {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 40px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  position: relative;
}

.tp-quoteBand__mark {
  font-size: 64px;
  line-height: 1;
  opacity: 0.12;
  margin-bottom: 8px;
}

.tp-quoteBand__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 400;
  color: #231f20;
  max-width: 900px;
}

.tp-quoteBand__by {
  margin: 18px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #760254;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .tp-quoteBand {
    padding: 56px 0;
  }

  .tp-quoteBand__card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .tp-quoteBand__mark {
    font-size: 46px;
    margin-bottom: 6px;
  }

  .tp-quoteBand__text {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .tp-quoteBand__by {
    font-size: 0.9rem;
    margin-top: 14px;
  }
}

.tp-quoteBand {
  padding: 72px 0;
}

.tp-quoteBand__card--testimonial {
  display: block;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 28px 34px;
  min-height: auto;
}

.tp-quoteBand__mark {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.18;
}

.tp-quoteBand__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 100%;
}

.tp-quoteBand__by {
  margin: 16px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .tp-quoteBand {
    padding: 56px 0;
  }

  .tp-quoteBand__card--testimonial {
    padding: 22px 20px;
  }

  .tp-quoteBand__mark {
    font-size: 42px;
    margin-bottom: 8px;
  }

  .tp-quoteBand__text {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .tp-quoteBand__by {
    margin-top: 14px;
    font-size: 0.9rem;
  }
}

.tp-quoteBand {
  padding: 72px 0;
}

.tp-quoteBand__card {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 38px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;

  /* SAME BRAND LOOK AS .ap-cta__card */
  background:
    radial-gradient(circle at top right, rgba(255, 79, 163, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(111, 56, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #1a1330, #281b49);

  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.tp-quoteBand__mark {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.22);
}

.tp-quoteBand__text {
  margin: 0;
  max-width: 100%;
  font-size: 0.98rem;
  line-height: 1.78;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.tp-quoteBand__by {
  margin: 16px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .tp-quoteBand {
    padding: 56px 0;
  }

  .tp-quoteBand__card {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .tp-quoteBand__mark {
    font-size: 42px;
    margin-bottom: 8px;
  }

  .tp-quoteBand__text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .tp-quoteBand__by {
    margin-top: 14px;
    font-size: 0.9rem;
  }
}

.tp-quoteBand__card {
  position: relative;
}

.tp-quoteBand__mark {
  position: absolute;
  top: 18px;
  right: 26px;
  font-size: 110px;
  line-height: 0.8;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
}

.tp-quoteBand__text {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 100%;
  font-size: 0.98rem;
  line-height: 1.78;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.tp-quoteBand__by {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 18px 0 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .tp-quoteBand__mark {
    top: 14px;
    right: 18px;
    font-size: 82px;
  }

  .tp-quoteBand__by {
    margin-top: 14px;
    padding: 9px 14px;
    font-size: 0.88rem;
  }
}

.tp-quoteBand__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tp-quoteBand__mark {
  position: absolute;
  top: 14px;
  left: 22px;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px;
  line-height: 0.75;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.16);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.tp-quoteBand__text,
.tp-quoteBand__by {
  position: relative;
  z-index: 1;
}

.tp-quoteBand__text {
  padding-top: 18px;
}

@media (max-width: 768px) {
  .tp-quoteBand__mark {
    top: 12px;
    left: 16px;
    font-size: 88px;
  }

  .tp-quoteBand__text {
    padding-top: 14px;
  }
}

.sp-anchor-nav {
  position: sticky;
  top: 80px; /* change this to your header height */
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tp-videoCard__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(0.92);
}

.about-banner__inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-banner__eyebrow{
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-banner__title{
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
}

.about-banner__subtitle{
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.ap-hero__text--lead{
  font-size: 1.08rem;
  font-weight: 600;
}

.ap-panel__eyebrow{
  margin: 0 0 18px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.ap-panel__closing{
  margin: 18px 0 0;
  font-weight: 600;
  line-height: 1.6;
}

.ap-fullStory{
  padding: 90px 0;
  background: #ffffff;
}

.ap-fullStory__wrap{
  max-width: 900px;
  margin: 0 auto;
}

.ap-fullStory .ap-eyebrow{
  margin-bottom: 14px;
}

.ap-fullStory .ap-section-title{
  margin-bottom: 28px;
  max-width: 820px;
}

.ap-fullStory__content{
  display: grid;
  gap: 18px;
}

.ap-fullStory__content p{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #2a2a2a;
}

@media (max-width: 768px){
  .ap-fullStory{
    padding: 70px 0;
  }

  .ap-fullStory__content p{
    font-size: 1rem;
    line-height: 1.8;
  }
}

.nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
}

.nav__dropdown-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #990053, #430175);
  box-shadow: 0 0 0 4px rgba(153, 0, 83, 0.12);
  flex-shrink: 0;
}

.nav__dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.nav__item--dropdown.is-open .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__item--dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  text-decoration: none;
  color: #231f20;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.nav__dropdown-link:hover {
  background: linear-gradient(135deg, rgba(153, 0, 83, 0.08), rgba(67, 1, 117, 0.08));
  color: #760254;
  transform: translateX(2px);
}

@media (max-width: 991px) {
  .nav__item--dropdown {
    width: 100%;
    display: block;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav__dropdown-menu::before {
    display: none;
  }

  .nav__item--dropdown.is-open .nav__dropdown-menu {
    display: block;
    transform: none;
  }
}

.nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
}

.nav__dropdown-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #990053, #430175);
  box-shadow: 0 0 0 4px rgba(153, 0, 83, 0.12);
  flex-shrink: 0;
}

.nav__dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.nav__item--dropdown.is-open .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 290px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__item--dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  text-decoration: none;
  color: #231f20;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.nav__dropdown-link:hover,
.nav__dropdown-link.is-current {
  background: linear-gradient(135deg, rgba(153, 0, 83, 0.08), rgba(67, 1, 117, 0.08));
  color: #760254;
  transform: translateX(2px);
}

.mic-page {
  background:
    radial-gradient(circle at top left, rgba(153, 0, 83, 0.07), transparent 30%),
    radial-gradient(circle at top right, rgba(67, 1, 117, 0.10), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fcf8fd 100%);
}

.mic-eyebrow,
.mic-section-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #760254;
}

.mic-section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #231f20;
}

.mic-section-copy {
  margin: 0;
  max-width: 720px;
  color: rgba(35, 31, 32, 0.76);
  font-size: 1.02rem;
  line-height: 1.75;
}

.mic-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 42px;
}

.mic-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #430175 0%, #760254 45%, #990053 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mic-hero::before,
.mic-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.25;
}

.mic-hero::before {
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.14);
  top: -60px;
  right: -40px;
}

.mic-hero::after {
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.1);
  bottom: -50px;
  left: 8%;
}

.mic-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.mic-hero__title {
  margin: 0 0 16px;
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #fff;
}

.mic-hero__lead {
  margin: 0;
  max-width: 700px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
}

.mic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.mic-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.mic-stat {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
}

.mic-stat strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.mic-stat span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}

.mic-hero__visual {
  display: flex;
  justify-content: flex-end;
}

.mic-heroCard {
  width: 100%;
  max-width: 430px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(20, 6, 29, 0.28);
}

.mic-heroCard__tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.mic-heroCard h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
  line-height: 1.15;
  color: #fff;
}

.mic-heroCard p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
}

.mic-intro {
  padding: 64px 0 30px;
}

.mic-intro__wrap {
  max-width: 950px;
  text-align: center;
}

.mic-intro__wrap p {
  margin: 0 0 18px;
  color: rgba(35, 31, 32, 0.82);
  font-size: 1.08rem;
  line-height: 1.95;
}

.mic-story,
.mic-matters,
.mic-qualities,
.mic-honorees,
.mic-ctaBand {
  padding: 78px 0;
}

.mic-story__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.mic-story__content p {
  color: rgba(35, 31, 32, 0.82);
  line-height: 1.9;
  margin: 0 0 18px;
}

.mic-story__panel {
  position: sticky;
  top: 110px;
}

.mic-quoteCard {
  position: relative;
  padding: 34px 28px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fbf2fb 100%);
  border: 1px solid rgba(118, 2, 84, 0.1);
  box-shadow: 0 20px 45px rgba(67, 1, 117, 0.08);
}

.mic-quoteCard__mark {
  font-size: 4rem;
  line-height: 1;
  color: #990053;
  display: block;
  margin-bottom: 12px;
}

.mic-quoteCard p {
  margin: 0 0 16px;
  font-size: 1.25rem;
  line-height: 1.55;
  color: #231f20;
  font-weight: 600;
}

.mic-quoteCard strong {
  color: #760254;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mic-cardGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mic-infoCard {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(118, 2, 84, 0.08);
  box-shadow: 0 16px 34px rgba(67, 1, 117, 0.06);
}

.mic-infoCard h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #231f20;
}

.mic-infoCard p {
  margin: 0;
  color: rgba(35, 31, 32, 0.74);
  line-height: 1.7;
}

.mic-qualities__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

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

.mic-checkItem {
  position: relative;
  padding: 20px 18px 20px 54px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(153, 0, 83, 0.05), rgba(67, 1, 117, 0.04));
  border: 1px solid rgba(118, 2, 84, 0.08);
  color: #231f20;
  font-weight: 600;
  line-height: 1.6;
}

.mic-checkItem::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #760254, #430175);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.mic-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mic-honoreeCard {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(67, 1, 117, 0.08);
  border: 1px solid rgba(118, 2, 84, 0.08);
  min-height: 340px;
}

.mic-honoreeCard img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.mic-honoreeCard:hover img {
  transform: scale(1.03);
}

.mic-ctaBand__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #231f20 0%, #430175 45%, #760254 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(67, 1, 117, 0.18);
}

.mic-ctaBand__card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: #fff;
}

.mic-ctaBand__card p {
  margin: 0;
  max-width: 720px;
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
}

.mic-ctaBand__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

@media (max-width: 1100px) {
  .mic-hero__inner,
  .mic-story__grid,
  .mic-qualities__grid,
  .mic-ctaBand__card {
    grid-template-columns: 1fr;
  }

  .mic-story__panel {
    position: static;
  }

  .mic-cardGrid,
  .mic-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mic-hero__visual {
    justify-content: flex-start;
  }

  .mic-ctaBand__actions {
    min-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .nav__item--dropdown {
    width: 100%;
    display: block;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav__dropdown-menu::before {
    display: none;
  }

  .nav__item--dropdown.is-open .nav__dropdown-menu {
    display: block;
    transform: none;
  }
}

@media (max-width: 768px) {
  .mic-hero {
    padding: 95px 0 60px;
  }

  .mic-hero__stats,
  .mic-cardGrid,
  .mic-checkGrid,
  .mic-gallery {
    grid-template-columns: 1fr;
  }

  .mic-story,
  .mic-matters,
  .mic-qualities,
  .mic-honorees,
  .mic-ctaBand {
    padding: 62px 0;
  }

  .mic-heroCard,
  .mic-infoCard,
  .mic-honoreeCard,
  .mic-ctaBand__card {
    border-radius: 22px;
  }

  .mic-honoreeCard,
  .mic-honoreeCard img {
    min-height: 280px;
  }
}

.nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
}

.nav__dropdown-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #990053, #430175);
  box-shadow: 0 0 0 4px rgba(153, 0, 83, 0.12);
  flex-shrink: 0;
}

.nav__dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.nav__item--dropdown.is-open .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 290px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__item--dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  text-decoration: none;
  color: #231f20;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.nav__dropdown-link:hover,
.nav__dropdown-link.is-current {
  background: linear-gradient(135deg, rgba(153, 0, 83, 0.08), rgba(67, 1, 117, 0.08));
  color: #760254;
  transform: translateX(2px);
}

.bnc-page {
  background:
    radial-gradient(circle at top left, rgba(153, 0, 83, 0.07), transparent 28%),
    radial-gradient(circle at top right, rgba(67, 1, 117, 0.09), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fcf8fd 100%);
}

.bnc-eyebrow,
.bnc-section-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #760254;
}

.bnc-section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #231f20;
}

.bnc-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
}

.bnc-hero {
  padding: 120px 0 84px;
  background: linear-gradient(135deg, #231f20 0%, #430175 45%, #990053 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.bnc-hero::before,
.bnc-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.22;
  filter: blur(10px);
}

.bnc-hero::before {
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.12);
  top: -60px;
  right: -50px;
}

.bnc-hero::after {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  left: 7%;
  bottom: -55px;
}

.bnc-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.bnc-hero__title {
  margin: 0 0 10px;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
}

.bnc-hero__subtitle {
  margin: 0 0 18px;
  font-size: 1.3rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  max-width: 720px;
}

.bnc-hero__lead {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.82;
  font-size: 1.03rem;
  max-width: 720px;
}

.bnc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.bnc-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bnc-hero__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.bnc-photoStack {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 18px;
  align-items: stretch;
}

.bnc-photoStack__side {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.bnc-photoCard {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(20, 6, 29, 0.22);
}

.bnc-photoCard img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  object-fit: cover;
}

.bnc-photoCard--large {
  min-height: 520px;
}

.bnc-photoCard--small {
  min-height: 250px;
}

.bnc-statCard {
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(20, 6, 29, 0.18);
}

.bnc-statCard strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}

.bnc-statCard span {
  display: block;
  color: rgba(255,255,255,0.86);
  line-height: 1.65;
}

.bnc-why,
.bnc-topics,
.bnc-formatAudience,
.bnc-outcomes,
.bnc-shift,
.bnc-authority,
.bnc-upgrade,
.bnc-ctaBand {
  padding: 80px 0;
}

.bnc-why__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.bnc-why__photos {
  display: grid;
  gap: 20px;
}

.bnc-whyPhoto {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  min-height: 250px;
  border: 1px solid rgba(118, 2, 84, 0.08);
  box-shadow: 0 18px 42px rgba(67, 1, 117, 0.08);
}

.bnc-whyPhoto img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  object-fit: cover;
}

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

.bnc-infoCard,
.bnc-listCard,
.bnc-topicCard,
.bnc-upgradeCard {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(118, 2, 84, 0.08);
  box-shadow: 0 16px 34px rgba(67, 1, 117, 0.06);
}

.bnc-infoCard h3,
.bnc-upgradeCard h3,
.bnc-topicCard h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #231f20;
}

.bnc-infoCard p,
.bnc-upgradeCard p,
.bnc-topicCard p {
  margin: 0;
  color: rgba(35, 31, 32, 0.74);
  line-height: 1.72;
}

.bnc-topicGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.bnc-topicCard__number {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #760254;
}

.bnc-topicCard__tag {
  margin: 0 0 10px;
  color: #990053 !important;
  font-weight: 700;
}

.bnc-formatAudience__grid,
.bnc-authority__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bnc-listCard .bnc-section-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.bnc-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.bnc-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(35, 31, 32, 0.82);
  line-height: 1.7;
  font-weight: 600;
}

.bnc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #760254, #430175);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.bnc-outcomeCard {
  padding: 22px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(153, 0, 83, 0.05), rgba(67, 1, 117, 0.04));
  border: 1px solid rgba(118, 2, 84, 0.08);
  color: #231f20;
  font-weight: 700;
  line-height: 1.58;
  text-align: center;
}

.bnc-shift__card,
.bnc-ctaBand__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #231f20 0%, #430175 45%, #760254 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(67, 1, 117, 0.16);
}

.bnc-shift__card h2,
.bnc-ctaBand__card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: #fff;
}

.bnc-shift__card p,
.bnc-ctaBand__card p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
}

.bnc-shift__list {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.bnc-shiftItem {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
}

.bnc-upgradeGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.bnc-ctaBand__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 250px;
}

@media (max-width: 1180px) {
  .bnc-hero__inner,
  .bnc-why__grid,
  .bnc-shift__card,
  .bnc-ctaBand__card,
  .bnc-formatAudience__grid,
  .bnc-authority__grid {
    grid-template-columns: 1fr;
  }

  .bnc-topicGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bnc-upgradeGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bnc-outcomeGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bnc-ctaBand__actions {
    min-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .nav__item--dropdown {
    width: 100%;
    display: block;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav__dropdown-menu::before {
    display: none;
  }

  .nav__item--dropdown.is-open .nav__dropdown-menu {
    display: block;
    transform: none;
  }
}

@media (max-width: 768px) {
  .bnc-hero {
    padding: 95px 0 60px;
  }

  .bnc-photoStack,
  .bnc-cardGrid,
  .bnc-topicGrid,
  .bnc-upgradeGrid,
  .bnc-outcomeGrid {
    grid-template-columns: 1fr;
  }

  .bnc-photoStack__side {
    grid-template-rows: auto;
  }

  .bnc-photoCard--large,
  .bnc-photoCard--small,
  .bnc-whyPhoto {
    min-height: 280px;
  }

  .bnc-why,
  .bnc-topics,
  .bnc-formatAudience,
  .bnc-outcomes,
  .bnc-shift,
  .bnc-authority,
  .bnc-upgrade,
  .bnc-ctaBand {
    padding: 62px 0;
  }

  .bnc-infoCard,
  .bnc-listCard,
  .bnc-topicCard,
  .bnc-upgradeCard,
  .bnc-shift__card,
  .bnc-ctaBand__card {
    border-radius: 22px;
  }
}

.nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
}

.nav__dropdown-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #990053, #430175);
  box-shadow: 0 0 0 4px rgba(153, 0, 83, 0.12);
  flex-shrink: 0;
}

.nav__dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.nav__item--dropdown.is-open .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 290px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__item--dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  text-decoration: none;
  color: #231f20;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.nav__dropdown-link:hover,
.nav__dropdown-link.is-current {
  background: linear-gradient(135deg, rgba(153, 0, 83, 0.08), rgba(67, 1, 117, 0.08));
  color: #760254;
  transform: translateX(2px);
}

.bgs-page {
  background:
    radial-gradient(circle at top left, rgba(153, 0, 83, 0.07), transparent 30%),
    radial-gradient(circle at top right, rgba(67, 1, 117, 0.09), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fcf8fd 100%);
}

.bgs-eyebrow,
.bgs-section-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #760254;
}

.bgs-section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #231f20;
}

.bgs-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
}

.bgs-hero {
  padding: 120px 0 84px;
  background: linear-gradient(135deg, #231f20 0%, #430175 45%, #990053 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bgs-hero::before,
.bgs-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.22;
  filter: blur(10px);
}

.bgs-hero::before {
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.12);
  top: -60px;
  right: -50px;
}

.bgs-hero::after {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  left: 7%;
  bottom: -55px;
}

.bgs-hero__inner {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 38px;
  align-items: center;
}

.bgs-hero__title {
  margin: 0 0 10px;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
}

.bgs-hero__subtitle {
  margin: 0 0 18px;
  font-size: 1.3rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  max-width: 700px;
}

.bgs-hero__lead {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.82;
  font-size: 1.03rem;
  max-width: 720px;
}

.bgs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.bgs-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bgs-hero__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.bgs-photoStack {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 18px;
  align-items: stretch;
}

.bgs-photoStack__side {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
}

.bgs-photoCard {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(20, 6, 29, 0.22);
}

.bgs-photoCard img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bgs-photoCard--large {
  min-height: 520px;
}

.bgs-photoCard--small {
  min-height: 250px;
}

.bgs-statCard {
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(20, 6, 29, 0.18);
}

.bgs-statCard strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}

.bgs-statCard span {
  display: block;
  color: rgba(255,255,255,0.86);
  line-height: 1.65;
}

.bgs-uses,
.bgs-why,
.bgs-included,
.bgs-rentals,
.bgs-addons,
.bgs-experience,
.bgs-location,
.bgs-ctaBand {
  padding: 80px 0;
}

.bgs-gridCards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.bgs-card,
.bgs-panelCard,
.bgs-rentalCard {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(118, 2, 84, 0.08);
  box-shadow: 0 16px 34px rgba(67, 1, 117, 0.06);
}

.bgs-card h3,
.bgs-rentalCard h3,
.bgs-listItem h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #231f20;
}

.bgs-card p,
.bgs-rentalCard p,
.bgs-listItem p {
  margin: 0;
  color: rgba(35, 31, 32, 0.74);
  line-height: 1.72;
}

.bgs-why__grid,
.bgs-location__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.bgs-listGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.bgs-listItem {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(153, 0, 83, 0.05), rgba(67, 1, 117, 0.04));
  border: 1px solid rgba(118, 2, 84, 0.08);
}

.bgs-whyPhoto {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  min-height: 420px;
  border: 1px solid rgba(118, 2, 84, 0.08);
  box-shadow: 0 18px 42px rgba(67, 1, 117, 0.08);
}

.bgs-whyPhoto img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

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

.bgs-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.bgs-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(35, 31, 32, 0.82);
  line-height: 1.7;
  font-weight: 600;
}

.bgs-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #760254, #430175);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.bgs-rentalGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.bgs-rentalCard__tag {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #760254;
  text-transform: uppercase;
}

.bgs-experience__card,
.bgs-ctaBand__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #231f20 0%, #430175 45%, #760254 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(67, 1, 117, 0.16);
}

.bgs-experience__card h2,
.bgs-ctaBand__card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: #fff;
}

.bgs-experience__card p,
.bgs-ctaBand__card p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
}

.bgs-experience__points {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.bgs-experienceItem {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
}

.bgs-location__address {
  margin: 0 0 16px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #231f20;
  font-weight: 700;
}

.bgs-location__text {
  margin: 0;
  color: rgba(35, 31, 32, 0.74);
  line-height: 1.8;
  max-width: 620px;
}

.bgs-ctaBand__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
}

@media (max-width: 1180px) {
  .bgs-hero__inner,
  .bgs-why__grid,
  .bgs-location__grid,
  .bgs-twoCol,
  .bgs-experience__card,
  .bgs-ctaBand__card {
    grid-template-columns: 1fr;
  }

  .bgs-gridCards,
  .bgs-rentalGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bgs-ctaBand__actions {
    min-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .nav__item--dropdown {
    width: 100%;
    display: block;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav__dropdown-menu::before {
    display: none;
  }

  .nav__item--dropdown.is-open .nav__dropdown-menu {
    display: block;
    transform: none;
  }
}

@media (max-width: 768px) {
  .bgs-hero {
    padding: 95px 0 60px;
  }

  .bgs-photoStack,
  .bgs-gridCards,
  .bgs-listGrid,
  .bgs-rentalGrid {
    grid-template-columns: 1fr;
  }

  .bgs-photoStack__side {
    grid-template-rows: auto;
  }

  .bgs-photoCard--large,
  .bgs-photoCard--small,
  .bgs-whyPhoto,
  .bgs-whyPhoto img {
    min-height: 280px;
  }

  .bgs-uses,
  .bgs-why,
  .bgs-included,
  .bgs-rentals,
  .bgs-addons,
  .bgs-experience,
  .bgs-location,
  .bgs-ctaBand {
    padding: 62px 0;
  }

  .bgs-card,
  .bgs-panelCard,
  .bgs-rentalCard,
  .bgs-experience__card,
  .bgs-ctaBand__card {
    border-radius: 22px;
  }
}

.nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
}

.nav__dropdown-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #990053, #430175);
  box-shadow: 0 0 0 4px rgba(153, 0, 83, 0.12);
  flex-shrink: 0;
}

.nav__dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.nav__item--dropdown.is-open .nav__dropdown-arrow {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 290px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__item--dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  text-decoration: none;
  color: #231f20;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.nav__dropdown-link:hover,
.nav__dropdown-link.is-current {
  background: linear-gradient(135deg, rgba(153, 0, 83, 0.08), rgba(67, 1, 117, 0.08));
  color: #760254;
  transform: translateX(2px);
}

.ps-page {
  background:
    radial-gradient(circle at top left, rgba(153, 0, 83, 0.07), transparent 30%),
    radial-gradient(circle at top right, rgba(67, 1, 117, 0.09), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fcf8fd 100%);
}

.ps-eyebrow,
.ps-section-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #760254;
}

.ps-section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #231f20;
}

.ps-heading {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 42px;
}

.ps-hero {
  padding: 120px 0 84px;
  background: linear-gradient(135deg, #231f20 0%, #430175 45%, #990053 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ps-hero::before,
.ps-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.22;
  filter: blur(10px);
}

.ps-hero::before {
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.12);
  top: -60px;
  right: -50px;
}

.ps-hero::after {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  left: 7%;
  bottom: -55px;
}

.ps-hero__inner {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 36px;
  align-items: center;
}

.ps-hero__title {
  margin: 0 0 12px;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
}

.ps-hero__lead {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.95);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.6;
}

.ps-hero__text {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.82;
  font-size: 1.03rem;
  max-width: 720px;
}

.ps-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.ps-highlightCard {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(20, 6, 29, 0.22);
  backdrop-filter: blur(10px);
}

.ps-highlightCard__tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.ps-highlightCard h2 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  line-height: 1.15;
  color: #fff;
}

.ps-highlightCard p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
}

.ps-partners,
.ps-why,
.ps-network,
.ps-sponsor,
.ps-ctaBand {
  padding: 80px 0;
}

.ps-cardGrid {
  display: grid;
  gap: 24px;
}

.ps-partnerCard {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(118, 2, 84, 0.08);
  box-shadow: 0 18px 42px rgba(67, 1, 117, 0.08);
}

.ps-partnerCard__media {
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(153, 0, 83, 0.08), rgba(67, 1, 117, 0.05));
}

.ps-partnerCard__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.ps-partnerCard__label {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #760254;
}

.ps-partnerCard h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.18;
  color: #231f20;
}

.ps-partnerCard__role {
  margin: 0 0 16px;
  color: #990053;
  font-weight: 700;
  line-height: 1.6;
}

.ps-partnerCard p {
  margin: 0 0 14px;
  color: rgba(35, 31, 32, 0.78);
  line-height: 1.82;
}

.ps-impactBox {
  padding: 16px 18px;
  margin-top: 6px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(153, 0, 83, 0.05), rgba(67, 1, 117, 0.04));
  border: 1px solid rgba(118, 2, 84, 0.08);
}

.ps-impactBox strong {
  display: block;
  margin-bottom: 6px;
  color: #231f20;
}

.ps-impactBox span {
  color: rgba(35, 31, 32, 0.76);
  line-height: 1.7;
}

.ps-linkBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #760254;
  font-weight: 700;
  background: rgba(153, 0, 83, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.ps-linkBtn:hover {
  transform: translateY(-2px);
  background: rgba(153, 0, 83, 0.12);
}

.ps-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.ps-pillar {
  padding: 22px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(118, 2, 84, 0.08);
  box-shadow: 0 16px 34px rgba(67, 1, 117, 0.06);
  color: #231f20;
  font-weight: 700;
  line-height: 1.58;
  text-align: center;
}

.ps-messageCard {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(153, 0, 83, 0.05), rgba(67, 1, 117, 0.04));
  border: 1px solid rgba(118, 2, 84, 0.08);
  text-align: center;
}

.ps-messageCard p {
  margin: 0;
  color: rgba(35, 31, 32, 0.78);
  line-height: 1.8;
  font-size: 1.04rem;
}

.ps-network__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.ps-network__text {
  margin: 0;
  color: rgba(35, 31, 32, 0.78);
  line-height: 1.82;
  font-size: 1.02rem;
}

.ps-checkGrid {
  display: grid;
  gap: 16px;
}

.ps-checkItem {
  position: relative;
  padding: 20px 18px 20px 54px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(118, 2, 84, 0.08);
  box-shadow: 0 16px 34px rgba(67, 1, 117, 0.06);
  color: #231f20;
  font-weight: 700;
  line-height: 1.6;
}

.ps-checkItem::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #760254, #430175);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.ps-sponsor__card,
.ps-ctaBand__card {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #231f20 0%, #430175 45%, #760254 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(67, 1, 117, 0.16);
}

.ps-sponsor__copy h2,
.ps-ctaBand__card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: #fff;
}

.ps-sponsor__copy p,
.ps-ctaBand__card p {
  margin: 0 0 14px;
  max-width: 760px;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
}

.ps-sponsor__tagline {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}

.ps-sponsor__media {
  overflow: hidden;
  border-radius: 24px;
  min-height: 320px;
  background: rgba(255,255,255,0.12);
}

.ps-sponsor__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.ps-ctaBand__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

@media (max-width: 1180px) {
  .ps-hero__inner,
  .ps-network__grid,
  .ps-sponsor__card,
  .ps-ctaBand__card,
  .ps-partnerCard {
    grid-template-columns: 1fr;
  }

  .ps-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ps-ctaBand__actions {
    min-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .nav__item--dropdown {
    width: 100%;
    display: block;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav__dropdown-menu::before {
    display: none;
  }

  .nav__item--dropdown.is-open .nav__dropdown-menu {
    display: block;
    transform: none;
  }
}

@media (max-width: 768px) {
  .ps-hero {
    padding: 95px 0 60px;
  }

  .ps-partners,
  .ps-why,
  .ps-network,
  .ps-sponsor,
  .ps-ctaBand {
    padding: 62px 0;
  }

  .ps-pillars {
    grid-template-columns: 1fr;
  }

  .ps-partnerCard,
  .ps-sponsor__card,
  .ps-ctaBand__card {
    border-radius: 22px;
  }

  .ps-partnerCard__media,
  .ps-partnerCard__media img,
  .ps-sponsor__media,
  .ps-sponsor__media img {
    min-height: 280px;
  }
}

.nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
}

.nav__dropdown-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #990053, #430175);
  box-shadow: 0 0 0 4px rgba(153, 0, 83, 0.12);
  flex-shrink: 0;
}

.nav__dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.28s ease;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  min-width: 290px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  z-index: 999;
}

.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__dropdown-link {
  display: block;
  text-decoration: none;
  color: #231f20;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 16px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.nav__dropdown-link:hover,
.nav__dropdown-link.is-current {
  background: linear-gradient(135deg, rgba(153, 0, 83, 0.08), rgba(67, 1, 117, 0.08));
  color: #760254;
  transform: translateX(2px);
}

/* desktop hover drop */
@media (min-width: 992px) {
  .nav__item--dropdown:hover .nav__dropdown-menu,
  .nav__item--dropdown:focus-within .nav__dropdown-menu,
  .nav__item--dropdown.is-open .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav__item--dropdown:hover .nav__dropdown-arrow,
  .nav__item--dropdown:focus-within .nav__dropdown-arrow,
  .nav__item--dropdown.is-open .nav__dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* mobile click drop */
@media (max-width: 991px) {
  .nav__item--dropdown {
    width: 100%;
    display: block;
  }

  .nav__dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
  }

  .nav__dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    margin-top: 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav__dropdown-menu::before {
    display: none;
  }

  .nav__item--dropdown.is-open .nav__dropdown-menu {
    display: block;
    transform: none;
  }

  .nav__item--dropdown.is-open .nav__dropdown-arrow {
    transform: rotate(180deg);
  }
}

.ps-partnerCard__media--split {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ps-partnerCard__circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 140px;
}

.ps-partnerCard__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-partnerCard__media--split {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.ps-partnerCard__circle {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 210px;
}

.ps-partnerCard__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ps-partnerCard__media--split {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 32px 20px;
}

.ps-partnerCard__circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}

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

.mic-sliderWrap {
  position: relative;
  margin-top: 40px;
}

.mic-gallery--slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 4px 24px;
  scrollbar-width: none;
}

.mic-gallery--slider::-webkit-scrollbar {
  display: none;
}

.mic-honoreeCard {
  flex: 0 0 310px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mic-honoreeCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
}

.mic-honoreeCard img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.mic-honoreeInfo {
  padding: 22px;
  text-align: center;
}

.mic-honoreeInfo h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #231f20;
}

.mic-honoreeInfo p {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.mic-honoreeBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  background: #760254;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s ease;
}

.mic-honoreeBtn:hover {
  background: #990053;
  transform: translateY(-2px);
}

.mic-sliderBtn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #760254;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, transform 0.3s ease;
}

.mic-sliderBtn:hover {
  background: #990053;
  transform: translateY(-50%) scale(1.06);
}

.mic-sliderBtn--left {
  left: -20px;
}

.mic-sliderBtn--right {
  right: -20px;
}

@media (max-width: 768px) {
  .mic-honoreeCard {
    flex: 0 0 82%;
  }

  .mic-honoreeCard img {
    height: 300px;
  }

  .mic-sliderBtn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .mic-sliderBtn--left {
    left: 4px;
  }

  .mic-sliderBtn--right {
    right: 4px;
  }
}

.mic-hero__visual {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mic-heroPhoto {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(35, 31, 32, 0.12);
}

.mic-heroPhoto img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .mic-heroPhoto img {
    height: 280px;
  }
}

.bgs-grandOpening {
  padding: 90px 0;
  background: #fff;
}

.bgs-grandOpening__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.bgs-grandOpening__copy {
  max-width: 520px;
}

.bgs-grandOpening__copy p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.bgs-section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin: 0;
  color: #231f20;
}

.bgs-grandOpening__media {
  width: 100%;
}

.bgs-videoCard {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.bgs-videoThumb,
.bgs-videoFrame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bgs-videoThumb {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  display: block;
}

.bgs-videoThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bgs-videoThumb__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 48%, rgba(0,0,0,0.18) 100%);
}

.bgs-videoThumb__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
  text-align: left;
}

.bgs-videoThumb__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bgs-videoThumb__content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  font-weight: 700;
}

.bgs-videoThumb__content p {
  margin: 0;
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.bgs-videoThumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 3;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, background 0.25s ease;
}

.bgs-videoThumb:hover .bgs-videoThumb__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255,255,255,0.24);
}

.bgs-videoThumb__play svg {
  width: 34px;
  height: 34px;
  margin-left: 3px;
}

.bgs-videoFrame {
  display: none;
  background: #000;
}

.bgs-videoFrame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.bgs-videoCard.is-playing .bgs-videoThumb {
  display: none;
}

.bgs-videoCard.is-playing .bgs-videoFrame {
  display: block;
}

@media (max-width: 900px) {
  .bgs-grandOpening {
    padding: 70px 0;
  }

  .bgs-grandOpening__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bgs-grandOpening__copy {
    max-width: 100%;
    text-align: center;
  }

  .bgs-videoThumb__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .bgs-videoThumb__play {
    width: 72px;
    height: 72px;
  }

  .bgs-videoThumb__content h3 {
    font-size: 1.35rem;
  }

  .bgs-videoThumb__content p {
    font-size: 0.95rem;
  }
}

.bgs-grandOpening {
  padding: 90px 0;
  background: #fff;
}

.bgs-grandOpening__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.bgs-grandOpening__copy {
  max-width: 520px;
}

.bgs-grandOpening__copy p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.bgs-section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin: 0;
  color: #231f20;
}

.bgs-grandOpening__media {
  width: 100%;
}

.bgs-videoCard {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.bgs-videoThumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  display: block;
  z-index: 10;
  pointer-events: auto;
}

.bgs-videoThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bgs-videoThumb__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.28) 48%,
      rgba(0, 0, 0, 0.12) 100%
    );
  z-index: 1;
}

.bgs-videoThumb__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
  text-align: left;
}

.bgs-videoThumb__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bgs-videoThumb__content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  font-weight: 700;
}

.bgs-videoThumb__content p {
  margin: 0;
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.bgs-videoThumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, background 0.25s ease;
}

.bgs-videoThumb:hover .bgs-videoThumb__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.24);
}

.bgs-videoThumb__play svg {
  width: 34px;
  height: 34px;
  margin-left: 3px;
}

.bgs-videoIframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

@media (max-width: 900px) {
  .bgs-grandOpening {
    padding: 70px 0;
  }

  .bgs-grandOpening__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bgs-grandOpening__copy {
    max-width: 100%;
    text-align: center;
  }

  .bgs-videoThumb__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .bgs-videoThumb__play {
    width: 72px;
    height: 72px;
  }

  .bgs-videoThumb__content h3 {
    font-size: 1.35rem;
  }

  .bgs-videoThumb__content p {
    font-size: 0.95rem;
  }
}

.bgs-whyPhoto {
  height: 480px;
  overflow: hidden;
}

.bgs-whyPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bgs-gridCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (min-width: 901px) {
  .bgs-gridCards .bgs-card:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 900px) {
  .bgs-gridCards {
    grid-template-columns: 1fr;
  }

  .bgs-gridCards .bgs-card:last-child {
    grid-column: auto;
  }
}

.mic-socialLink {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #760254;
  color: #fff;
  text-decoration: none;
  margin-top: 14px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.mic-socialLink:hover {
  transform: translateY(-3px);
  background: #990053;
}

.mic-socialLink svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mic-socialLink--website {
  background: #231f20;
}

.mic-socialLink--youtube {
  background: #cc0000;
}

.mic-socialLink--instagram {
  background: #990053;
}

.mic-noSocial {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(35, 31, 32, 0.58);
}

.speakerKitModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.speakerKitModal.is-open {
  display: block;
}

.speakerKitModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.speakerKitModal__box {
  position: relative;
  z-index: 2;
  width: min(92%, 520px);
  margin: 8vh auto;
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.speakerKitModal__box h2 {
  margin: 0 0 14px;
  color: #231f20;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.1;
}

.speakerKitModal__box p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.speakerKitModal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #f3f3f3;
  color: #231f20;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.speakerKitForm {
  display: grid;
  gap: 16px;
}

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

.speakerKitForm__group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #231f20;
}

.speakerKitForm__group input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(35, 31, 32, 0.16);
  border-radius: 14px;
  font-size: 0.95rem;
  color: #231f20;
  background: #fff;
  outline: none;
  font-family: inherit;
}

.speakerKitForm__group input:focus {
  border-color: #990053;
  box-shadow: 0 0 0 4px rgba(153, 0, 83, 0.1);
}

.speakerKitForm__submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  border: none;
  cursor: pointer;
}

.speakerKitForm__note {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  text-align: center;
}

@media (max-width: 600px) {
  .speakerKitModal__box {
    padding: 28px 20px;
    margin: 6vh auto;
  }
}

.wwbg-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.wwbg-action-row .learn {
  width: fit-content;
}

.wwbg-video-link {
  background: transparent;
  border: 1px solid currentColor;
}

/* Center Testimonials Page Hero Text */
.page-hero-banner--testimonials .page-hero-banner__glass {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-banner--testimonials .page-hero-banner__title,
.page-hero-banner--testimonials .page-hero-banner__text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-banner--testimonials .page-hero-banner__text {
  max-width: 760px;
}

.sp-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.sp-card-actions .sp-inline-link {
  width: fit-content;
}

.bgs-plan-build {
  padding: 90px 0;
  background: #fff;
}

.bgs-plan-build__heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.bgs-plan-build__heading h2 {
  margin: 10px 0 16px;
}

.bgs-plan-build__heading p {
  max-width: 720px;
  margin: 0 auto;
}

.bgs-plan-build__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.bgs-plan-build__card {
  padding: 34px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(35, 31, 32, 0.12);
  box-shadow: 0 18px 45px rgba(35, 31, 32, 0.08);
}

.bgs-plan-build__card--highlight {
  background: linear-gradient(135deg, rgba(153, 0, 83, 0.08), rgba(67, 1, 117, 0.08));
  border-color: rgba(153, 0, 83, 0.22);
}

.bgs-plan-build__label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #990053;
  background: rgba(153, 0, 83, 0.1);
}

.bgs-plan-build__card h3 {
  margin: 0 0 18px;
}

.bgs-plan-build__card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.bgs-plan-build__card li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(35, 31, 32, 0.04);
  font-weight: 600;
}

@media (max-width: 820px) {
  .bgs-plan-build {
    padding: 70px 0;
  }

  .bgs-plan-build__grid {
    grid-template-columns: 1fr;
  }

  .bgs-plan-build__card {
    padding: 28px;
  }
}

html {
  scroll-behavior: smooth;
}

.ps-hero__actions {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

.ps-hero__actions a {
  position: relative;
  z-index: 21;
  pointer-events: auto;
}

/* If your hero has an overlay, this stops it from blocking the buttons */
.ps-hero__overlay,
.ps-hero-overlay,
.page-hero__overlay {
  pointer-events: none;
}