
    /* ── GLOBAL ──────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    .compact {
        max-width: 1200px;
        margin: 0 auto;
    }


    /* ── INTRO OVERLAY ───────────────────────────────── */
  

    #intro-star {
 
      transform: scale(0);
      animation: starZoom 1s 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    #intro-overlay.phase2 {
      background: #131360;
    }

    #intro-overlay.fade-out {
      animation: overlayFadeOut 0.6s ease forwards;
    }

    @keyframes overlayFadeOut {
      0% {
        opacity: 1;
      }

      100% {
        opacity: 0;
        pointer-events: none;
      }
    }

    @keyframes starZoom {
      0% {
        transform: scale(0);
        opacity: 1;
      }

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

    /* ── SPARKLE BURST ───────────────────────────────── */
    .sparkle-burst {
      position: absolute;
      pointer-events: none;
    }

    .sparkle-burst span {
      position: absolute;
      display: block;
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      animation: sparkle 1.5s ease-in-out infinite;
    }

    /* ── NAV ─────────────────────────────────────────── */
    #main-nav.scrolled {
      box-shadow: 0 12px 40px rgba(19, 19, 96, 0.2);
      border-color: rgba(250, 164, 26, 0.6);
    }

    .nav-link:hover,
    .nav-link.active {
      background: #FAA41A;
      color: #131360;
    }

    .nav-cta {
      background: #131360;
      color: #FFFCF5 !important;
      font-family: 'Baloo 2', cursive;
      font-weight: 800;
      font-size: 14px;
      padding: 7px 20px;
      border-radius: 9999px;
      text-decoration: none;
      transition: all 0.2s ease;
      display: inline-block;
    }

    .nav-cta:hover {
      background: #FAA41A;
      color: #131360 !important;
      transform: scale(1.05);
    }

    .nav-logo {
      font-family: 'Fredoka One', cursive;
      font-size: 18px;
      color: #131360;
      text-decoration: none;
      margin-right: 8px;
    }

    .nav-logo span {
      color: #FAA41A;
    }

    /* ── BUTTONS ─────────────────────────────────────── */
    .btn-primary {
      background: #FAA41A;
      color: #131360;
      font-family: 'Baloo 2', cursive;
      font-weight: 800;
      padding: 14px 32px;
      border-radius: 9999px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 4px 0 #D98A0F, 0 6px 20px rgba(250, 164, 26, 0.4);
      position: relative;
    }

    .btn-primary:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 7px 0 #D98A0F, 0 12px 28px rgba(250, 164, 26, 0.5);
    }

    .btn-primary:active {
      transform: translateY(1px);
      box-shadow: 0 2px 0 #D98A0F;
    }

    .btn-secondary {
      background: transparent;
      color: #131360;
      font-family: 'Baloo 2', cursive;
      font-weight: 800;
      padding: 12px 30px;
      border-radius: 9999px;
      border: 3px solid #131360;
      cursor: pointer;
      font-size: 16px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .btn-secondary:hover {
      background: #131360;
      color: #FFFCF5;
      transform: translateY(-2px) scale(1.04);
    }

    .btn-white {
      background: #FFFCF5;
      color: #131360;
      font-family: 'Baloo 2', cursive;
      font-weight: 800;
      padding: 14px 32px;
      border-radius: 9999px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-white:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 7px 0 rgba(0, 0, 0, 0.2), 0 12px 28px rgba(0, 0, 0, 0.2);
    }

    /* ── HERO ────────────────────────────────────────── */
    /* #hero {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      background: linear-gradient(160deg, #131360 0%, #1e1d8a 40%, #28807A 100%);
      display: flex;
      align-items: center;
      padding-top: 100px;
    } */

    .hero-cloud {
      position: absolute;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 9999px;
      filter: blur(2px);
    }

    .floating-star {
      position: absolute;
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      animation: float 6s ease-in-out infinite;
    }

    /* ── SECTION REVEAL ──────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
    }

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

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    .reveal-delay-5 {
      transition-delay: 0.5s;
    }

    /* ── CATEGORY CARDS ──────────────────────────────── */
    /* .category-card {
      background: #FFFCF5;
      border-radius: 28px;
      padding: 32px 24px;
      border: 3px solid transparent;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(19, 19, 96, 0.08);
    } */

    .category-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--card-bg);
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 25px;
    }

    .category-card:hover {
      transform: translateY(-10px) rotate(-1deg) scale(1.03);
      border-color: var(--card-accent);
      box-shadow: 0 20px 40px rgba(19, 19, 96, 0.15);
    }

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

    .category-card .icon-wrap {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--card-icon-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      margin: 0 auto 16px;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .category-card:hover .icon-wrap {
      transform: scale(1.2) rotate(10deg);
    }

    /* ── IMPACT STRIP ────────────────────────────────── */
    .impact-strip {
      background: linear-gradient(135deg, #131360, #1e1d8a);
      position: relative;
      overflow: hidden;
    }

    .impact-number {
      font-family: 'Fredoka One', cursive;
      font-size: clamp(48px, 8vw, 96px);
      line-height: 1;
    }

    /* ── STORY CARD ──────────────────────────────────── */
    .story-card {
      background: linear-gradient(135deg, #FFF1DC, #FFFCF5);
      border-radius: 32px;
      padding: 40px;
      border: 3px solid #FAA41A;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(250, 164, 26, 0.2);
    }

    .story-card::before {
      content: '"';
      font-family: 'Fredoka One', cursive;
      font-size: 160px;
      color: rgba(250, 164, 26, 0.15);
      position: absolute;
      top: -20px;
      left: 10px;
      line-height: 1;
    }

    /* ── CONFETTI CANVAS ─────────────────────────────── */
    #confetti-canvas {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
    }

    /* ── SPONSOR STRIP ───────────────────────────────── */
    .sponsor-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #FAA41A;
      flex-shrink: 0;
    }

    /* ── WHY TSA ─────────────────────────────────────── */
    .why-card {
      border-radius: 24px;
      padding: 28px;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .why-card:hover {
      transform: translateY(-6px) scale(1.02);
    }

    /* ── STEP CARDS ──────────────────────────────────── */
    .step-number {
      font-family: 'Fredoka One', cursive;
      font-size: 64px;
      line-height: 1;
      opacity: 0.15;
      position: absolute;
      top: -12px;
      right: 16px;
      color: currentColor;
    }

    /* ── TESTIMONIAL ─────────────────────────────────── */
    .testimonial-card {
      background: white;
      border-radius: 28px;
      padding: 36px;
      box-shadow: 0 8px 40px rgba(19, 19, 96, 0.1);
      border-left: 6px solid #FAA41A;
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 50px rgba(19, 19, 96, 0.15);
    }

    /* ── FOOTER ──────────────────────────────────────── */
    footer {
      background: linear-gradient(160deg, #131360 0%, #0d0d45 100%);
      position: relative;
      overflow: hidden;
    }

    /* ── WAVY DIVIDER ────────────────────────────────── */
    .wavy-top {
      margin-bottom: -2px;
    }

    /* ── MOBILE NAV TOGGLE ───────────────────────────── */
    #mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      inset-inline: 0;
      z-index: 998;
      background: rgba(255, 252, 245, 0.97);
      backdrop-filter: blur(16px);
      padding: 100px 24px 40px;
      flex-direction: column;
      gap: 12px;
    }

    #mobile-menu.open {
      display: flex;
    }

    .mobile-nav-link {
      font-family: 'Baloo 2', cursive;
      font-weight: 800;
      font-size: 22px;
      color: #131360;
      text-decoration: none;
      padding: 12px 20px;
      border-radius: 16px;
      transition: all 0.2s ease;
    }

    .mobile-nav-link:hover {
      background: #FFF1DC;
    }

    @media (max-width: 768px) {
      #nav-links {
        display: none;
      }

      #nav-hamburger {
        display: flex;
      }

      #main-nav {
        padding: 10px 20px;
        top: 12px;
        width: calc(100% - 24px);
        border-radius: 20px;
      }
    }

    @media (min-width: 769px) {
      #nav-hamburger {
        display: none;
      }
    }

    /* ── DATE BADGE ──────────────────────────────────── */
    .date-badge {
      background: rgba(250, 164, 26, 0.2);
      border: 2px solid rgba(250, 164, 26, 0.5);
      border-radius: 16px;
      padding: 8px 20px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Baloo 2', cursive;
      font-weight: 700;
      font-size: 14px;
      color: #FAA41A;
    }
