  :root {
      --bg: #0A0C10;
      --surface: #231638;
      --primary: #C8FF00;
      --primary-glow: rgba(200, 255, 0, 0.3);
      --text: #E6EAF2;
      --muted: #97A1B3;
      --border: rgba(200, 255, 0, 0.15);
      --card-bg: rgba(35, 22, 56, 0.4);
  }

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

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Montserrat', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
  }

  /* LOADING Screen */
  .loader {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      animation: loaderFadeOut 0.8s ease 4s forwards;
  }

  .loader-logo {
      width: 120px;
      height: 120px;
      position: relative;
      animation: logoFloat 2s ease-in-out infinite;
  }

  .loader-logo svg {
      width: 100%;
      height: 100%;
      filter: drop-shadow(0 0 30px var(--primary-glow)) drop-shadow(0 0 60px var(--primary-glow));
  }

  @keyframes logoFloat {

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

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

  .loader-text {
      font-family: 'Silkscreen', cursive;
      font-size: clamp(3rem, 8vw, 6rem);
      letter-spacing: 1rem;
      display: flex;
      gap: 0.3rem;
      color: var(--primary);
      text-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
  }

  .loader-text span {
      opacity: 0;
      animation: letterDrop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  }

  .loader-text span:nth-child(1) {
      animation-delay: 0.2s;
  }

  .loader-text span:nth-child(2) {
      animation-delay: 0.4s;
  }

  .loader-text span:nth-child(3) {
      animation-delay: 0.6s;
  }

  .loader-text span:nth-child(4) {
      animation-delay: 0.8s;
  }

  .loader-text span:nth-child(5) {
      animation-delay: 1s;
  }

  .loader-text span:nth-child(6) {
      animation-delay: 1.2s;
  }

  @keyframes letterDrop {
      0% {
          opacity: 0;
          transform: translateY(-100px) rotateX(90deg);
          filter: blur(10px);
      }

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

      100% {
          opacity: 1;
          transform: translateY(0) rotateX(0);
          filter: blur(0);
      }
  }

  @keyframes loaderFadeOut {
      to {
          opacity: 0;
          visibility: hidden;
          pointer-events: none;
      }
  }

  /* ANIMATED BG */
  .bg-grid {
      position: fixed;
      inset: 0;
      z-index: 0;
      opacity: 0.4;
      background:
          linear-gradient(var(--border) 1px, transparent 1px) 0 0 / 40px 40px,
          linear-gradient(90deg, var(--border) 1px, transparent 1px) 0 0 / 40px 40px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  }

  .bg-gradient {
      position: fixed;
      inset: 0;
      z-index: 0;
      background:
          radial-gradient(1200px 800px at 80% 0%, rgba(35, 22, 56, 0.6) 0%, transparent 60%),
          radial-gradient(800px 600px at 10% 80%, rgba(35, 22, 56, 0.5) 0%, transparent 55%);
      pointer-events: none;
  }

  .floating-particles {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
  }

  .particle {
      position: absolute;
      width: 3px;
      height: 3px;
      background: var(--primary);
      border-radius: 50%;
      opacity: 0.4;
      box-shadow: 0 0 10px var(--primary-glow);
      animation: particleFloat 20s infinite ease-in-out;
  }

  .particle:nth-child(1) {
      left: 10%;
      top: 20%;
      animation-delay: 0s;
      animation-duration: 18s;
  }

  .particle:nth-child(2) {
      left: 25%;
      top: 70%;
      animation-delay: 2s;
      animation-duration: 22s;
  }

  .particle:nth-child(3) {
      left: 50%;
      top: 30%;
      animation-delay: 4s;
      animation-duration: 20s;
  }

  .particle:nth-child(4) {
      left: 70%;
      top: 60%;
      animation-delay: 1s;
      animation-duration: 19s;
  }

  .particle:nth-child(5) {
      left: 85%;
      top: 40%;
      animation-delay: 3s;
      animation-duration: 21s;
  }

  .particle:nth-child(6) {
      left: 15%;
      top: 80%;
      animation-delay: 5s;
      animation-duration: 23s;
  }

  .particle:nth-child(7) {
      left: 90%;
      top: 15%;
      animation-delay: 2.5s;
      animation-duration: 17s;
  }

  .particle:nth-child(8) {
      left: 40%;
      top: 90%;
      animation-delay: 4.5s;
      animation-duration: 24s;
  }

  @keyframes particleFloat {

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

      25% {
          transform: translate(100px, -150px) scale(1.5);
          opacity: 0.7;
      }

      50% {
          transform: translate(-80px, 100px) scale(0.8);
          opacity: 0.3;
      }

      75% {
          transform: translate(150px, 50px) scale(1.2);
          opacity: 0.6;
      }
  }

  /*MAIN CONTENT */
  .main-content {
      position: relative;
      z-index: 1;
      opacity: 0;
      animation: contentFadeIn 1s ease 4s forwards;
  }

  @keyframes contentFadeIn {
      to {
          opacity: 1;
      }
  }

  .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 80px);
  }

  /*NAVIGATION*/
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 12, 16, 0.8);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
  }

  .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1rem clamp(20px, 5vw, 80px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      text-decoration: none;
      transition: transform 0.3s ease;
  }

  .logo:hover {
      transform: scale(1.05);
  }

  .logo-icon {
      width: 40px;
      height: 40px;
      filter: drop-shadow(0 0 15px var(--primary-glow));
  }

  .logo-text {
      font-family: 'Silkscreen', cursive;
      font-size: 1.5rem;
      color: var(--primary);
      letter-spacing: 0.1rem;
  }

  .nav-links {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      flex-wrap: wrap;
  }

  .nav-link {
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      color: var(--text);
      font-weight: 600;
      font-size: 0.9rem;
      border: 1px solid transparent;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .nav-link::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--primary);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
  }

  .nav-link:hover {
      border-color: var(--primary);
      color: var(--bg);
  }

  .nav-link:hover::before {
      opacity: 1;
  }

  .nav-link.cta {
      background: var(--primary);
      color: var(--bg);
      border-color: var(--primary);
      box-shadow: 0 0 20px var(--primary-glow);
      font-weight: 800;
  }

  .nav-link.cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 30px var(--primary-glow);
  }


  /*HERO SECTION  */
  .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
  }

  .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
  }

  @media (min-width: 1024px) {
      .hero-grid {
          grid-template-columns: 1.1fr 0.9fr;
      }
  }

  .hero-content {
      animation: slideInLeft 1s ease 4.2s backwards;
  }

  @keyframes slideInLeft {
      from {
          opacity: 0;
          transform: translateX(-50px);
      }

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

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.5rem;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 50px;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 2rem;
      animation: badgePulse 2s ease infinite;
  }

  @keyframes badgePulse {

      0%,
      100% {
          box-shadow: 0 0 15px var(--primary-glow);
      }

      50% {
          box-shadow: 0 0 30px var(--primary-glow), 0 0 50px var(--primary-glow);
      }
  }

  .hero-title {
      font-family: 'Silkscreen', cursive;
      font-size: clamp(2.5rem, 7vw, 5.5rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: var(--text);
  }

  .hero-title .highlight {
      color: var(--primary);
      position: relative;
      display: inline-block;
  }

  .hero-title .highlight::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 15px;
      background: var(--primary-glow);
      z-index: -1;
      animation: underlineGrow 0.8s ease 5s backwards;
  }

  @keyframes underlineGrow {
      from {
          width: 0;
      }

      to {
          width: 100%;
      }
  }

  .hero-subtitle {
      font-size: clamp(1.3rem, 3vw, 2rem);
      font-weight: 300;
      margin-bottom: 1.5rem;
      color: var(--muted);
  }

  .hero-description {
      font-size: clamp(1rem, 2vw, 1.15rem);
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 2rem;
      max-width: 600px;
  }

  .launch-info {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1rem 2rem;
      background: var(--card-bg);
      border: 2px solid var(--primary);
      border-radius: 50px;
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 2rem;
      box-shadow: 0 0 30px var(--primary-glow);
      animation: launchGlow 2s ease infinite;
  }

  @keyframes launchGlow {

      0%,
      100% {
          box-shadow: 0 0 30px var(--primary-glow);
      }

      50% {
          box-shadow: 0 0 50px var(--primary-glow), 0 0 80px var(--primary-glow);
      }
  }

  .launch-info .emoji {
      font-size: 1.5rem;
      animation: rocketBounce 1s ease infinite;
  }

  @keyframes rocketBounce {

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

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

  .hero-cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
  }

  .btn {
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: 800;
      font-size: 1.1rem;
      text-decoration: none;
      border: 2px solid;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
  }

  .btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s ease, height 0.6s ease;
  }

  .btn:hover::before {
      width: 400px;
      height: 400px;
  }

  .btn-primary {
      background: var(--primary);
      color: var(--bg);
      border-color: var(--primary);
      box-shadow: 0 0 30px var(--primary-glow);
  }

  .btn-primary:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 50px var(--primary-glow);
  }

  .btn-secondary {
      background: transparent;
      color: var(--primary);
      border-color: var(--primary);
  }

  .btn-secondary:hover {
      background: var(--primary);
      color: var(--bg);
      transform: translateY(-5px);
      box-shadow: 0 10px 40px var(--primary-glow);
  }

  .social-proof {
      display: flex;
      gap: 0.8rem;
  }

  .social-icon {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--card-bg);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-weight: 700;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      cursor: pointer;
  }

  .social-icon:hover {
      background: var(--primary);
      color: var(--bg);
      border-color: var(--primary);
      transform: translateY(-5px) rotate(360deg);
      box-shadow: 0 5px 20px var(--primary-glow);
  }

  /* CODE WINDOW */
  .hero-visual {
      animation: slideInRight 1s ease 4.4s backwards;
  }

  @keyframes slideInRight {
      from {
          opacity: 0;
          transform: translateX(50px);
      }

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

  .code-window {
      background: rgba(35, 22, 56, 0.6);
      border-radius: 20px;
      border: 2px solid var(--border);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--primary-glow);
      transition: all 0.4s ease;
      position: relative;
  }

  .code-window::before {
      content: '';
      position: absolute;
      inset: -100%;
      background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 60%);
      opacity: 0.3;
      filter: blur(40px);
      pointer-events: none;
  }

  .code-window:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--primary-glow);
      border-color: var(--primary);
  }

  .code-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1.5rem;
      background: rgba(10, 12, 16, 0.8);
      border-bottom: 1px solid var(--border);
  }

  .code-dots {
      display: flex;
      gap: 0.5rem;
  }

  .code-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      transition: transform 0.3s ease;
  }

  .code-dot:hover {
      transform: scale(1.3);
  }

  .code-dot.red {
      background: #FF5F57;
  }

  .code-dot.yellow {
      background: #FFBD2E;
  }

  .code-dot.green {
      background: #28CA42;
  }

  .code-title {
      font-weight: 700;
      color: var(--text);
  }

  .live-indicator {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 1rem;
      background: rgba(200, 255, 0, 0.1);
      border: 1px solid var(--primary);
      border-radius: 50px;
      font-size: 0.85rem;
      color: var(--primary);
      font-weight: 700;
  }

  .live-dot {
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
      animation: livePulse 1.5s ease infinite;
  }

  @keyframes livePulse {

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

      50% {
          opacity: 0.5;
          transform: scale(1.2);
      }
  }

  .code-content {
      padding: 2rem 1.5rem;
      font-family: 'Courier New', monospace;
      font-size: 0.95rem;
      line-height: 1.8;
      color: #A0D9E8;
      max-height: 450px;
      overflow-y: auto;
      position: relative;
  }

  .code-line {
      opacity: 0;
      animation: codeLineAppear 0.5s ease forwards;
  }

  .code-line:nth-child(1) {
      animation-delay: 4.6s;
  }

  .code-line:nth-child(2) {
      animation-delay: 4.7s;
  }

  .code-line:nth-child(3) {
      animation-delay: 4.8s;
  }

  .code-line:nth-child(4) {
      animation-delay: 4.9s;
  }

  .code-line:nth-child(5) {
      animation-delay: 5s;
  }

  .code-line:nth-child(6) {
      animation-delay: 5.1s;
  }

  .code-line:nth-child(7) {
      animation-delay: 5.2s;
  }

  .code-line:nth-child(8) {
      animation-delay: 5.3s;
  }

  @keyframes codeLineAppear {
      from {
          opacity: 0;
          transform: translateX(20px);
      }

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

  .keyword {
      color: #FF79C6;
  }

  .function {
      color: var(--primary);
  }

  .string {
      color: #F1FA8C;
  }

  .comment {
      color: #6272A4;
  }

  .scanline {
      position: absolute;
      left: 0;
      right: 0;
      height: 40%;
      top: -40%;
      background: linear-gradient(to bottom, transparent 0%, rgba(200, 255, 0, 0.1) 50%, transparent 100%);
      animation: scanlineMove 8s linear infinite;
      pointer-events: none;
  }

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

      100% {
          transform: translateY(300%);
      }
  }

  /* STATS */
  .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      padding: 4rem 0;
  }

  .stat-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .stat-card::before {
      content: '';
      position: absolute;
      inset: -100%;
      background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .stat-card:hover::before {
      opacity: 1;
      animation: statGlowRotate 3s linear infinite;
  }

  @keyframes statGlowRotate {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  .stat-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary);
      box-shadow: 0 20px 50px var(--primary-glow);
  }

  .stat-number {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      color: var(--primary);
      margin-bottom: 0.5rem;
      display: block;
  }

  .stat-label {
      color: var(--muted);
      font-weight: 600;
  }

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

  .section-header {
      text-align: center;
      margin-bottom: 4rem;
  }

  .section-title {
      font-family: 'Silkscreen', cursive;
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
      color: var(--text);
  }

  .section-subtitle {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
  }

  /* PRICING CARDS */
  .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
  }

  .pricing-card {
      background: var(--card-bg);
      border: 2px solid var(--border);
      border-radius: 30px;
      padding: 3rem 2rem;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
  }

  .pricing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: var(--primary);
      transform: scaleX(0);
      transition: transform 0.4s ease;
  }

  .pricing-card:hover::before {
      transform: scaleX(1);
  }

  .pricing-card:hover {
      transform: translateY(-15px);
      border-color: var(--primary);
      box-shadow: 0 30px 80px var(--primary-glow);
  }

  .pricing-card.featured {
      border-color: var(--primary);
      background: linear-gradient(135deg, rgba(35, 22, 56, 0.8) 0%, rgba(10, 12, 16, 0.9) 100%);
      box-shadow: 0 20px 60px var(--primary-glow);
      transform: scale(1.05);
  }

  .pricing-card.featured::before {
      transform: scaleX(1);
  }

  .featured-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      padding: 0.5rem 1rem;
      background: var(--primary);
      color: var(--bg);
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.8rem;
      letter-spacing: 0.05rem;
      box-shadow: 0 5px 20px var(--primary-glow);
  }

  .pricing-icon {
      font-size: 4rem;
      margin-bottom: 1.5rem;
      display: inline-block;
      filter: drop-shadow(0 0 20px var(--primary-glow));
      transition: transform 0.3s ease;
  }

  .pricing-card:hover .pricing-icon {
      transform: scale(1.1) rotateY(180deg);
  }

  .pricing-title {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--text);
  }

  .pricing-subtitle {
      color: var(--muted);
      margin-bottom: 2rem;
      font-size: 0.95rem;
  }

  .pricing-amount {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
  }

  .currency {
      font-size: 1.5rem;
      color: var(--primary);
      font-weight: 700;
  }

  .amount {
      font-size: 4rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1;
  }

  .original-price {
      text-decoration: line-through;
      color: var(--muted);
      font-size: 1.5rem;
  }

  .pricing-features {
      list-style: none;
      margin-bottom: 2rem;
      text-align: left;
  }

  .pricing-features li {
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      gap: 0.8rem;
      color: var(--muted);
  }

  .pricing-features li:last-child {
      border-bottom: none;
  }

  .pricing-features li::before {
      content: '✓';
      color: var(--primary);
      font-weight: 900;
      font-size: 1.2rem;
  }

  /* FEATURES SECTION*/
  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
  }

  .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 25px;
      padding: 2.5rem;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
  }

  .feature-card::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
  }

  .feature-card:hover::after {
      opacity: 1;
      animation: featureGlowRotate 4s linear infinite;
  }

  @keyframes featureGlowRotate {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  .feature-card:hover {
      transform: translateY(-12px);
      border-color: var(--primary);
      box-shadow: 0 25px 60px var(--primary-glow);
  }

  .feature-badge {
      display: inline-block;
      padding: 0.4rem 1rem;
      background: rgba(200, 255, 0, 0.1);
      border: 1px solid var(--primary);
      border-radius: 50px;
      color: var(--primary);
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      letter-spacing: 0.05rem;
  }

  .feature-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      display: inline-block;
      filter: drop-shadow(0 0 15px var(--primary-glow));
      transition: transform 0.3s ease;
  }

  .feature-card:hover .feature-icon {
      transform: scale(1.15) rotate(5deg);
  }

  .feature-title {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--text);
  }

  .feature-description {
      color: var(--muted);
      line-height: 1.7;
  }

  /* TRACKS SECTION */
  .tracks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
  }

  .track-panel {
      background: linear-gradient(135deg, var(--card-bg) 0%, rgba(10, 12, 16, 0.8) 100%);
      border: 2px solid var(--border);
      border-radius: 30px;
      padding: 3rem;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
  }

  .track-panel::before {
      content: '';
      position: absolute;
      inset: -100%;
      background: conic-gradient(from 0deg at 50% 50%, var(--primary-glow) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
  }

  .track-panel:hover::before {
      opacity: 0.3;
      animation: trackGlowSpin 3s linear infinite;
  }

  @keyframes trackGlowSpin {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  .track-panel:hover {
      transform: translateY(-12px);
      border-color: var(--primary);
      box-shadow: 0 30px 70px var(--primary-glow);
  }

  .track-label {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: var(--primary);
      color: var(--bg);
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      letter-spacing: 0.05rem;
      box-shadow: 0 5px 20px var(--primary-glow);
  }

  .track-title {
      font-family: 'Silkscreen', cursive;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: var(--text);
  }

  .track-list {
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .track-list li {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      color: var(--muted);
      line-height: 1.7;
      transition: all 0.3s ease;
  }

  .track-list li:last-child {
      border-bottom: none;
  }

  .track-list li::before {
      content: '▸';
      color: var(--primary);
      font-weight: 900;
      font-size: 1.2rem;
      flex-shrink: 0;
  }

  .track-list li:hover {
      color: var(--text);
      padding-left: 0.5rem;
  }

  /* FAQ SECTION */
  .faq-container {
      max-width: 900px;
      margin: 0 auto;
  }

  .faq-item {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .faq-item:hover {
      border-color: var(--primary);
  }

  .faq-question {
      width: 100%;
      padding: 1.5rem 2rem;
      background: transparent;
      border: none;
      color: var(--text);
      font-size: 1.1rem;
      font-weight: 700;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: all 0.3s ease;
  }

  .faq-question:hover {
      color: var(--primary);
  }

  .faq-icon {
      font-size: 1.5rem;
      color: var(--primary);
      transition: transform 0.3s ease;
  }

  .faq-item.active .faq-icon {
      transform: rotate(45deg);
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: var(--muted);
      line-height: 1.7;

  }

  .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 2rem 1.5rem;
  }

  /*  CTA SECTION  */
  .cta-section {
      background: linear-gradient(135deg, var(--card-bg) 0%, rgba(10, 12, 16, 0.9) 100%);
      border: 2px solid var(--border);
      border-radius: 40px;
      padding: 5rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .cta-section::before {
      content: '';
      position: absolute;
      inset: -50%;
      background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
      opacity: 0.3;
      animation: ctaGlow 5s ease infinite;
  }

  @keyframes ctaGlow {

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

      50% {
          transform: scale(1.2);
          opacity: 0.5;
      }
  }

  .cta-content {
      position: relative;
      z-index: 1;
  }

  .cta-title {
      font-family: 'Silkscreen', cursive;
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1.5rem;
      color: var(--text);
  }

  .cta-description {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--muted);
      margin-bottom: 2.5rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
  }

  .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
  }

  /*FOOTER */
  footer {
      margin-top: 5rem;
      padding: 3rem 0;
      border-top: 1px solid var(--border);
      text-align: center;
  }

  .footer-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
  }

  .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.8rem;
  }

  .footer-logo-icon {
      width: 50px;
      height: 50px;
      filter: drop-shadow(0 0 20px var(--primary-glow));
  }

  .footer-logo-text {
      font-family: 'Silkscreen', cursive;
      font-size: 2rem;
      color: var(--primary);
  }

  .footer-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
  }

  .footer-link {
      color: var(--muted);
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: 600;
  }

  .footer-link:hover {
      color: var(--primary);
  }

  .footer-text {
      color: var(--muted);
      font-size: 0.9rem;
  }

  /*RESPONSIVE DESIGN */
  @media (max-width: 1024px) {
      .tracks-grid {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 768px) {

      .nav-link {
          display: none;
      }

      .hero-grid {
          grid-template-columns: 1fr;
          text-align: center;
      }

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

      .hero-description {
          max-width: 100%;
      }

      .hero-cta {
          justify-content: center;
          width: 100%;
      }

      .btn {
          width: 100%;
      }

      .pricing-grid {
          grid-template-columns: 1fr;
      }

      .pricing-card.featured {
          transform: scale(1);
      }

      .features-grid,
      .tracks-grid {
          grid-template-columns: 1fr;
      }

      .cta-buttons {
          flex-direction: column;
          width: 100%;
      }

      .btn {
          width: 100%;
          max-width: 400px;
      }
  }

  @media (max-width: 480px) {
      .loader-text {
          font-size: 2.5rem;
          letter-spacing: 0.5rem;
      }

      .section {
          padding: 3rem 0;
      }

      .track-panel {
          padding: 2rem;
      }

      .cta-section {
          padding: 3rem 1.5rem;
      }
  }

  .fade-in {
      opacity: 1;
      transform: none;
  }


  /* SMOOTH SCROLLBAR */
  ::-webkit-scrollbar {
      width: 10px;
  }

  ::-webkit-scrollbar-track {
      background: var(--bg);
  }

  ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
      box-shadow: 0 0 10px var(--primary-glow);
  }