/* ============================================================

   ============================================================ */

/* ---- Design Tokens ------------------------------------------------ */
:root {
  /* Purple palette — Loveworld Lifesavers / conference aesthetic */
  --p1: #7b3fa0;
  --p2: #5e2e80;
  --p3: #4a2265;
  --p4: #a96dcc;
  --p5: #f5eeff;
  --p6: #f8f0ff;

  /* Core brand palette */
  --primary: #5e2e80;
  --primary-dark: #1a0a2e;
  --primary-mid: #4a2265;
  --secondary: #7b3fa0;
  --secondary-dk: #5e2e80;
  --gold: #f4b63f;
  --gold-soft: #ffd166;
  --gold-deep: #c8941f;
  --danger: #e85d04;

  /* Alias tokens */
  --blue-50: rgba(123, 63, 160, 0.08);
  --blue-100: rgba(123, 63, 160, 0.14);
  --blue-200: rgba(123, 63, 160, 0.25);
  --blue-300: rgba(123, 63, 160, 0.4);
  --blue-400: var(--secondary);
  --blue-500: var(--primary);
  --blue-600: var(--primary);
  --blue-700: var(--primary-dark);

  /* Ink / neutrals */
  --ink: #ffffff;
  --body: #d8cce8;
  --muted: #9a8ab0;
  --line: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --bg: #1a0a2e;
  --bg-soft: #2d1060;

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.6);

  /* Gradients */
  --grad-blue: linear-gradient(135deg, var(--primary-mid), var(--primary));
  --grad-sky: linear-gradient(180deg, #1a0a2e, #2d1060);
  --grad-gold: linear-gradient(135deg, var(--gold-soft), var(--gold));
  --grad-teal: linear-gradient(135deg, var(--p1), var(--p2));
  --grad-vibrant: linear-gradient(
    135deg,
    #1a0a2e 0%,
    #2d1060 50%,
    #4a2265 100%
  );

  /* Type */
  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --section-y: clamp(64px, 9vw, 120px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset ------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
}
::selection {
  background: var(--gold);
  color: var(--primary-dark);
}

/* ---- Layout helpers ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.section {
  padding-block: var(--section-y);
}
.section--soft {
  background: var(--bg-soft);
}
.center {
  text-align: center;
}
.grad-text {
  background: linear-gradient(135deg, var(--secondary) 0%, #00f0d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-text {
  color: var(--gold);
}

/* ---- Eyebrow / section heading ----------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(0, 191, 166, 0.12);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 191, 166, 0.28);
}
.eyebrow i {
  color: var(--gold);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 18px 0 14px;
  color: var(--ink);
}
.section-sub {
  max-width: 620px;
  color: var(--body);
  font-size: 1.05rem;
}
.center .section-sub {
  margin-inline: auto;
}

/* ---- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s,
    color 0.3s;
  will-change: transform;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-gold {
  background: var(--grad-gold);
  color: var(--primary-dark);
  box-shadow: 0 10px 26px rgba(244, 182, 63, 0.4);
}
.btn-gold:hover {
  box-shadow: 0 16px 36px rgba(244, 182, 63, 0.55);
}
.btn-blue {
  background: var(--grad-teal);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 191, 166, 0.35);
}
.btn-blue:hover {
  box-shadow: 0 16px 36px rgba(0, 191, 166, 0.5);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(0, 191, 166, 0.4);
  color: var(--secondary);
}
.btn-ghost:hover {
  background: rgba(0, 191, 166, 0.1);
  border-color: var(--secondary);
}
.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
@media (hover: hover) and (pointer: fine) {
  /* Custom cursor disabled globally — keep normal OS cursor */
  body.has-cursor {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}


/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--grad-sky);
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.preloader__logo {
  height: 54px;
  animation: plPulse 1.1s var(--ease) infinite alternate;
}
@keyframes plPulse {
  from {
    transform: scale(0.94);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.preloader__bar {
  width: 160px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.preloader__bar i {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 99px;
  background: var(--grad-gold);
  animation: plBar 1s var(--ease) infinite;
}
@keyframes plBar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(320%);
  }
}

/* ============================================================
   TOP BAR + NAVBAR
   ============================================================ */
.topbar {
  background: #0a071c;
  color: #8a9bbf;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.topbar a {
  color: #8a9bbf;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover {
  color: var(--gold);
}
.topbar__left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar__right {
  display: flex;
  gap: 14px;
  align-items: center;
}
.topbar__right a i {
  font-size: 1rem;
  color: var(--secondary);
}

@media (max-width: 768px) {
   .topbar {
     font-size: 0.8rem;
     padding: 6px 0;
   }
   .topbar__left {
     display: none;
   }
   .topbar {
     text-align: center;
   }
   .topbar__inner {
     justify-content: center;
     padding: 6px 0;
     gap: 12px;
   }
   .topbar__right {
     margin: 0 auto;
     gap: 10px;
   }
   .topbar__right span {
     display: none;
   }
   .topbar__right a i {
     font-size: 1.1rem;
   }
 }

.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(26, 10, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 0.3s,
    padding 0.3s;
}
.nav.is-stuck {
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  transition: padding 0.3s;
}
.nav.is-stuck .nav__inner {
  padding: 9px 0;
}
.nav__logo img {
  height: 46px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__links > li > a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  white-space: nowrap;
}
.nav__links > li > a:hover,
.nav__links > li > a.active {
  color: var(--secondary);
  background: rgba(0, 191, 166, 0.1);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav__cta .btn {
  white-space: nowrap;
  padding: 10px 14px;
  font-size: 0.9rem;
}
.nav__links > li.nav-mobile-cta {
  display: none;
}

/* dropdown */
.has-dd {
  position: relative;
}
.dd {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  background: #1b0b4b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s var(--ease);
}
.has-dd:hover .dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dd a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 13px;
  border-radius: 8px;
  color: #fff;
}
.dd a:hover {
  background: rgba(0, 191, 166, 0.12);
}
.dd a i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2px;
}
.dd a strong {
  display: block;
  font-family: var(--font-head);
  color: #fff;
  font-size: 0.92rem;
}
.dd a small {
  color: var(--muted);
  font-size: 0.78rem;
}

/* hamburger + mobile */
.nav__burger {
   display: none;
   width: 46px;
   height: 46px;
   border: 1px solid rgba(255, 255, 255, 0.16);
   border-radius: 12px;
   background: rgba(255, 255, 255, 0.06);
   cursor: pointer;
   flex-direction: column;
   gap: 5px;
   align-items: center;
   justify-content: center;
   z-index: 1000;
}
.nav__close {
   display: none;
}
.nav__burger span {
   width: 20px;
   height: 2px;
   background: #fff;
   border-radius: 2px;
   transition: 0.3s;
}
.nav__burger.active span:nth-child(1) {
   transform: translateY(7px) rotate(45deg);
}
.nav__burger.active span:nth-child(2) {
   opacity: 0;
}
.nav__burger.active span:nth-child(3) {
   transform: translateY(-7px) rotate(-45deg);
}
.nav__overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.6);
   z-index: 950;
   opacity: 0;
   visibility: hidden;
   transition: 0.3s;
}
.nav__overlay.show {
   opacity: 1;
   visibility: visible;
}
.nav__links::-webkit-scrollbar {
   width: 4px;
}
.nav__links::-webkit-scrollbar-track {
   background: transparent;
}
.nav__links::-webkit-scrollbar-thumb {
   background: var(--secondary);
   border-radius: 99px;
}

@media (max-width: 1199px) {
  .nav__links > li > a {
    font-size: 0.88rem;
    padding: 9px 11px;
  }
  .nav__cta .btn {
    font-size: 0.85rem;
    padding: 9px 12px;
  }
}

@media (max-width: 991px) {
  .nav__burger {
    display: flex;
  }
  .nav__close {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .nav__links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #1b0b4b;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 20px 30px;
    z-index: 960;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s var(--ease);
    overflow-y: auto;
  }
  .nav__links.show {
    right: 0;
  }
  .nav__links > li > a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    pointer-events: auto;
  }
  .nav__cta {
    position: static;
    gap: 6px;
  }
  .nav__cta .btn {
    display: none;
  }
  .nav__links > li.nav-mobile-cta {
    display: block;
  }
  .dd {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 12px;
    display: none;
  }
  .has-dd.open .dd {
    display: block;
  }
  .has-dd.open .dd a {
    pointer-events: auto;
  }
  .dd a {
    pointer-events: auto;
  }
  .nav__links > li.nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  .nav__links > li.nav-mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
  }
  .nav__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .nav__inner {
    padding: 10px 0;
  }
  .nav__logo img {
    height: 38px;
  }
  .nav__burger {
    width: 40px;
    height: 40px;
  }
  .nav__links {
    padding: 70px 16px 20px;
  }
}

@media (max-width: 560px) {
  .nav__inner {
    gap: 12px;
  }
  .nav__logo img {
    height: 34px;
  }
  .nav__burger {
    width: 38px;
    height: 38px;
  }
}

/* ============================================================
   HERO  (full-viewport with bg image + overlays)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: opacity, transform;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 9, 41, 0.96) 0%,
      rgba(36, 16, 86, 0.88) 42%,
      rgba(36, 16, 86, 0.55) 66%,
      rgba(15, 9, 41, 0.18) 100%
    ),
    linear-gradient(180deg, rgba(15, 9, 41, 0.1) 0%, rgba(15, 9, 41, 0.72) 100%);
}

/* hero slider (v2 style) */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(3%) scale(1.03);
  animation: heroSlide 18s ease-in-out infinite;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}
.hero__slide:nth-child(2) {
  animation-delay: 6s;
}
.hero__slide:nth-child(2) img {
  object-position: center 44%;
}
.hero__slide:nth-child(3) {
  animation-delay: 12s;
}
.hero__slide:nth-child(3) img {
  object-position: center 38%;
}
@keyframes heroSlide {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1.01);
  }
  8% {
    opacity: 1;
    transform: translateX(0) scale(1.01);
  }
  30% {
    opacity: 1;
    transform: translateX(-2.2%) scale(1.055);
  }
  38% {
    opacity: 0;
    transform: translateX(-4%) scale(1.07);
  }
  100% {
    opacity: 0;
    transform: translateX(-4%) scale(1.07);
  }
}
.hero__slides::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(15, 9, 41, 0.96) 0%,
      rgba(36, 16, 86, 0.9) 42%,
      rgba(36, 16, 86, 0.55) 66%,
      rgba(15, 9, 41, 0.18) 100%
    ),
    linear-gradient(180deg, rgba(15, 9, 41, 0.1) 0%, rgba(15, 9, 41, 0.72) 100%);
}

/* giant faded wordmark */
.hero__wordmark {
  position: absolute;
  top: 6%;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(5rem, 22vw, 20rem);
  line-height: 0.8;
  white-space: nowrap;
  color: rgba(244, 182, 63, 0.07);
  pointer-events: none;
  will-change: opacity, transform;
}
.hero__inner {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-block: 120px 90px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(244, 182, 63, 0.14);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(244, 182, 63, 0.35);
}
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
  margin: 22px 0 18px;
  font-weight: 700;
}
.hero__title em {
  font-style: normal;
  color: var(--gold-soft);
}
.hero__sub {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__avatars {
  display: flex;
}
.hero__avatars img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  object-fit: cover;
  object-position: center 20%;
  margin-left: -12px;
  box-shadow: var(--shadow-sm);
}
.hero__avatars img:first-child {
  margin-left: 0;
}
.hero__trust-text {
  color: #fff;
  font-size: 0.92rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero__trust-text strong {
  color: var(--gold-soft);
}

/* floating socials */
.hero__socials {
  position: absolute;
  right: 24px;
  top: 50%;
  translate: 0 -50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero__socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero__socials a:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* bottom meta-bar */
.hero__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 9, 41, 0.6);
  backdrop-filter: blur(6px);
}
.hero__meta-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-head);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.hero__meta-inner a {
  color: #fff;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
@media (max-width: 767px) {
  .hero__socials {
    display: none;
  }
  .hero__meta-inner {
    justify-content: center;
    gap: 12px;
  }
}

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats {
  background: linear-gradient(135deg, #090818 0%, #241056 58%, #143e4e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 191, 166, 0.22),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(244, 182, 63, 0.14),
      transparent 50%
    );
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats__grid--five {
  grid-template-columns: repeat(5, 1fr);
}
.stats__grid--six {
  grid-template-columns: repeat(6, 1fr);
}
.stat__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
}
.stat__num .gold {
  color: var(--gold-soft);
}
.stat__label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 1199px) {
  .stats__grid,
  .stats__grid--five,
  .stats__grid--six {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 16px;
  }
}
@media (max-width: 768px) {
  .stats__grid,
  .stats__grid--five,
  .stats__grid--six {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}
@media (max-width: 480px) {
  .stats__grid,
  .stats__grid--five,
  .stats__grid--six {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #1b0b4b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 191, 166, 0.3);
}

.grid {
  display: grid;
  gap: 26px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* program card */
.prog {
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  display: block;
}
.prog__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.4rem;
  color: rgba(244, 182, 63, 0.1);
}
.prog__icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 191, 166, 0.12);
  color: var(--secondary);
  font-size: 1.7rem;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 191, 166, 0.2);
}
.prog:hover .prog__icon {
  background: var(--grad-gold);
  color: var(--primary-dark);
}
.prog__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}
.prog__desc {
  font-size: 0.95rem;
  color: var(--body);
}
.prog__foot {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

/* media card (nominees / winners) */
.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  background: #0a071c;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.media-card:hover img {
  transform: scale(1.07);
}
.media-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 9, 41, 0.9));
}
.media-card__info {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  color: #fff;
  z-index: 2;
}
.media-card__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
}
.media-card__meta {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.media-card__cat {
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}
.media-card__fb {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--grad-teal);
  color: #fff;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
}

/* blog card */
.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: #0a071c;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.06);
}
.blog-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  font-family: var(--font-head);
}
.blog-card__body {
  padding: 24px;
}
.blog-card__meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card__title {
  font-size: 1.18rem;
  margin: 10px 0;
  color: #fff;
}
.blog-card__excerpt {
  font-size: 0.92rem;
  margin-bottom: 14px;
  color: var(--body);
}
.blog-card__link {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card__link:hover {
  color: var(--gold);
}

/* featured card (blog hero) */
.featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
}
.featured-card .visual-img {
  position: relative;
  min-height: 320px;
}
.featured-card__body {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-card__body .post-tag {
  margin-top: 0;
}
.featured-card__body .blog-card__meta {
  margin-top: 14px;
}
.featured-card__body .section-title {
  font-size: 1.8rem;
  margin: 10px 0;
}
.featured-card__body p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--body);
}

@media (max-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .featured-card .visual-img {
    min-height: 240px;
  }
  .featured-card__body {
    padding: 24px;
  }
}

/* ============================================================
   CHARTS
   ============================================================ */
.chart-card {
  background: #1b0b4b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}
.chart-card h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #fff;
}
.chart-wrap {
  position: relative;
  height: 300px;
}

/* ============================================================
   AI CHATBOT
   ============================================================ */
.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 880;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: var(--grad-teal);
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 14px 34px rgba(0, 191, 166, 0.5);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease);
}
.chat-fab:hover {
  transform: scale(1.08);
}
.chat-fab .ri-close-line {
  display: none;
}
.chat-fab.open .ri-message-3-line {
  display: none;
}
.chat-fab.open .ri-close-line {
  display: block;
}
.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 881;
  width: min(380px, calc(100vw - 32px));
  height: 540px;
  max-height: calc(100vh - 130px);
  background: #1b0b4b;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.98);
  transition: 0.3s var(--ease);
}
.chat-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.chat-head {
  background: linear-gradient(135deg, var(--primary-mid), var(--p1));
  color: #fff;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-head__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.chat-head__t strong {
  font-family: var(--font-head);
  font-size: 1rem;
  display: block;
}
.chat-head__t span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-head__t span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
}
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  background: #15093a;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  animation: msgIn 0.3s var(--ease);
}
@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.chat-msg.bot {
  align-self: flex-start;
  background: #241056;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-left-radius: 5px;
}
.chat-msg.user {
  align-self: flex-end;
  background: var(--grad-teal);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 13px 16px;
  background: #241056;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  animation: typing 1s infinite;
}
.chat-typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.chat-typing span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}
.chat-foot {
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 9px;
  background: #1b0b4b;
}
.chat-foot input {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.chat-foot input::placeholder {
  color: var(--muted);
}
.chat-foot input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.15);
}
.chat-foot button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--grad-gold);
  color: var(--primary-dark);
  cursor: pointer;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}

/* ============================================================
   PRE-FOOTER + FOOTER
   ============================================================ */
.prefooter {
  background: linear-gradient(135deg, var(--primary-mid), var(--p1));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.prefooter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 40%,
      rgba(244, 182, 63, 0.14),
      transparent 50%
    ),
    radial-gradient(circle at 80% 60%, rgba(0, 191, 166, 0.12), transparent 50%);
}
.prefooter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 54px 0;
  flex-wrap: wrap;
  position: relative;
}
.prefooter h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
.prefooter__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  background: #0a071c;
  color: rgba(255, 255, 255, 0.55);
}
.footer__top {
  padding: 70px 0 50px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 34px;
}
.footer__logo img {
  height: 48px;
  margin-bottom: 18px;
}
.footer__desc {
  font-size: 0.92rem;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  color: #fff;
}
.footer__socials a:hover {
  background: var(--gold);
  color: var(--primary-dark);
}
.footer__heading {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-family: var(--font-head);
}
.footer__links li {
  margin-bottom: 11px;
}
.footer__links a {
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer__contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer__contact i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 2px;
}
.footer__contact strong {
  color: #fff;
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
}
.footer__contact a {
  color: rgba(255, 255, 255, 0.65);
}
.footer__contact a:hover {
  color: var(--gold);
}
.footer__news {
  margin-top: 18px;
}
.footer__news strong {
  color: #fff;
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-head);
}
.footer__news-form {
  display: flex;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 5px 5px 5px 18px;
}
.footer__news-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-body);
}
.footer__news-form input::placeholder {
  color: var(--muted);
}
.footer__news-form button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--grad-gold);
  color: var(--primary-dark);
  cursor: pointer;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__bottom-inner a {
  color: rgba(255, 255, 255, 0.4);
}
.footer__bottom-inner a:hover {
  color: var(--gold);
}
@media (max-width: 991px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .prefooter__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 870;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #1b0b4b;
  color: var(--secondary);
  border: 1px solid rgba(0, 191, 166, 0.3);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: 0.3s var(--ease);
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  background: var(--grad-teal);
  color: #fff;
  border-color: transparent;
}

/* ============================================================
   GSAP reveal helpers
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
}
[data-split] .word {
  display: inline-block;
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---- Swiper tweaks ---- */
.swiper {
  overflow: visible !important;
  padding-bottom: 10px;
}
.swiper-pagination {
  display: none !important;
}
.swiper-pagination-bullet {
  display: none !important;
}
.page-pad {
  padding-top: 60px;
}

/* ============================================================
   INNER PAGES  — page hero banner
   ============================================================ */
.page-hero {
  position: relative;
  padding: 130px 0 70px;
  background: linear-gradient(135deg, #0f0929, #241056);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(0, 191, 166, 0.16),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 90%,
      rgba(244, 182, 63, 0.14),
      transparent 45%
    );
}
.page-hero__inner {
  position: relative;
  z-index: 2;
}
.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.page-hero .eyebrow i {
  color: var(--gold-soft);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 18px 0 14px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.breadcrumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a:hover {
  color: var(--gold-soft);
}
.breadcrumb span.sep {
  opacity: 0.5;
}

/* page hero — inner page background image variant */
.page-hero--bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
}

/* filter / search bar */
.filter-bar {
  background: #15093a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
}
.search {
  position: relative;
  max-width: 420px;
  margin-bottom: 16px;
}
.search i {
  position: absolute;
  left: 16px;
  top: 50%;
  translate: 0 -50%;
  color: var(--muted);
}
.search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.search input::placeholder {
  color: var(--muted);
}
.search input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.15);
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--body);
  transition: 0.25s;
}
.pill:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.pill.active {
  background: var(--grad-teal);
  color: #fff;
  border-color: transparent;
}
.result-count {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 12px;
}

/* pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 50px;
}
.page-btn {
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #1b0b4b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-head);
  color: var(--body);
}
.page-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.page-btn.active {
  background: var(--grad-teal);
  color: #fff;
  border-color: transparent;
}

/* empty state */
.empty-state {
  text-align: center;
  padding: 70px 20px;
}
.empty-state i {
  font-size: 3.4rem;
  color: rgba(0, 191, 166, 0.35);
}
.empty-state h3 {
  margin: 14px 0 8px;
  color: #fff;
}
.empty-state p {
  color: var(--muted);
  margin-bottom: 18px;
}

/* alerts */
.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-size: 0.92rem;
}
.alert-success {
  background: rgba(0, 191, 166, 0.12);
  color: #4ade80;
  border: 1px solid rgba(0, 191, 166, 0.3);
}
.alert-error {
  background: rgba(232, 93, 4, 0.12);
  color: #ff8a65;
  border: 1px solid rgba(232, 93, 4, 0.3);
}

/* forms */
.form .field {
  margin-bottom: 16px;
}
.form label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--body);
  margin-bottom: 7px;
}
.form label span {
  color: var(--gold);
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.form input::placeholder,
.form textarea::placeholder {
  color: var(--muted);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.15);
}
.form-card {
  background: #1b0b4b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}
.form-card--dark {
  background: #0a071c;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-card--dark label {
  color: rgba(255, 255, 255, 0.8);
}

/* contact info cards */
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #1b0b4b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  margin-bottom: 14px;
}
.info-card .ic-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0, 191, 166, 0.12);
  color: var(--secondary);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-card strong {
  display: block;
  font-family: var(--font-head);
  color: #fff;
  margin-bottom: 3px;
}
.info-card a,
.info-card span {
  color: var(--body);
  font-size: 0.92rem;
  word-break: break-word;
}
.info-card a:hover {
  color: var(--gold);
}
.office-hours {
  background: #0a071c;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 6px;
}
.office-hours h5 {
  color: #fff;
  margin-bottom: 14px;
}
.office-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
}
.office-hours li strong {
  color: #fff;
}
.office-hours .closed {
  color: var(--gold-soft);
}

/* mvv cards */
.mvv {
  padding: 34px 28px;
  text-align: center;
  height: 100%;
}
.mvv .mvv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: rgba(0, 191, 166, 0.12);
  color: var(--secondary);
  font-size: 1.8rem;
  border: 1px solid rgba(0, 191, 166, 0.2);
}
.mvv.featured {
  background: linear-gradient(135deg, var(--primary-mid), #0b6058);
  color: #fff;
  transform: translateY(-8px);
}
.mvv.featured h3 {
  color: #fff;
}
.mvv.featured p {
  color: rgba(255, 255, 255, 0.75);
}
.mvv.featured .mvv-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-soft);
}
.mvv h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}
.mvv p {
  font-size: 0.92rem;
  color: var(--body);
}

/* mini stats */
.stat-mini {
  background: #15093a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
}
.stat-mini strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: #fff;
  display: block;
}
.stat-mini span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* feature list */
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.feature-list i {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-top: 2px;
}
.feature-list strong {
  font-family: var(--font-head);
  color: #fff;
}
.feature-list span {
  font-size: 0.9rem;
  color: var(--body);
}

/* impact country bars */
.impact-bar {
  background: #1b0b4b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.impact-bar__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #fff;
}
.impact-bar__top span:last-child {
  color: var(--secondary);
}
.impact-bar__track {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.impact-bar__fill {
  height: 100%;
  border-radius: 99px;
  background: var(--grad-teal);
}

/* image with floating badge */
.img-badged {
  position: relative;
}
.img-badged > img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.img-badge {
  position: absolute;
  left: -18px;
  bottom: 24px;
  background: #1b0b4b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.img-badge i {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--grad-gold);
  color: var(--primary-dark);
  font-size: 1.4rem;
}
.img-badge strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #fff;
  display: block;
  line-height: 1;
}
.img-badge span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* star strip */
.star-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.star-strip a {
  border-radius: var(--radius);
  overflow: hidden;
  background: #1b0b4b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.star-strip a:hover {
  transform: translateY(-5px);
}
.star-strip img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}
.star-strip .ss-info {
  padding: 14px;
}
.star-strip .ss-year {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.8rem;
  display: block;
}
.star-strip .ss-label {
  font-size: 0.82rem;
  color: var(--body);
}
@media (max-width: 767px) {
  .star-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* donate */
.amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.amount-btn {
  padding: 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  cursor: pointer;
  transition: 0.25s;
}
.amount-btn:hover {
  border-color: var(--secondary);
}
.amount-btn.active {
  background: var(--grad-teal);
  color: #fff;
  border-color: transparent;
}
.custom-amount {
  margin-bottom: 8px;
}
.impact-breakdown {
  background: #15093a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.impact-breakdown h4 {
  margin-bottom: 18px;
  color: #fff;
}
.impact-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.impact-row:last-child {
  border-bottom: none;
}
.impact-row .ir-amt {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--secondary);
  min-width: 48px;
}
.impact-row .ir-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #1b0b4b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold);
}
.impact-row p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--body);
}

/* post (blog single) */
.post-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 0;
}
.post-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 9, 41, 0.2),
    rgba(15, 9, 41, 0.88)
  );
}
.post-hero__body {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.post-hero__body h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 14px 0;
}
.post-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--primary-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 99px;
}
.post-meta {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.post-meta i {
  color: var(--gold-soft);
}
.post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--body);
}
.post-body p {
  margin-bottom: 18px;
}
.post-body h2,
.post-body h3 {
  margin: 28px 0 12px;
  color: #fff;
}
.post-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.post-share strong {
  font-family: var(--font-head);
  color: #fff;
}
.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 191, 166, 0.12);
  color: var(--secondary);
  transition: 0.25s;
}
.share-btn:hover {
  background: var(--grad-teal);
  color: #fff;
}

/* visual-card / visual-img lazy load */
.visual-card,
.visual-img {
  background-size: cover;
  background-position: center;
  background-color: #0a071c;
}
.visual-card > img,
.visual-img > img {
  opacity: 0;
}
.visual-card > img.is-loaded,
.visual-img > img.is-loaded {
  opacity: 1;
}

/* ============================================================
   HOME PAGE — Lifesavers / TCIF-inspired layout
   ============================================================ */
.page-home {
  background: var(--white);
  color: #333;
}
.page-home .topbar {
  background: #12081f;
  border-color: rgba(255, 255, 255, 0.06);
}
.page-home .nav {
  background: rgba(26, 10, 46, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.page-home .nav__links > li > a:hover,
.page-home .nav__links > li > a.active {
  color: var(--p4);
  background: rgba(123, 63, 160, 0.14);
}
.page-home .btn-gold {
  background: var(--grad-gold);
  color: var(--primary-dark);
}
.page-home .btn-blue {
  background: var(--grad-teal);
  color: #fff;
}
.page-home .btn-ghost {
  border-color: rgba(169, 109, 204, 0.45);
  color: var(--p4);
}
.page-home .btn-ghost:hover {
  background: rgba(123, 63, 160, 0.12);
  border-color: var(--p4);
}

/* promo strip */
.falf-promo {
  background: linear-gradient(90deg, var(--p1) 0%, var(--p2) 100%);
  padding: 16px 0;
  position: relative;
  overflow: hidden;
}
.falf-promo::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  background: rgba(0, 0, 0, 0.1);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.falf-promo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.falf-promo__text {
  display: flex;
  align-items: center;
  gap: 14px;
}
.falf-promo__icon {
  font-size: 1.4rem;
  color: var(--gold-soft);
}
.falf-promo__copy h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 2px;
  font-family: var(--font-head);
}
.falf-promo__copy p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.falf-promo__btn {
  background: #fff;
  color: var(--p1) !important;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition:
    transform 0.2s,
    background 0.2s;
}
.falf-promo__btn:hover {
  background: var(--p5);
  transform: scale(1.03);
}

/* hero v2 */
.home-hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #0a1628;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.home-hero__slider {
  position: absolute;
  inset: 0;
}
.home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.home-hero__slide.is-top {
  z-index: 2;
}
.home-hero__slide.is-leaving {
  z-index: 3;
  animation: heroDissolveOut 0.85s ease forwards;
}
@keyframes heroDissolveOut {
  0% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
  }
  55% {
    opacity: 0.4;
    filter: blur(5px) brightness(1.08);
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    filter: blur(12px) brightness(1.12);
    transform: scale(1.03);
    visibility: hidden;
  }
}
.home-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: homeKenBurns 10s ease-in-out infinite alternate;
}
.home-hero__slide.is-leaving img,
.home-hero__slide:not(.is-top):not(.is-leaving) img {
  animation: none;
}
@keyframes homeKenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.home-hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 20;
}
.home-hero__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, var(--gold));
  width: 0%;
  transition: width linear;
}
.home-hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.home-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.home-hero__dot.active {
  background: #2563eb;
  width: 30px;
  border-radius: 5px;
}
.home-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.home-hero__arrow:hover {
  background: rgba(37, 99, 235, 0.75);
  border-color: #2563eb;
}
.home-hero__arrow--prev {
  left: 22px;
}
.home-hero__arrow--next {
  right: 22px;
}
.home-hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 110px 0 80px;
}
.home-hero__text {
  width: 100%;
  max-width: 720px;
  display: flex;
  align-items: center;
}
.home-hero__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.92);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  margin-bottom: 18px;
}
.home-hero__title em {
  font-style: italic;
  color: var(--gold-soft);
}
.home-hero__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 28px;
}
.home-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.home-hero__live {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.home-hero__live-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-hero__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
.home-hero__live-val {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.home-hero__live-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1px;
}

.page-home .home-hero .btn-purple {
  background: #2563eb;
  border-color: #2563eb;
}
.page-home .home-hero .btn-purple:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}
.page-home .home-hero .btn-purple--soft {
  background: #1e3a8a;
  border-color: #1e3a8a;
}
.page-home .home-hero .btn-purple--soft:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

/* light sections on home */
.home-section {
  padding: clamp(64px, 8vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.home-section > .container {
  position: relative;
  z-index: 2;
}
.home-section--light {
  background-color: #fff;
  color: #333;
}
.home-section--soft {
  background-color: var(--p6);
  color: #333;
}
.home-section--light::before,
.home-section--soft::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--abstract-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.home-section--soft::before {
  opacity: 0.1;
}
.home-section--light::after,
.home-section--soft::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.88) 100%
  );
  pointer-events: none;
}
.home-section--soft::after {
  background: linear-gradient(
    180deg,
    rgba(248, 240, 255, 0.75) 0%,
    rgba(248, 240, 255, 0.92) 100%
  );
}
.home-section--dark {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1060 50%, #1a0a2e 100%);
  color: #fff;
}
.home-sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.home-sec-head .eyebrow {
  background: rgba(123, 63, 160, 0.1);
  color: var(--p1);
  border-color: rgba(123, 63, 160, 0.22);
}
.home-section--dark .home-sec-head .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--p4);
  border-color: rgba(255, 255, 255, 0.18);
}
.home-sec-head .section-title {
  color: inherit;
}
.home-section--light .section-title,
.home-section--soft .section-title {
  color: #1a1a2e;
}
.home-sec-head .section-sub {
  color: #666;
}
.home-section--dark .section-sub {
  color: rgba(255, 255, 255, 0.58);
}

/* feature cards */
.home-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.home-feature {
  text-align: center;
  padding: 36px 28px;
  border: 1.5px solid #ececec;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  height: 100%;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.home-feature:hover {
  border-color: var(--p1);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(123, 63, 160, 0.12);
}
.home-feature__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(123, 63, 160, 0.1);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 1.75rem;
  color: var(--p1);
}
.home-feature h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.home-feature p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.72;
}

/* impact grid */
.home-impact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.home-impact-stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 28px 16px;
  text-align: center;
  transition: background 0.25s;
}
.home-impact-stat:hover {
  background: rgba(123, 63, 160, 0.14);
}
.home-impact-stat__icon {
  font-size: 1.5rem;
  color: var(--p4);
  margin-bottom: 12px;
  display: block;
}
.home-impact-stat__num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.home-impact-stat__lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* action cards */
.home-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-actions--centered {
  max-width: 760px;
  margin-inline: auto;
}
.home-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid #e0d0ef;
  border-radius: 14px;
  transition: all 0.25s;
  height: 100%;
}
.home-action:hover {
  border-color: var(--p1);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(123, 63, 160, 0.15);
}
.home-action__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(123, 63, 160, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: var(--p1);
}
.home-action h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.home-action p {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* about split */
.home-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.home-about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.home-about__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.home-about__feats {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.home-about__feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid rgba(123, 63, 160, 0.08);
}
.home-about__feat i {
  color: var(--p1);
  font-size: 1.3rem;
  margin-top: 2px;
}
.home-about__feat strong {
  display: block;
  color: #1a1a2e;
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.home-about__feat span {
  font-size: 0.78rem;
  color: #666;
}

/* pillars on light bg */
.page-home .prog {
  background: rgba(255, 255, 255, 0.94);
  border-color: #ece3f5;
  color: #333;
  box-shadow: 0 4px 20px rgba(123, 63, 160, 0.06);
}
.page-home .prog__title {
  color: #1a1a2e;
}
.page-home .prog__desc {
  color: #666;
}
.page-home .prog__icon {
  background: rgba(123, 63, 160, 0.1);
  color: var(--p1);
  border-color: rgba(123, 63, 160, 0.18);
}
.page-home .prog:hover .prog__icon {
  background: var(--grad-teal);
  color: #fff;
}
.page-home .prog__foot {
  color: var(--p1);
  border-color: #ece3f5;
}

/* dark sections keep dark cards */
.page-home .section--soft {
  background: var(--p6);
}
.page-home .section:not(.home-section--light):not(.home-section--soft) .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.page-home .chart-card {
  background: rgba(255, 255, 255, 0.94);
  border-color: #ece3f5;
}
.page-home .chart-card h4 {
  color: #1a1a2e;
}

/* final CTA */
.home-final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #0d0d0d;
}
.home-final-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
}
.home-final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.home-final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.home-final-cta__title em {
  font-style: italic;
  color: var(--gold-soft);
}
.home-final-cta__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 560px;
  margin-inline: auto;
}
.home-final-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* newsletter */
.home-newsletter {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1060 100%);
  padding: 52px 0;
}
.home-newsletter__inner {
  text-align: center;
}
.home-newsletter__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p4);
  margin-bottom: 8px;
}
.home-newsletter__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.home-newsletter__sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}
.home-newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.home-newsletter__form input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.88rem;
  outline: none;
}
.home-newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.home-newsletter__form input:focus {
  border-color: var(--p1);
}
.home-newsletter__form button {
  background: var(--p1);
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}
.home-newsletter__form button:hover {
  background: var(--p2);
}

/* purple primary buttons */
.btn-purple {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p1);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid var(--p1);
  transition: all 0.22s;
}
.btn-purple:hover {
  background: var(--p2);
  border-color: var(--p2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123, 63, 160, 0.4);
}
.btn-purple--soft {
  background: var(--p3);
  border-color: var(--p3);
}
.btn-purple--outline {
  background: transparent;
  color: var(--p1) !important;
  border-color: var(--p1);
}
.btn-purple--outline:hover {
  background: var(--p1);
  color: #fff !important;
}

.page-home .home-section--soft .blog-card,
.page-home .home-section--light .blog-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid #ece3f5;
}
.page-home .home-section--soft .blog-card__title,
.page-home .home-section--light .blog-card__title {
  color: #1a1a2e;
}
.page-home .home-section--soft .blog-card__excerpt,
.page-home .home-section--light .blog-card__excerpt {
  color: #666;
}
.page-home .home-section--soft .blog-card__meta,
.page-home .home-section--light .blog-card__meta {
  color: #999;
}
.page-home .home-section--soft .blog-card__link,
.page-home .home-section--light .blog-card__link {
  color: var(--p1);
}
.home-section--dark .btn-purple--outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
}
.home-section--dark .btn-purple--outline:hover {
  background: var(--p1);
  border-color: var(--p1);
  color: #fff !important;
}

@media (max-width: 1199px) {
  .home-impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .home-hero__inner {
    padding-top: 120px;
  }
  .home-hero__arrow {
    display: none;
  }
  .home-features {
    grid-template-columns: 1fr;
  }
  .home-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-about {
    grid-template-columns: 1fr;
  }
  .home-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .home-actions {
    grid-template-columns: 1fr;
  }
  .home-about__feats {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* FALF VOLUNTEER SECTION — Scoped CSS (Safe to Add to style.css) */
/* ═══════════════════════════════════════════════════════════════════════ */

.falf-volunteer {
  background: linear-gradient(160deg, #0f0520 0%, #1a0a2e 50%, #2d1060 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background decoration */
.falf-volunteer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(123, 63, 160, 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.falf-volunteer::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 182, 63, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Section header */
.falf-volunteer .fv-head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.falf-volunteer .fv-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(123, 63, 160, 0.2);
  border: 1px solid rgba(123, 63, 160, 0.4);
  color: #c992f0;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.falf-volunteer .fv-head h2 {
  color: #fff;
  font-family: var(--font-head, "Playfair Display", serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 14px;
  line-height: 1.2;
}

.falf-volunteer .fv-head p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.97rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Two-column layout */
.falf-volunteer .fv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* About column */
.falf-volunteer .fv-about {
  padding: 40px 0;
}

/* Stats grid inside about */
.falf-volunteer .fv-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .falf-volunteer .fv-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .falf-volunteer .fv-about {
    padding: 20px 0 0;
  }

  .falf-volunteer .fv-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .falf-volunteer .fv-card {
    padding: 32px 22px;
  }

  .falf-volunteer .fv-card::before {
    left: 22px;
    right: 22px;
  }
}

@media (max-width: 480px) {
  .falf-volunteer .fv-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Labels */
.falf-volunteer label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.falf-volunteer label .fv-req {
  color: #f4b63f;
  margin-left: 2px;
}

.falf-volunteer label .fv-opt {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
  font-size: 0.8rem;
  margin-left: 4px;
}

/* Inputs, selects, textarea */
.falf-volunteer input[type="text"],
.falf-volunteer input[type="email"],
.falf-volunteer input[type="tel"],
.falf-volunteer select,
.falf-volunteer textarea {
  width: 100%;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(169, 109, 204, 0.3);
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: inherit;
  color: #fff;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.falf-volunteer input::placeholder,
.falf-volunteer textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.falf-volunteer select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a96dcc' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
}

.falf-volunteer select option {
  background: #1a0a2e;
  color: #fff;
}

/* Focus state */
.falf-volunteer input[type="text"]:focus,
.falf-volunteer input[type="email"]:focus,
.falf-volunteer input[type="tel"]:focus,
.falf-volunteer select:focus,
.falf-volunteer textarea:focus {
  border-color: #7b3fa0;
  background: rgba(123, 63, 160, 0.12);
  box-shadow:
    0 0 0 3px rgba(123, 63, 160, 0.2),
    0 2px 12px rgba(123, 63, 160, 0.15);
}

/* Textarea */
.falf-volunteer textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Divider */
.falf-volunteer .fv-divider {
  height: 1px;
  background: rgba(169, 109, 204, 0.18);
  margin: 28px 0;
}

/* Submit button */
.falf-volunteer .fv-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #7b3fa0, #5e2e80);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 0.97rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(123, 63, 160, 0.4);
}

.falf-volunteer .fv-btn:hover {
  background: linear-gradient(135deg, #f4b63f, #c8941f);
  color: #1a0a2e;
  box-shadow: 0 8px 28px rgba(244, 182, 63, 0.4);
  transform: translateY(-2px);
}

.falf-volunteer .fv-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Privacy note */
.falf-volunteer .fv-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* END VOLUNTEER SECTION CSS */
/* ═══════════════════════════════════════════════════════════════════════ */

/* ═══════════ IMPACT SECTION - PREMIUM ANIMATION ═══════════ */
.home-impact-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.impact-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.impact-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.impact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(60px);
}

.impact-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(167, 139, 250, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s;
}

.impact-card__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.4) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  filter: blur(60px);
  opacity: 0;
  transition: all 0.6s;
  pointer-events: none;
}

.impact-card.is-active {
  transform: scale(1.08) translateY(-10px);
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow:
    0 30px 60px -15px rgba(167, 139, 250, 0.5),
    0 0 120px rgba(167, 139, 250, 0.3);
  z-index: 10;
}

.impact-card.is-active .impact-card__bg {
  opacity: 1;
}

.impact-card.is-active .impact-card__glow {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.6;
  animation: glowPulse 3s ease-in-out infinite;
}

.impact-card.is-inactive {
  transform: scale(0.92);
  opacity: 0.5;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.3);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.6);
  }
}

.impact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.2) 0%,
    rgba(139, 92, 246, 0.2) 100%
  );
  border-radius: 20px;
  font-size: 2rem;
  color: #a78bfa;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.6s;
}

.impact-card.is-active .impact-card__icon {
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.4) 0%,
    rgba(139, 92, 246, 0.4) 100%
  );
  color: #fff;
  transform: scale(1.1);
  animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: scale(1.1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-5px);
  }
}

.impact-card__num {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.6s;
}

.impact-card.is-active .impact-card__num {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #fff 0%, #e9d5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-card__lbl {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: all 0.6s;
}

.impact-card.is-active .impact-card__lbl {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
}

.impact-card__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #a78bfa, #8b5cf6);
  width: 0%;
  transition: width 0.1s linear;
}

.impact-card.is-active .impact-card__progress {
  animation: progressFill 4s linear;
}

@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* Floating Background Circles */
.impact-bg-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.impact-circle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: var(--pos-x);
  top: var(--pos-y);
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  animation: floatCircle var(--duration) ease-in-out infinite;
}

@keyframes floatCircle {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .impact-carousel {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .impact-card__num {
    font-size: 2.5rem;
  }

  .impact-card.is-active .impact-card__num {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .impact-carousel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .impact-card {
    padding: 40px 24px;
  }

  .impact-card__num {
    font-size: 2.2rem;
  }

  .impact-card.is-active .impact-card__num {
    font-size: 2.8rem;
  }

  .impact-card__icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
}


/* Only affects the home page hero — leave other pages as-is */
.page-home .topbar,
.page-home .nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
}

.page-home .topbar {
  display: none; /* hide the contact-info bar on home, or keep it but adjust nav top below */
}

.page-home .nav {
  background: transparent;
  border: none;
  box-shadow: none;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.page-home .nav.is-stuck {
  background: rgba(26, 10, 46, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 34px rgba(0,0,0,.4);
}

/* Hero now needs to fill from the very top since nav no longer pushes it down */
.page-home .home-hero {
  margin-top: 0;
}