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

    :root {
      --y: #e7f702;
      --yd: #c8d502;
      --b: #000;
      --d: #080808;
      --c: #0f0f0f;
      --g: rgba(231, 247, 2, .08);
      --gb: rgba(231, 247, 2, .15);
      --border: rgba(255, 255, 255, .06);
      --text: #f0f0f0;
      --muted: #666
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--b);
      color: var(--text);
      overflow-x: hidden
    }

    /* BG GRID / DOTS */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      /* Dots are now completely handled by antigravity.js for liquid animation */
      pointer-events: none;
      z-index: -1;
    }

    /* ORBS */
    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
      animation: orbFloat 8s ease-in-out infinite
    }

    .orb1 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(231, 247, 2, .12), transparent 70%);
      top: -100px;
      left: -100px;
      animation-delay: 0s
    }

    .orb2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(231, 247, 2, .08), transparent 70%);
      bottom: -100px;
      right: -100px;
      animation-delay: 4s
    }

    @keyframes orbFloat {

      0%,
      100% {
        transform: translateY(0) scale(1)
      }

      50% {
        transform: translateY(-40px) scale(1.05)
      }
    }

    /* LIQUID GLASS 3D ANIMATIONS */
    @keyframes oilyShimmer {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes liquidFloat {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-6px) rotate(0.5deg);
      }
    }

    .liquid-glass {
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.02), rgba(0, 0, 0, 0.4) 30%, rgba(231, 247, 2, 0.01) 70%, rgba(0, 0, 0, 0.6));
      background-size: 300% 300%;
      animation: oilyShimmer 8s ease-in-out infinite;
      backdrop-filter: blur(24px) saturate(250%) contrast(110%);
      -webkit-backdrop-filter: blur(24px) saturate(250%) contrast(110%);
      border: 1px solid rgba(231, 247, 2, 0.1);
      border-top: 1px solid rgba(231, 247, 2, 0.2);
      border-left: 1px solid rgba(231, 247, 2, 0.15);
      box-shadow:
        inset 2px 2px 4px rgba(231, 247, 2, 0.05),
        inset -2px -2px 4px rgba(0, 0, 0, 0.6),
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(231, 247, 2, 0.1);
      position: relative;
      overflow: hidden;
    }



    /* NAV */
    nav {
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      width: calc(100% - 40px);
      max-width: 1100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .85rem 1.5rem;
      background: rgba(0, 0, 0, .4);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(231, 247, 2, 0.1);
      border-radius: 16px;
      transition: all .3s
    }

    nav.scrolled {
      background: rgba(0, 0, 0, .45);
      border-color: rgba(231, 247, 2, .15)
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
    }

    .logo img {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      object-fit: cover;
      box-shadow: 0 0 12px rgba(231, 247, 2, .4)
    }

    .logo span {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--y);
      letter-spacing: -.5px
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none
    }

    .nav-links a {
      color: var(--muted);
      font-size: .875rem;
      font-weight: 600;
      text-decoration: none;
      padding: 0.4rem 1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.05), rgba(231, 247, 2, 0.01));
      border: 1px solid rgba(231, 247, 2, 0.08);
      box-shadow:
        inset 1px 1px 2px rgba(231, 247, 2, 0.1),
        inset -1px -1px 2px rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(16px) saturate(200%);
      -webkit-backdrop-filter: blur(16px) saturate(200%);
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links a:hover {
      color: var(--text);
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.1), rgba(231, 247, 2, 0.03));
      border-color: rgba(231, 247, 2, 0.2);
      box-shadow:
        inset 1px 1px 3px rgba(231, 247, 2, 0.2),
        inset -1px -1px 3px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(231, 247, 2, 0.1);
      transform: translateY(-1px);
    }

    .nav-links a:active {
      transform: scale(0.92) translateY(2px);
      box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.8), inset -2px -2px 5px rgba(231, 247, 2, 0.1);
    }

    .nav-cta {
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.95), rgba(200, 213, 2, 0.85));
      color: #000;
      padding: .5rem 1.2rem;
      border-radius: 12px;
      font-weight: 800;
      font-size: .875rem;
      text-decoration: none;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow:
        inset 1px 1px 3px rgba(231, 247, 2, 0.8),
        inset -2px -2px 5px rgba(0, 0, 0, 0.5),
        0 4px 15px rgba(231, 247, 2, 0.4);
      border: 1px solid rgba(231, 247, 2, 0.5);
      backdrop-filter: blur(16px) saturate(250%);
      -webkit-backdrop-filter: blur(16px) saturate(250%);
      position: relative;
      overflow: hidden;
      background-size: 200% 200%;
      animation: oilyShimmer 4s ease-in-out infinite, liquidFloat 4s ease-in-out infinite;
    }

    .nav-cta:hover {
      box-shadow:
        inset 1px 1px 4px rgba(231, 247, 2, 0.9),
        inset -2px -2px 6px rgba(0, 0, 0, 0.6),
        0 8px 25px rgba(231, 247, 2, 0.6);
      transform: scale(1.02);
      filter: brightness(1.1);
    }

    .nav-cta:active {
      transform: scale(0.92) translateY(2px);
      box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.5), 0 0 10px rgba(231, 247, 2, 0.2);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 5% 4rem;
      position: relative;
      z-index: 1
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(231, 247, 2, .07);
      border: 1px solid rgba(231, 247, 2, .25);
      color: var(--y);
      padding: .4rem 1rem;
      border-radius: 999px;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .5px;
      margin-bottom: 2rem;
    }

    .hero-badge span {
      width: 7px;
      height: 7px;
      background: var(--y);
      border-radius: 50%;
      animation: pulse 2s infinite;
      box-shadow: 0 0 8px var(--y)
    }

    @keyframes pulse {

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

      50% {
        opacity: .5;
        transform: scale(.8)
      }
    }

    h1 {
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -2.5px;
      max-width: 900px;
      margin-bottom: 1.5rem;
    }

    h1 em {
      font-style: normal;
      color: var(--y);
      text-shadow: 0 0 40px rgba(231, 247, 2, .5)
    }

    .hero p {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn-y {
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.98), rgba(200, 213, 2, 0.88));
      color: #000;
      padding: 1rem 2.2rem;
      border-radius: 16px;
      font-weight: 800;
      text-decoration: none;
      font-size: 1.05rem;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow:
        inset 2px 2px 5px rgba(231, 247, 2, 0.8),
        inset -3px -3px 8px rgba(0, 0, 0, 0.6),
        0 8px 20px rgba(231, 247, 2, 0.35);
      border: 1px solid rgba(231, 247, 2, 0.6);
      backdrop-filter: blur(16px) saturate(250%);
      -webkit-backdrop-filter: blur(16px) saturate(250%);
      position: relative;
      overflow: hidden;
      background-size: 200% 200%;
      animation: oilyShimmer 4s ease-in-out infinite, liquidFloat 4.5s ease-in-out infinite;
    }

    .btn-y:hover {
      box-shadow:
        inset 2px 2px 6px rgba(231, 247, 2, 0.9),
        inset -3px -3px 10px rgba(0, 0, 0, 0.7),
        0 12px 35px rgba(231, 247, 2, 0.5);
      transform: scale(1.03) translateY(-3px);
      filter: brightness(1.1);
    }

    .btn-y:active {
      transform: scale(0.92) translateY(2px);
      box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.6), 0 0 15px rgba(231, 247, 2, 0.2);
    }

    .btn-g {
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.08), rgba(0, 0, 0, 0.4));
      border: 1px solid rgba(231, 247, 2, 0.2);
      border-top: 1px solid rgba(231, 247, 2, 0.3);
      backdrop-filter: blur(20px) saturate(250%);
      -webkit-backdrop-filter: blur(20px) saturate(250%);
      color: var(--text);
      padding: 1rem 2.2rem;
      border-radius: 16px;
      font-weight: 700;
      text-decoration: none;
      font-size: 1.05rem;
      transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow:
        inset 1px 1px 3px rgba(231, 247, 2, 0.15),
        inset -2px -2px 5px rgba(0, 0, 0, 0.7),
        0 8px 20px rgba(0, 0, 0, 0.4);
      position: relative;
      overflow: hidden;
      background-size: 200% 200%;
      animation: oilyShimmer 5s ease-in-out infinite, liquidFloat 5s ease-in-out infinite reverse;
    }

    .btn-g:hover {
      border-color: rgba(231, 247, 2, 0.6);
      color: var(--y);
      transform: scale(1.03) translateY(-3px);
      box-shadow:
        inset 1px 1px 4px rgba(231, 247, 2, 0.3),
        inset -2px -2px 6px rgba(0, 0, 0, 0.8),
        0 12px 30px rgba(231, 247, 2, 0.2);
    }

    .btn-g:active {
      transform: scale(0.92) translateY(2px);
      box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 10px rgba(231, 247, 2, 0.1);
    }

    /* STATS */
    .stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 4rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp .8s .4s ease both
    }

    .stat {
      text-align: center;
      padding: 1.2rem 2rem;
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.02) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(231, 247, 2, 0.01) 100%);
      border: 1px solid rgba(231, 247, 2, 0.08);
      border-radius: 14px;
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      box-shadow: inset 0 1px 0 rgba(231, 247, 2, 0.05), 0 8px 32px rgba(0, 0, 0, .4);
      transition: .25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .stat:hover {
      border-color: rgba(231, 247, 2, .3);
      box-shadow: inset 0 1px 0 rgba(231, 247, 2, .1), 0 16px 48px rgba(0, 0, 0, .6), 0 0 24px rgba(231, 247, 2, .1);
      transform: translateY(-5px);
    }

    .stat-n {
      font-size: 2rem;
      font-weight: 900;
      color: var(--y);
      text-shadow: 0 0 20px rgba(231, 247, 2, .4)
    }

    .stat-l {
      font-size: .75rem;
      color: var(--muted);
      margin-top: 2px;
      letter-spacing: .5px
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(54px);
      transition: opacity .38s ease, transform .38s ease
    }

    .reveal.visible {
      opacity: 1;
      transform: none
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    /* SECTION */
    section {
      padding: 6rem 6%;
      position: relative;
      z-index: 1
    }

    .stag {
      display: inline-block;
      background: rgba(231, 247, 2, .08);
      color: var(--y);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: .3rem .8rem;
      border-radius: 4px;
      margin-bottom: .8rem;
      border: 1px solid rgba(231, 247, 2, .2)
    }

    .stit {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -1.5px;
      margin-bottom: .8rem
    }

    .ssub {
      color: var(--muted);
      font-size: 1rem;
      max-width: 500px;
      line-height: 1.75
    }

    .cen {
      text-align: center
    }

    .cen .ssub {
      margin: 0 auto
    }

    /* FEATURES */
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 3.5rem
    }

    .fc {
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.03), rgba(0, 0, 0, 0.4) 40%, rgba(231, 247, 2, 0.01) 100%);
      border: 1px solid rgba(231, 247, 2, 0.1);
      border-top: 1px solid rgba(231, 247, 2, 0.2);
      border-left: 1px solid rgba(231, 247, 2, 0.15);
      border-radius: 20px;
      padding: 2rem;
      transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(24px) saturate(250%) contrast(110%);
      -webkit-backdrop-filter: blur(24px) saturate(250%) contrast(110%);
      box-shadow:
        inset 1px 1px 3px rgba(231, 247, 2, 0.1),
        inset -2px -2px 5px rgba(0, 0, 0, 0.6),
        0 8px 32px rgba(0, 0, 0, 0.4);
      animation: liquidFloat 6s ease-in-out infinite alternate;
      transform-style: preserve-3d;
    }

    .fc:hover {
      border-color: rgba(231, 247, 2, 0.4);
      transform: translateY(-12px) scale(1.02);
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.08), rgba(0, 0, 0, 0.6) 50%, rgba(231, 247, 2, 0.04) 100%);
      box-shadow:
        inset 1px 1px 4px rgba(231, 247, 2, 0.2),
        inset -2px -2px 6px rgba(0, 0, 0, 0.8),
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(231, 247, 2, 0.15);
    }

    .fi {
      font-size: 2rem;
      margin-bottom: 1rem;
      filter: drop-shadow(0 0 8px rgba(231, 247, 2, .4))
    }

    .fc h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: .5rem
    }

    .fc p {
      color: var(--muted);
      font-size: .875rem;
      line-height: 1.65
    }

    /* HOW */
    .how-sec {
      background: linear-gradient(180deg, var(--b), var(--d) 50%, var(--b))
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 3.5rem
    }

    .step {
      text-align: center;
      padding: 2rem 1.5rem;
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.03), rgba(0, 0, 0, 0.5) 50%, rgba(231, 247, 2, 0.01) 100%);
      border: 1px solid rgba(231, 247, 2, 0.1);
      border-top: 1px solid rgba(231, 247, 2, 0.2);
      border-left: 1px solid rgba(231, 247, 2, 0.15);
      border-radius: 20px;
      backdrop-filter: blur(20px) saturate(250%) contrast(110%);
      -webkit-backdrop-filter: blur(20px) saturate(250%) contrast(110%);
      box-shadow:
        inset 1px 1px 3px rgba(231, 247, 2, 0.1),
        inset -2px -2px 5px rgba(0, 0, 0, 0.6),
        0 8px 32px rgba(0, 0, 0, 0.4);
      transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      animation: liquidFloat 7s ease-in-out infinite alternate-reverse;
      transform-style: preserve-3d;
    }

    .step:hover {
      border-color: rgba(231, 247, 2, 0.3);
      transform: translateY(-8px) scale(1.02);
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.06), rgba(0, 0, 0, 0.6) 50%, rgba(231, 247, 2, 0.03) 100%);
      box-shadow:
        inset 1px 1px 4px rgba(231, 247, 2, 0.2),
        inset -2px -2px 6px rgba(0, 0, 0, 0.8),
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(231, 247, 2, 0.1);
    }

    .sn {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.98), rgba(200, 213, 2, 0.88));
      color: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: 900;
      margin: 0 auto 1rem;
      border: 1px solid rgba(231, 247, 2, 0.5);
      box-shadow:
        inset 2px 2px 5px rgba(231, 247, 2, 0.8),
        inset -2px -2px 5px rgba(0, 0, 0, 0.6),
        0 8px 24px rgba(231, 247, 2, 0.4);
    }

    .step h3 {
      font-weight: 700;
      margin-bottom: .5rem;
      font-size: .95rem
    }

    .step p {
      color: var(--muted);
      font-size: .85rem;
      line-height: 1.6
    }

    /* PRICING */
    .pg {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 1.5rem;
      margin-top: 3.5rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto
    }

    .pc {
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.04), rgba(0, 0, 0, 0.4) 40%, rgba(231, 247, 2, 0.01) 100%);
      border: 1px solid rgba(231, 247, 2, 0.1);
      border-top: 1px solid rgba(231, 247, 2, 0.2);
      border-left: 1px solid rgba(231, 247, 2, 0.15);
      border-radius: 22px;
      padding: 2.5rem 2rem;
      backdrop-filter: blur(24px) saturate(250%) contrast(110%);
      -webkit-backdrop-filter: blur(24px) saturate(250%) contrast(110%);
      box-shadow:
        inset 1px 1px 3px rgba(231, 247, 2, 0.1),
        inset -2px -2px 5px rgba(0, 0, 0, 0.6),
        0 8px 32px rgba(0, 0, 0, 0.4);
      transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      animation: liquidFloat 6.5s ease-in-out infinite alternate;
    }

    .pc:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: rgba(231, 247, 2, 0.3);
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.08), rgba(0, 0, 0, 0.6) 50%, rgba(231, 247, 2, 0.04) 100%);
      box-shadow:
        inset 1px 1px 4px rgba(231, 247, 2, 0.2),
        inset -2px -2px 6px rgba(0, 0, 0, 0.8),
        0 24px 60px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(231, 247, 2, 0.1);
    }

    .pc.hot {
      border-color: rgba(231, 247, 2, 0.5);
      background: linear-gradient(145deg, rgba(231, 247, 2, 0.15), rgba(0, 0, 0, 0.7));
      box-shadow:
        inset 1px 1px 5px rgba(231, 247, 2, 0.3),
        inset -2px -2px 6px rgba(0, 0, 0, 0.8),
        0 12px 40px rgba(231, 247, 2, 0.15);
    }

    .pop {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.98), rgba(200, 213, 2, 0.88));
      color: #000;
      font-size: .75rem;
      font-weight: 900;
      padding: .4rem 1.2rem;
      border-radius: 999px;
      white-space: nowrap;
      border: 1px solid rgba(231, 247, 2, 0.6);
      box-shadow:
        inset 2px 2px 5px rgba(231, 247, 2, 0.8),
        inset -2px -2px 5px rgba(0, 0, 0, 0.6),
        0 8px 20px rgba(231, 247, 2, 0.4);
      animation: liquidFloat 4s ease-in-out infinite;
    }

    .pn {
      font-size: .78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted);
      margin-bottom: .5rem
    }

    .pp {
      font-size: 3rem;
      font-weight: 900;
      color: var(--y);
      line-height: 1;
      text-shadow: 0 0 20px rgba(231, 247, 2, .3)
    }

    .pp span {
      font-size: .95rem;
      font-weight: 500;
      color: var(--muted)
    }

    .pd {
      color: var(--muted);
      font-size: .875rem;
      margin: .5rem 0 1.5rem
    }

    .pf {
      list-style: none;
      margin-bottom: 2rem
    }

    .pf li {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .875rem;
      padding: .38rem 0;
      color: #bbb;
      border-bottom: 1px solid rgba(255, 255, 255, .04)
    }

    .pf li::before {
      content: '✓';
      color: var(--y);
      font-weight: 900;
      font-size: .8rem
    }

    .pb {
      display: block;
      text-align: center;
      padding: .85rem;
      border-radius: 12px;
      font-weight: 700;
      text-decoration: none;
      font-size: .9rem;
      transition: all .25s
    }

    .pb-y {
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.98), rgba(200, 213, 2, 0.88));
      color: #000;
      border: 1px solid rgba(231, 247, 2, 0.6);
      box-shadow:
        inset 2px 2px 5px rgba(231, 247, 2, 0.8),
        inset -3px -3px 8px rgba(0, 0, 0, 0.6),
        0 8px 20px rgba(231, 247, 2, 0.35);
      position: relative;
      overflow: hidden;
      animation: liquidFloat 4.5s ease-in-out infinite;
    }

    .pb-y:hover {
      box-shadow:
        inset 2px 2px 6px rgba(231, 247, 2, 0.9),
        inset -3px -3px 10px rgba(0, 0, 0, 0.7),
        0 12px 35px rgba(231, 247, 2, 0.5);
      transform: scale(1.02) translateY(-2px);
      filter: brightness(1.1);
    }

    .pb-y:active {
      transform: scale(0.92) translateY(2px);
      box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.6), 0 0 15px rgba(231, 247, 2, 0.2);
    }

    .pb-o {
      border: 1px solid rgba(231, 247, 2, 0.2);
      border-top: 1px solid rgba(231, 247, 2, 0.3);
      color: var(--text);
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.08), rgba(0, 0, 0, 0.4));
      backdrop-filter: blur(20px) saturate(250%);
      -webkit-backdrop-filter: blur(20px) saturate(250%);
      box-shadow:
        inset 1px 1px 3px rgba(231, 247, 2, 0.15),
        inset -2px -2px 5px rgba(0, 0, 0, 0.7),
        0 8px 20px rgba(0, 0, 0, 0.4);
      position: relative;
      overflow: hidden;
      animation: liquidFloat 5s ease-in-out infinite reverse;
    }

    .pb-o:hover {
      border-color: rgba(231, 247, 2, 0.6);
      color: var(--y);
      transform: scale(1.02) translateY(-2px);
      box-shadow:
        inset 1px 1px 4px rgba(231, 247, 2, 0.3),
        inset -2px -2px 6px rgba(0, 0, 0, 0.8),
        0 12px 30px rgba(231, 247, 2, 0.2);
    }

    .pb-o:active {
      transform: scale(0.92) translateY(2px);
      box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 10px rgba(231, 247, 2, 0.1);
    }

    /* CTA BAND */
    .cta-b {
      margin: 0 6% 6rem;
      border-radius: 32px;
      padding: 5rem 3rem;
      text-align: center;
      background: linear-gradient(135deg, rgba(231, 247, 2, 0.03), rgba(0, 0, 0, 0.5) 40%, rgba(231, 247, 2, 0.01) 100%);
      border: 1px solid rgba(231, 247, 2, 0.1);
      border-top: 1px solid rgba(231, 247, 2, 0.2);
      border-left: 1px solid rgba(231, 247, 2, 0.15);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(24px) saturate(250%) contrast(110%);
      -webkit-backdrop-filter: blur(24px) saturate(250%) contrast(110%);
      box-shadow:
        inset 1px 1px 3px rgba(231, 247, 2, 0.1),
        inset -2px -2px 5px rgba(0, 0, 0, 0.6),
        0 12px 40px rgba(0, 0, 0, 0.5);
      animation: liquidFloat 8s ease-in-out infinite alternate;
    }

    .cta-b::before {
      content: '';
      position: absolute;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(231, 247, 2, 0.15), transparent 60%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      animation: pulse 4s infinite;
    }

    .cta-b h2 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 900;
      letter-spacing: -1.5px;
      margin-bottom: 1rem;
      position: relative
    }

    .cta-b h2 em {
      font-style: normal;
      color: var(--y)
    }

    .cta-b p {
      color: var(--muted);
      margin-bottom: 2rem;
      font-size: 1.05rem;
      position: relative
    }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      padding: 2.5rem 6%;
      position: relative;
      z-index: 1
    }

    .fi2 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem
    }

    .fb {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--y);
      text-shadow: 0 0 15px rgba(231, 247, 2, .3)
    }

    .fl {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap
    }

    .fl a {
      color: var(--muted);
      text-decoration: none;
      font-size: .85rem;
      transition: .2s
    }

    .fl a:hover {
      color: var(--y)
    }

    .fc2 {
      color: var(--muted);
      font-size: .78rem
    }

    /* HERO CONTACT */
    .hero-contact {
      margin-top: 1.4rem;
      animation: fadeUp .8s .45s ease both;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .6rem
    }

    .hero-wa-btn {
      display: inline-flex;
      align-items: center;
      gap: .65rem;
      background: rgba(37, 211, 102, .12);
      border: 1px solid rgba(37, 211, 102, .35);
      color: #25D366;
      padding: .65rem 1.4rem;
      border-radius: 999px;
      font-size: .875rem;
      font-weight: 700;
      text-decoration: none;
      transition: all .25s;
      backdrop-filter: blur(8px);
      box-shadow: 0 0 20px rgba(37, 211, 102, .12);
    }

    .hero-wa-btn:hover {
      background: rgba(37, 211, 102, .22);
      border-color: rgba(37, 211, 102, .7);
      box-shadow: 0 0 32px rgba(37, 211, 102, .3);
      transform: translateY(-2px);
    }

    .hero-wa-btn .wa-dot {
      width: 8px;
      height: 8px;
      background: #25D366;
      border-radius: 50%;
      box-shadow: 0 0 8px #25D366;
      animation: pulse 2s infinite;
    }

    .hero-wa-label {
      font-size: .75rem;
      color: var(--muted);
      letter-spacing: .3px
    }

    /* BENEFITS */
    .ben-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
      margin-top: 3.5rem;
      align-items: start;
    }

    @media (max-width: 1024px) {
      .ben-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .bc {
      background: linear-gradient(135deg, rgba(255, 255, 255, .012) 0%, rgba(231, 247, 2, .005) 40%, rgba(255, 255, 255, .01) 100%);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 22px;
      padding: 2.2rem 2rem;
      transition: all .25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(24px) saturate(200%);
      -webkit-backdrop-filter: blur(24px) saturate(200%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 8px 32px rgba(0, 0, 0, .2);
      transform-style: preserve-3d;
      min-height: 220px;
    }

    .bc::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(231, 247, 2, .07), transparent 60%);
      opacity: 0;
      transition: .35s
    }

    .bc:hover {
      border-color: rgba(231, 247, 2, .3);
      transform: translateY(-8px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 24px 60px rgba(0, 0, 0, .4), 0 0 30px rgba(231, 247, 2, .08)
    }

    .bc:hover::before {
      opacity: 1
    }

    .bc-icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      filter: drop-shadow(0 0 10px rgba(231, 247, 2, .5))
    }

    .bc h3 {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: .5rem;
      color: #fff
    }

    .bc p {
      color: var(--muted);
      font-size: .875rem;
      line-height: 1.7
    }

    .bc-tag {
      display: inline-block;
      background: rgba(231, 247, 2, .1);
      color: var(--y);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: .22rem .65rem;
      border-radius: 4px;
      margin-bottom: .75rem;
      border: 1px solid rgba(231, 247, 2, .2)
    }

    .suitable {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin-top: 3rem;
      justify-content: center
    }

    .suit-tag {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(231, 247, 2, .18);
      color: #ccc;
      font-size: .8rem;
      padding: .4rem .9rem;
      border-radius: 999px;
      transition: .25s
    }

    .suit-tag:hover {
      background: rgba(231, 247, 2, .08);
      border-color: rgba(231, 247, 2, .4);
      color: var(--y)
    }


    /* GLOW LINE */
    .glow-line {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(231, 247, 2, .4), transparent);
      margin: 0;
      animation: glowPulse 4s ease-in-out infinite
    }

    @keyframes glowPulse {

      0%,
      100% {
        opacity: .4
      }

      50% {
        opacity: 1
      }
    }

    /* LIVE USERS WIDGET */
    .live-dashboard {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      max-width: 420px;
      margin: 3.5rem auto 0;
      padding: 1.5rem;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      position: relative;
      z-index: 10;
    }

    .live-header {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 1.15rem;
      color: #fff;
      margin-bottom: 1.5rem;
    }

    .live-dot {
      width: 10px;
      height: 10px;
      background: #00e676;
      border-radius: 50%;
      box-shadow: 0 0 12px #00e676;
      animation: pulse 2s infinite;
    }

    .feed-wrap {
      height: 260px;
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    }

    .feed-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feed-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.04);
      border-radius: 16px;
      padding: 0.8rem 1rem;
      opacity: 0;
      animation: slideUpFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      transition: all 0.3s ease;
    }

    .feed-item:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(231, 247, 2, 0.25);
    }

    @keyframes slideUpFade {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .f-av {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.1rem;
      color: #fff;
    }

    .f-info {
      flex: 1;
    }

    .f-name {
      font-weight: 700;
      font-size: 0.95rem;
      color: #fff;
      margin-bottom: 2px;
    }

    .f-act {
      font-size: 0.8rem;
      color: #aaa;
    }

    .f-time {
      font-size: 0.75rem;
      color: #00e676;
      background: rgba(0, 230, 118, 0.1);
      padding: 0.25rem 0.6rem;
      border-radius: 8px;
      font-weight: 700;
    }

    .trusted-footer {
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.6rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 1.2rem;
    }

    .avatars-group {
      display: flex;
    }

    .a-cir {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.12);
      margin-left: -10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 800;
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
      overflow: hidden;
    }

    .a-cir img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 4px;
      background: #fff;
      border-radius: 50%;
    }

    .avatars-group .a-cir:first-child {
      margin-left: 0;
    }

    .tf-text {
      font-size: 0.85rem;
      color: #aaa;
    }

    .tf-text strong {
      color: #fff;
    }

    /* ── HAMBURGER ── */
    .ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border: none;
      background: transparent;
      z-index: 200
    }

    .ham span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all .3s
    }

    .ham.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .ham.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0)
    }

    .ham.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    /* mobile nav drawer */
    .mob-menu {
      display: flex;
      position: fixed;
      inset: 0;
      z-index: 150;
      background: rgba(0, 0, 0, .95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .mob-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .mob-menu a {
      color: var(--text);
      font-size: 1.4rem;
      font-weight: 700;
      text-decoration: none;
      transition: .2s
    }

    .mob-menu a:hover {
      color: var(--y)
    }

    .mob-menu .mob-cta {
      background: var(--y);
      color: #000;
      padding: .8rem 2.2rem;
      border-radius: 12px;
      font-weight: 800
    }

    .mob-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: transparent;
      border: none;
      color: var(--text);
      font-size: 2.8rem;
      line-height: 1;
      cursor: pointer;
      transition: 0.2s;
    }

    .mob-close:hover {
      color: var(--y);
      transform: scale(1.1);
    }

    /* ── 1024px – TABLET LANDSCAPE ── */
    @media(max-width:1024px) {
      nav {
        width: calc(100% - 32px)
      }

      .feat-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .ben-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .steps {
        grid-template-columns: repeat(2, 1fr)
      }

      .stats {
        gap: 1.2rem
      }

      .stat {
        padding: 1rem 1.4rem
      }
    }

    /* ── 768px – TABLET ── */
    @media(max-width:768px) {
      /* Mobile tap target optimizations */
      a, button { touch-action: manipulation; }
      .mob-link { padding: 1.5rem 2rem; font-size: 1.2rem; }
      p, .fc2 { font-size: 1rem !important; }
      .tf-text { font-size: 1rem !important; }
      nav {
        top: 8px;
        width: calc(100% - 20px);
        padding: .7rem 1rem
      }

      .nav-links {
        display: none
      }

      .ham {
        display: flex
      }

      .hero {
        padding: 6.5rem 5% 3rem;
        min-height: auto
      }

      h1 {
        letter-spacing: -1.5px
      }

      .hero p {
        font-size: 1rem;
        margin-bottom: 2rem
      }

      .hero-btns {
        gap: .75rem
      }

      .btn-y,
      .btn-g {
        padding: .8rem 1.5rem;
        font-size: .95rem
      }

      .hero-wa-btn {
        font-size: .82rem;
        padding: .6rem 1.1rem;
        gap: .5rem
      }

      .hero-wa-btn span[style] {
        display: none
      }

      .stats {
        gap: 1rem;
        margin-top: 2.5rem
      }

      .stat {
        padding: .9rem 1.1rem;
        flex: 1 1 120px
      }

      .stat-n {
        font-size: 1.6rem
      }

      section {
        padding: 3.5rem 5%
      }

      .feat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
      }

      .ben-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem
      }

      .steps {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
      }

      .cta-b {
        margin: 0 4% 4rem;
        padding: 3rem 1.8rem
      }

      .fi2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem
      }

      .fl {
        flex-wrap: wrap;
        gap: 1rem
      }
    }

    /* ── 640px – LARGE MOBILE ── */
    @media(max-width:640px) {
      .hero {
        padding: 6rem 4% 2.5rem
      }

      h1 {
        letter-spacing: -1px
      }

      .hero-btns {
        flex-direction: column;
        align-items: center
      }

      .btn-y,
      .btn-g {
        width: 100%;
        max-width: 320px;
        text-align: center
      }

      .hero-wa-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center
      }

      .feat-grid {
        grid-template-columns: 1fr
      }

      .ben-grid {
        grid-template-columns: 1fr
      }

      .steps {
        grid-template-columns: 1fr
      }

      .stats {
        gap: .75rem
      }

      .stat {
        flex: 1 1 calc(50% - .75rem)
      }

      .suitable {
        gap: .45rem
      }

      .suit-tag {
        font-size: .75rem;
        padding: .35rem .75rem
      }

      .cta-b {
        margin: 0 3% 3rem;
        padding: 2.5rem 1.4rem;
        border-radius: 20px
      }

      .cta-b h2 {
        letter-spacing: -.5px
      }

      .fi2 {
        gap: 1rem
      }

      .fl {
        gap: .75rem
      }
    }

    /* ── 480px – MOBILE ── */
    @media(max-width:480px) {
      nav {
        top: 6px;
        width: calc(100% - 14px);
        padding: .65rem .9rem;
        border-radius: 12px
      }

      .logo span {
        font-size: 1.05rem
      }

      .nav-cta {
        padding: .42rem .9rem;
        font-size: .8rem
      }

      .hero {
        padding: 5.5rem 4% 2rem
      }

      .hero-badge {
        font-size: .7rem;
        padding: .35rem .8rem;
        margin-bottom: 1.5rem
      }

      .hero p {
        font-size: .95rem
      }

      .hero-wa-label {
        font-size: .7rem;
        text-align: center
      }

      .stat {
        flex: 1 1 calc(50% - .5rem);
        padding: .8rem .8rem
      }

      .stat-n {
        font-size: 1.4rem
      }

      .stat-l {
        font-size: .65rem
      }

      .stit {
        letter-spacing: -1px
      }

      .fc {
        padding: 1.5rem
      }

      .bc {
        padding: 1.6rem 1.4rem
      }

      .step {
        padding: 1.5rem 1rem
      }

      .sn {
        width: 44px;
        height: 44px;
        font-size: 1rem
      }

      .cta-b {
        padding: 2rem 1.2rem;
        border-radius: 16px
      }

      .cta-b p {
        font-size: .9rem
      }

      footer {
        padding: 2rem 5%
      }

      .fl {
        gap: .6rem
      }

      .fl a {
        font-size: .8rem
      }

      .fc2 {
        font-size: .72rem
      }

      .wa {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 16px;
        right: 16px
      }
    }

    /* ── 360px – SMALL MOBILE ── */
    @media(max-width:360px) {
      .hero {
        padding: 5rem 3.5% 1.5rem
      }

      h1 {
        letter-spacing: -.5px
      }

      .stat {
        flex: 1 1 100%
      }

      .btn-y,
      .btn-g {
        padding: .75rem 1.2rem;
        font-size: .9rem
      }

      .nav-cta {
        display: none
      }
    }

    /* CUSTOM CHAT BUTTON */
    .custom-chat-btn {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #00e676, #00c853);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 9999;
      box-shadow:
        inset 2px 2px 5px rgba(255, 255, 255, 0.4),
        inset -3px -3px 8px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(0, 230, 118, 0.5);
      border: 1px solid rgba(0, 230, 118, 0.6);
      transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      animation: chatFloat 4s ease-in-out infinite, chatShine 3s infinite linear;
      background-size: 200% 200%;
    }

    .custom-chat-btn:hover {
      transform: scale(1.1) translateY(-4px);
      box-shadow:
        inset 2px 2px 6px rgba(255, 255, 255, 0.5),
        inset -3px -3px 10px rgba(0, 0, 0, 0.4),
        0 12px 30px rgba(0, 230, 118, 0.6);
    }

    .custom-chat-btn:active {
      transform: scale(0.9);
    }

    .chat-icon {
      font-size: 1.8rem;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
      animation: chatWobble 4s ease-in-out infinite;
    }

    @keyframes chatFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    @keyframes chatShine {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes chatWobble {

      0%,
      100% {
        transform: rotate(0deg);
      }

      25% {
        transform: rotate(-10deg);
      }

      75% {
        transform: rotate(10deg);
      }
    }

    /* Lenis Smooth Scroll Recommended CSS */
    html.lenis,
    html.lenis body {
      height: auto;
    }

    .lenis.lenis-smooth {
      scroll-behavior: auto !important;
    }

    .lenis.lenis-smooth [data-lenis-prevent] {
      overscroll-behavior: contain;
    }

    .lenis.lenis-stopped {
      overflow: hidden;
    }

    .lenis.lenis-smooth iframe {
      pointer-events: none;
    }