:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --accent: #3245ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: none;
}
  .cursor {
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s;
      transform: translate(-50%, -50%);
  }

  .cursor-follower {
      width: 40px;
      height: 40px;
      border: 1px solid var(--accent);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.15s ease;
      transform: translate(-50%, -50%);
  }

  .cursor-hover {
      transform: scale(1.5);
      background: transparent;
      border-color: var(--accent);
  }

  /* Loading Animation */
  .loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: var(--black);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .loading-bar {
      width: 200px;
      height: 2px;
      background: rgba(255,255,255,0.1);
      position: relative;
      overflow: hidden;
  }

  .loading-bar::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 0;
      background: var(--accent);
      animation: loading 1.5s ease forwards;
  }

  @keyframes loading {
      0% { width: 0; }
      100% { width: 100%; }
  }

  /* Text Reveal Animations */
  .hero-text h1 {
      animation: fadeIn 0.8s ease forwards;
  }

  .hero-subtitle {
      animation: fadeIn 0.8s ease 0.2s forwards;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
.navbar {
    position: fixed;
    width: 100%;
    padding: 30px 50px;
    z-index: 100;
    mix-blend-mode: difference;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Clash Display', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}
  .nav-link {
      color: var(--white);
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: color 0.3s ease;
      animation: navFade 0.8s ease forwards;
      animation-delay: calc(0.1s * var(--i));
  }

  @keyframes navFade {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
.purchase-btn {
    padding: 12px 30px;
    background: var(--accent);
    border-radius: 25px;
    font-weight: 600;
}

#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-text {
    text-align: center;
}

h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: 120px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    margin-top: 20px;
    opacity: 0.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--white);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

#features {
    padding: 150px 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
  .feature-card {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.6s ease;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 40px;
      border-radius: 20px;
  }

  .feature-card.show {
      opacity: 1;
      transform: translateY(0);
  }

  /* Add staggered delays for each card */
  .feature-card:nth-child(1) { transition-delay: 0.1s; }
  .feature-card:nth-child(2) { transition-delay: 0.3s; }
  .feature-card:nth-child(3) { transition-delay: 0.5s; }

  .feature-card:hover {
      background: rgba(255,255,255,0.05);
  }
.feature-number {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    opacity: 0.7;
    font-size: 16px;
}

.feature-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
}

.navbar {
    transition: transform 0.3s ease;
}
  .pricing-section {
      padding: 200px 0;
  }

  .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
  }

  .price-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 40px;
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s ease;
  }

  .price-card:hover {
      transform: translateY(-10px);
      border-color: var(--accent);
  }

  .price-card h3 {
      font-size: 24px;
      margin-bottom: 20px;
  }

  .price-card .price {
      font-size: 42px;
      color: var(--accent);
      margin-bottom: 30px;
  }

  .features-list {
      list-style: none;
      padding: 0;
      margin: 0 0 30px 0;
  }

  .features-list li {
      margin: 10px 0;
      opacity: 0.7;
  }

  .price-card button {
      background: var(--accent);
      border: none;
      padding: 15px 40px;
      border-radius: 8px;
      color: white;
      font-weight: 500;
      cursor: pointer;
      transition: transform 0.3s ease;
  }

  .price-card button:hover {
      transform: translateY(-3px);
  }
.purchase-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: modalFade 0.3s ease;
}

.modal-content {
    background: rgba(20,20,20,0.95);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    width: 400px;
    animation: modalSlide 0.3s ease;
}

.modal-content i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.modal-content p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-content button {
    background: blue;
    border: none;
    padding: 12px 40px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-content button:hover {
    transform: translateY(-3px);
}

@keyframes modalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlide {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 82px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -2px;
    text-transform: uppercase;
}


.section-line {
    display: block;
    width: 60px;
    height: 3px;
    background: #FFFFFF;
    margin: 20px auto 0;
    border-radius: 2px;
}
