 body {
      background-color: #050505;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    .logo-grid img {
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }

    .logo-grid img:hover {
      opacity: 1;
    }

    .tech-icon {
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .tech-icon:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: translateY(-5px);
    }

    .gradient-text {
      background-image: linear-gradient(135deg, #b4f73e 0%, #87cf0d 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .highlight-text {
      color: #b4f73e;
    }

    .cta-button {
      background-color: #b4f73e;
      color: #121212;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(180, 247, 62, 0.3);
    }

    .navbar {
      backdrop-filter: blur(15px);
      background-color: rgba(5, 5, 5, 0.8);
    }

    /* Mobile menu styles */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(5, 5, 5, 0.95);
      transform: translateY(-100%);
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 40;
      padding: 7rem 2rem 2rem;
    }

    .mobile-menu.open {
      transform: translateY(0);
    }

    /* Hamburger menu animation */
    .hamburger {
      width: 24px;
      height: 24px;
      position: relative;
      cursor: pointer;
      z-index: 50;
    }

    .hamburger span {
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: white;
      border-radius: 2px;
      opacity: 1;
      left: 0;
      transform: rotate(0deg);
      transition: .25s ease-in-out;
    }

    .hamburger span:nth-child(1) {
      top: 4px;
    }

    .hamburger span:nth-child(2) {
      top: 12px;
    }

    .hamburger span:nth-child(3) {
      top: 20px;
    }

    .hamburger.open span:nth-child(1) {
      top: 12px;
      transform: rotate(135deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      left: -60px;
    }

    .hamburger.open span:nth-child(3) {
      top: 12px;
      transform: rotate(-135deg);
    }

    /* Mobile menu links animation */
    .menu-link {
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s ease;
      transition-delay: 0.1s;
    }

    .menu-link:nth-child(2) {
      transition-delay: 0.2s;
    }

    .menu-link:nth-child(3) {
      transition-delay: 0.3s;
    }

    .mobile-menu.open .menu-link {
      transform: translateY(0);
      opacity: 1;
    }

    /* Hero animations */
    .hero-title,
    .hero-subtitle,
    .hero-cta,
    .hero-badge {
      opacity: 0;
      transform: translateY(20px);
    }

    .hero-image {
      opacity: 0;
      transform: translateX(20px);
    }

    .featured-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(180, 247, 62, 0.1);
      border: 1px solid rgba(180, 247, 62, 0.3);
      border-radius: 9999px;
      padding: 0.25rem 0.75rem;
      font-size: 0.875rem;
      color: #b4f73e;
      margin-bottom: 1.5rem;
    }

    .pulse {
      animation: pulse 2s infinite;
      box-shadow: 0 0 0 rgba(180, 247, 62, 0.4);
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(180, 247, 62, 0.4);
      }

      70% {
        box-shadow: 0 0 0 10px rgba(180, 247, 62, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(180, 247, 62, 0);
      }
    }

    .floating {
      animation: floating 3s ease-in-out infinite;
    }

    @keyframes floating {
      0% {
        transform: translateY(0px);
      }

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

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

    .partner-logo {
      opacity: 0.6;
      transition: all 0.3s ease;
      filter: grayscale(100%);
    }

    .partner-logo:hover {
      opacity: 1;
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    .code-editor {
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .code-editor:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    }

    .typing-effect::after {
      content: '|';
      animation: blink 1s step-end infinite;
    }

    @keyframes blink {

      from,
      to {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    .glow {
      box-shadow: 0 0 10px rgba(180, 247, 62, 0.5);
      animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
      from {
        box-shadow: 0 0 10px rgba(180, 247, 62, 0.3);
      }

      to {
        box-shadow: 0 0 20px rgba(180, 247, 62, 0.7);
      }
    }

    .grid-bg {
      background-size: 40px 40px;
      background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.4;
      animation: blob-movement 15s infinite alternate ease-in-out;
    }

    @keyframes blob-movement {
      0% {
        transform: translate(0px, 0px) scale(1);
      }

      33% {
        transform: translate(30px, -50px) scale(1.1);
      }

      66% {
        transform: translate(-20px, 20px) scale(0.9);
      }

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

    .noise-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    .stats-item {
      opacity: 0;
      transform: translateY(20px);
    }

    .gradient-border {
      position: relative;
      padding: 2px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(180, 247, 62, 0.8), rgba(45, 212, 191, 0.3));
    }

    .gradient-border-content {
      background: #0F0F0F;
      border-radius: 14px;
      height: 100%;
    }

    .code-line {
      opacity: 0;
      transform: translateX(-20px);
    }

    .tech-chip {
      transform: scale(0.8);
      opacity: 0;
    }

    .scroll-down {
      animation: bounce 2s infinite;
    }

    @keyframes bounce {

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

      40% {
        transform: translateY(-10px);
      }

      60% {
        transform: translateY(-5px);
      }
    }

    .typewriter h1 {
      overflow: hidden;
      border-right: .15em solid #b4f73e;
      white-space: nowrap;
      margin: 0 auto;
      animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
    }

    @keyframes typing {
      from {
        width: 0
      }

      to {
        width: 100%
      }
    }

    @keyframes blink-caret {

      from,
      to {
        border-color: transparent
      }

      50% {
        border-color: #b4f73e;
      }
    }