    /* CSS Variables */
    :root {
      --background: 224 71% 4%;
      --foreground: 213 31% 91%;
      --card: 224 71% 4%;
      --card-foreground: 213 31% 91%;
      --primary: 213 100% 45%;
      --primary-foreground: 0 0% 100%;
      --secondary: 222 47% 11%;
      --secondary-foreground: 210 40% 98%;
      --muted: 223 47% 11%;
      --muted-foreground: 215.4 16.3% 56.9%;
      --accent: 173 100% 45%;
      --accent-foreground: 222.2 47.4% 11.2%;
      --border: 216 34% 17%;
      --ring: 213 100% 45%;
      --radius: 0.5rem;
    }

    /* Reset & Base */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      border-width: 0;
      border-style: solid;
      border-color: hsl(var(--border));
    }

    html {
      line-height: 1.5;
      -webkit-text-size-adjust: 100%;
      font-family: 'Inter', system-ui, sans-serif;
    }

    body {
      margin: 0;
      background-color: hsl(var(--background));
      color: hsl(var(--foreground));
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
    }

    /* Utility Classes */
    .text-white {
      color: #fff;
    }

    .text-muted-foreground {
      color: hsl(var(--muted-foreground));
    }

    .text-primary {
      color: hsl(var(--primary));
    }

    .text-accent {
      color: hsl(var(--accent));
    }

    .bg-primary {
      background-color: hsl(var(--primary));
    }

    .text-gradient {
      background: linear-gradient(to right, #0066e6, #00e6cc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Container */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 640px) {
      .container {
        padding: 0 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

    /* Section */
    .section {
      padding: 5rem 0;
    }

    @media (min-width: 768px) {
      .section {
        padding: 6rem 0;
      }
    }

    /* Typography */
    .text-sm {
      font-size: 0.875rem;
      line-height: 1.25rem;
    }

    .text-lg {
      font-size: 1.125rem;
      line-height: 1.75rem;
    }

    .text-xl {
      font-size: 1.25rem;
      line-height: 1.75rem;
    }

    .text-3xl {
      font-size: 1.875rem;
      line-height: 2.25rem;
    }

    .text-4xl {
      font-size: 2.25rem;
      line-height: 2.5rem;
    }

    .text-5xl {
      font-size: 3rem;
      line-height: 1.1;
    }

    .text-7xl {
      font-size: 4.5rem;
      line-height: 1;
    }

    @media (min-width: 768px) {
      .md\:text-5xl {
        font-size: 3rem;
        line-height: 1.1;
      }

      .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
      }

      .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
      }
    }

    .font-medium {
      font-weight: 500;
    }

    .font-semibold {
      font-weight: 600;
    }

    .font-bold {
      font-weight: 700;
    }

    .tracking-tight {
      letter-spacing: -0.025em;
    }

    .tracking-wider {
      letter-spacing: 0.05em;
    }

    .leading-tight {
      line-height: 1.25;
    }

    .uppercase {
      text-transform: uppercase;
    }

    .text-center {
      text-align: center;
    }

    .drop-shadow-lg {
      filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    }

    .drop-shadow-md {
      filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
    }

    /* Flexbox & Grid */
    .flex {
      display: flex;
    }

    .flex-col {
      flex-direction: column;
    }

    .flex-1 {
      flex: 1 1 0%;
    }

    .items-center {
      align-items: center;
    }

    .justify-center {
      justify-content: center;
    }

    .justify-between {
      justify-content: space-between;
    }

    .gap-2 {
      gap: 0.5rem;
    }

    .gap-3 {
      gap: 0.75rem;
    }

    .gap-4 {
      gap: 1rem;
    }

    .gap-6 {
      gap: 1.5rem;
    }

    .gap-8 {
      gap: 2rem;
    }

    .gap-12 {
      gap: 3rem;
    }

    .space-y-2>*+* {
      margin-top: 0.5rem;
    }

    .space-y-3>*+* {
      margin-top: 0.75rem;
    }

    .space-y-6>*+* {
      margin-top: 1.5rem;
    }

    .space-y-8>*+* {
      margin-top: 2rem;
    }

    .grid {
      display: grid;
    }

    .grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    @media (min-width: 768px) {
      .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .md\:flex-row {
        flex-direction: row;
      }

      .md\:flex-row-reverse {
        flex-direction: row-reverse;
      }
    }

    @media (min-width: 640px) {
      .sm\:flex-row {
        flex-direction: row;
      }
    }

    /* Spacing */
    .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .mb-2 {
      margin-bottom: 0.5rem;
    }

    .mb-3 {
      margin-bottom: 0.75rem;
    }

    .mb-4 {
      margin-bottom: 1rem;
    }

    .mb-6 {
      margin-bottom: 1.5rem;
    }

    .mb-8 {
      margin-bottom: 2rem;
    }

    .mb-12 {
      margin-bottom: 3rem;
    }

    .mb-16 {
      margin-bottom: 4rem;
    }

    .mb-20 {
      margin-bottom: 5rem;
    }

    .mt-2 {
      margin-top: 0.5rem;
    }

    .mt-4 {
      margin-top: 1rem;
    }

    .mt-6 {
      margin-top: 1.5rem;
    }

    .p-2 {
      padding: 0.5rem;
    }

    .p-4 {
      padding: 1rem;
    }

    .p-6 {
      padding: 1.5rem;
    }

    .p-8 {
      padding: 2rem;
    }

    .p-12 {
      padding: 3rem;
    }

    .px-4 {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .px-8 {
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .px-10 {
      padding-left: 2.5rem;
      padding-right: 2.5rem;
    }

    .py-1 {
      padding-top: 0.25rem;
      padding-bottom: 0.25rem;
    }

    .py-12 {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }

    .py-32 {
      padding-top: 8rem;
      padding-bottom: 8rem;
    }

    .pt-8 {
      padding-top: 2rem;
    }

    .pt-20 {
      padding-top: 5rem;
    }

    @media (min-width: 768px) {
      .md\:p-8 {
        padding: 2rem;
      }

      .md\:p-12 {
        padding: 3rem;
      }

      .md\:p-16 {
        padding: 4rem;
      }
    }

    /* Sizing */
    .w-6 {
      width: 1.5rem;
    }

    .w-7 {
      width: 1.75rem;
    }

    .w-8 {
      width: 2rem;
    }

    .w-12 {
      width: 3rem;
    }

    .w-14 {
      width: 3.5rem;
    }

    .w-full {
      width: 100%;
    }

    .h-6 {
      height: 1.5rem;
    }

    .h-7 {
      height: 1.75rem;
    }

    .h-8 {
      height: 2rem;
    }

    .h-12 {
      height: 3rem;
    }

    .h-14 {
      height: 3.5rem;
    }

    .h-20 {
      height: 5rem;
    }

    .h-full {
      height: 100%;
    }

    .h-auto {
      height: auto;
    }

    .h-px {
      height: 1px;
    }

    .min-h-screen {
      min-height: 100vh;
    }

    .max-w-2xl {
      max-width: 42rem;
    }

    .max-w-3xl {
      max-width: 48rem;
    }

    .max-w-4xl {
      max-width: 56rem;
    }

    /* Positioning */
    .relative {
      position: relative;
    }

    .absolute {
      position: absolute;
    }

    .fixed {
      position: fixed;
    }

    .inset-0 {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .inset-x-0 {
      left: 0;
      right: 0;
    }

    .top-0 {
      top: 0;
    }

    .bottom-0 {
      bottom: 0;
    }

    .bottom-10 {
      bottom: 2.5rem;
    }

    .left-0 {
      left: 0;
    }

    .right-0 {
      right: 0;
    }

    .left-1\/2 {
      left: 50%;
    }

    .top-1\/2 {
      top: 50%;
    }

    .-translate-x-1\/2 {
      transform: translateX(-50%);
    }

    .-translate-y-1\/2 {
      transform: translateY(-50%);
    }

    .z-0 {
      z-index: 0;
    }

    .z-10 {
      z-index: 10;
    }

    .z-50 {
      z-index: 50;
    }

    /* Borders & Rounded */
    .rounded {
      border-radius: 0.25rem;
    }

    .rounded-lg {
      border-radius: 0.5rem;
    }

    .rounded-xl {
      border-radius: 0.75rem;
    }

    .rounded-2xl {
      border-radius: 1rem;
    }

    .rounded-3xl {
      border-radius: 1.5rem;
    }

    .rounded-full {
      border-radius: 9999px;
    }

    .border {
      border-width: 1px;
    }

    .border-t {
      border-top-width: 1px;
    }

    .border-b {
      border-bottom-width: 1px;
    }

    .border-white\/5 {
      border-color: rgba(255, 255, 255, 0.05);
    }

    .border-white\/10 {
      border-color: rgba(255, 255, 255, 0.1);
    }

    .border-white\/20 {
      border-color: rgba(255, 255, 255, 0.2);
    }

    /* Backgrounds */
    .bg-black\/30 {
      background-color: rgba(0, 0, 0, 0.3);
    }

    .bg-black\/40 {
      background-color: rgba(0, 0, 0, 0.4);
    }

    .bg-black\/50 {
      background-color: rgba(0, 0, 0, 0.5);
    }

    .bg-white\/5 {
      background-color: rgba(255, 255, 255, 0.05);
    }

    .bg-white\/10 {
      background-color: rgba(255, 255, 255, 0.1);
    }

    .bg-primary\/10 {
      background-color: hsla(213, 100%, 45%, 0.1);
    }

    .bg-primary\/20 {
      background-color: hsla(213, 100%, 45%, 0.2);
    }

    .bg-accent\/20 {
      background-color: hsla(173, 100%, 45%, 0.2);
    }

    .bg-\[rgba\(5\,9\,26\,0\.1\)\] {
      background-color: rgba(5, 9, 26, 0.1);
    }

    .bg-\[\#030712\] {
      background-color: #030712;
    }

    .bg-\[\#030712\]\/80 {
      background-color: rgba(3, 7, 18, 0.8);
    }

    .bg-gradient-to-r {
      background-image: linear-gradient(to right, var(--tw-gradient-stops));
    }

    .bg-gradient-to-b {
      background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
    }

    .bg-gradient-to-br {
      background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    }

    .from-transparent {
      --tw-gradient-from: transparent;
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-primary\/10 {
      --tw-gradient-from: hsla(213, 100%, 45%, 0.1);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-primary\/20 {
      --tw-gradient-from: hsla(213, 100%, 45%, 0.2);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .from-\[\#030712\] {
      --tw-gradient-from: #030712;
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }

    .via-primary\/50 {
      --tw-gradient-stops: var(--tw-gradient-from), hsla(213, 100%, 45%, 0.5), var(--tw-gradient-to);
    }

    .via-accent\/5 {
      --tw-gradient-stops: var(--tw-gradient-from), hsla(173, 100%, 45%, 0.05), var(--tw-gradient-to);
    }

    .to-transparent {
      --tw-gradient-to: transparent;
    }

    .to-primary\/10 {
      --tw-gradient-to: hsla(213, 100%, 45%, 0.1);
    }

    .to-accent\/20 {
      --tw-gradient-to: hsla(173, 100%, 45%, 0.2);
    }

    /* Effects */
    .backdrop-blur-md {
      backdrop-filter: blur(12px);
    }

    .backdrop-blur-xl {
      backdrop-filter: blur(24px);
    }

    .shadow-lg {
      box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    }

    .shadow-xl {
      box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

    .shadow-2xl {
      box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    }

    .shadow-primary\/20 {
      --tw-shadow-color: hsla(213, 100%, 45%, 0.2);
      box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), 0 10px 15px -3px var(--tw-shadow-color);
    }

    .shadow-primary\/25 {
      --tw-shadow-color: hsla(213, 100%, 45%, 0.25);
      box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), 0 10px 15px -3px var(--tw-shadow-color);
    }

    .blur-\[100px\] {
      filter: blur(100px);
    }

    .opacity-30 {
      opacity: 0.3;
    }

    /* Overflow */
    .overflow-hidden {
      overflow: hidden;
    }

    /* Hidden & Display */
    .hidden {
      display: none;
    }

    @media (min-width: 768px) {
      .md\:flex {
        display: flex;
      }

      .md\:block {
        display: block;
      }

      .md\:hidden {
        display: none;
      }
    }

    /* Transitions */
    .transition-colors {
      transition-property: color, background-color, border-color;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }

    .transition-all {
      transition-property: all;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }

    .transition-transform {
      transition-property: transform;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }

    .transition-opacity {
      transition-property: opacity;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }

    .duration-300 {
      transition-duration: 300ms;
    }

    .duration-500 {
      transition-duration: 500ms;
    }

    /* Hover States */
    .hover\:text-white:hover {
      color: #fff;
    }

    .hover\:bg-black\/70:hover {
      background-color: rgba(0, 0, 0, 0.7);
    }

    .hover\:border-primary\/20:hover {
      border-color: hsla(213, 100%, 45%, 0.2);
    }

    .hover\:border-primary\/50:hover {
      border-color: hsla(213, 100%, 45%, 0.5);
    }

    .hover\:border-accent\/50:hover {
      border-color: hsla(173, 100%, 45%, 0.5);
    }

    .group:hover .group-hover\:scale-110 {
      transform: scale(1.1);
    }

    .group:hover .group-hover\:bg-primary\/30 {
      background-color: hsla(213, 100%, 45%, 0.3);
    }

    .group:hover .group-hover\:bg-accent\/30 {
      background-color: hsla(173, 100%, 45%, 0.3);
    }

    .group:hover .group-hover\:from-primary\/30 {
      --tw-gradient-from: hsla(213, 100%, 45%, 0.3);
    }

    .group:hover .group-hover\:to-accent\/30 {
      --tw-gradient-to: hsla(173, 100%, 45%, 0.3);
    }

    /* Glass Effects */
    .glass {
      backdrop-filter: blur(12px);
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .glass-card {
      backdrop-filter: blur(24px);
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    }

    /* Button Styles */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      border-radius: 0.375rem;
      font-size: 0.875rem;
      font-weight: 500;
      transition: all 150ms;
      cursor: pointer;
      border: none;
    }

    .btn-primary {
      background-color: hsl(var(--primary));
      color: hsl(var(--primary-foreground));
    }

    .btn-primary:hover {
      background-color: hsla(213, 100%, 40%, 1);
    }

    .btn-secondary {
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-secondary:hover {
      background-color: rgba(0, 0, 0, 0.7);
    }

    .btn-lg {
      height: 3.5rem;
      padding: 0 2rem;
      font-size: 1.125rem;
    }

    .btn-default {
      height: 2.5rem;
      padding: 0 1rem;
    }

    /* Badge Styles */
    .badge {
      display: inline-flex;
      align-items: center;
      border-radius: 9999px;
      padding: 0.25rem 0.75rem;
      font-size: 0.75rem;
      font-weight: 500;
      transition: colors 150ms;
    }

    .badge-outline {
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: hsl(var(--foreground));
    }

    .badge-glow {
      background: linear-gradient(135deg, hsla(213, 100%, 45%, 0.15), hsla(173, 100%, 45%, 0.15));
      border: 1px solid hsla(173, 100%, 45%, 0.3);
      color: hsl(var(--accent));
      box-shadow: 0 0 20px hsla(173, 100%, 45%, 0.15);
    }

    /* Card Styles */
    .card {
      background-color: rgba( 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.75rem;
      padding: 1.5rem;
      transition: all 300ms;
    }

    .card:hover {
      border-color: hsla(213, 100%, 45%, 0.2);
    }

    .card-elevated {
      background-color: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    }

    /* Glowing Border Effect - Aceternity Style */
    .glowing-card {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      background: transparent;
    }

    .glowing-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1.5px;
      background: conic-gradient(from var(--glow-angle, 0deg) at 50% 50%,
          transparent 0deg,
          transparent 60deg,
          hsl(213, 100%, 55%) 90deg,
          hsl(173, 100%, 50%) 120deg,
          hsl(213, 100%, 55%) 150deg,
          transparent 180deg,
          transparent 360deg);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: glowing-rotate 4s linear infinite;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

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

    .glowing-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: conic-gradient(from var(--glow-angle, 0deg) at 50% 50%,
          transparent 0deg,
          transparent 60deg,
          hsla(213, 100%, 55%, 0.15) 90deg,
          hsla(173, 100%, 50%, 0.2) 120deg,
          hsla(213, 100%, 55%, 0.15) 150deg,
          transparent 180deg,
          transparent 360deg);
      filter: blur(20px);
      animation: glowing-rotate 4s linear infinite;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }

    .glowing-card:hover::after {
      opacity: 1;
    }

    .glowing-card-inner {
      position: relative;
      z-index: 1;
      background-color: rgba(15, 23, 42, 0.90);
      border-radius: calc(1rem - 1.5px);
      padding: 1.5rem;
      height: 100%;
      border: 1px solid hsla(213, 100%, 50%, 0.4);
      box-shadow: 0 0 20px hsla(213, 100%, 50%, 0.1), inset 0 1px 0 hsla(173, 100%, 50%, 0.1);
    }

    @keyframes glowing-rotate {
      0% {
        --glow-angle: 0deg;
      }

      100% {
        --glow-angle: 360deg;
      }
    }

    @property --glow-angle {
      syntax: '<angle>';
      initial-value: 0deg;
      inherits: false;
    }

    .card-feature {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .card-feature:hover {
      border-color: hsla(173, 100%, 45%, 0.5);
    }

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

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

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes bounceGentle {

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

      50% {
        transform: translateY(10px);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.5;
      }
    }

    .animate-fade-up {
      animation: fadeUp 0.5s ease-out forwards;
      opacity: 0;
    }

    .animate-fade-up-delay-1 {
      animation-delay: 0.1s;
    }

    .animate-fade-up-delay-2 {
      animation-delay: 0.2s;
    }

    .animate-fade-up-delay-3 {
      animation-delay: 0.3s;
    }

    .animate-fade-in {
      animation: fadeIn 0.6s ease-out forwards;
      opacity: 0;
    }

    .animate-fade-in-delay-1 {
      animation-delay: 1s;
    }

    .animate-bounce-gentle {
      animation: bounceGentle 2s ease-in-out infinite;
    }

    .animate-pulse {
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    /* Scroll Animations */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .animate-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .animate-on-scroll-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }

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

    .animate-on-scroll-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    }

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

    .animate-on-scroll-scale {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .animate-on-scroll-scale.is-visible {
      opacity: 1;
      transform: scale(1);
    }

    /* Icon hover glow effect */
    .icon-glow {
      transition: transform 0.3s ease-out, filter 0.3s ease-out;
    }

    .group:hover .icon-glow {
      transform: scale(1.1);
      filter: drop-shadow(0 0 8px hsla(173, 100%, 45%, 0.4));
    }

    /* Card lift animation on hover */
    .card-lift {
      transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    }

    .card-lift:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
    }

    /* Mobile menu animation */
    .slide-in-from-top {
      animation: slideInFromTop 0.3s ease-out forwards;
    }

    @keyframes slideInFromTop {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

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

    /* WebGL Background Container */
    #webgl-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    /* Aspect Ratio */
    .aspect-video {
      aspect-ratio: 16 / 9;
    }

    .aspect-\[16\/10\] {
      aspect-ratio: 16 / 10;
    }

    .object-cover {
      object-fit: cover;
    }

    .object-contain {
      object-fit: contain;
    }

    /* Image loading skeleton */
    .img-skeleton {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0;
      }

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

    /* Hero Carousel */
    .hero-carousel {
      position: relative;
      width: 480px;
      max-width: 100%;
      height: 270px;
      border-radius: 1.25rem;
      overflow: hidden;
      border: 1px solid hsla(173, 100%, 45%, 0.3);
      box-shadow: 0 0 30px hsla(173, 100%, 45%, 0.15);
      transition: transform 0.3s ease;
    }

    .hero-carousel:hover {
      transform: scale(1.02);
    }

    .hero-carousel-inner {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .hero-carousel-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .hero-carousel-item.active {
      opacity: 1;
    }

    .hero-carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-carousel-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
      pointer-events: none;
    }

    .hero-carousel-overlay .badge {
      backdrop-filter: blur(4px);
    }
