  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  /* Scrollbar Styling */
  ::-webkit-scrollbar {
      width: 8px;
  }

  ::-webkit-scrollbar-track {
      background: rgba(31, 41, 55, 0.3);
      border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb {
      background: rgba(75, 85, 99, 0.5);
      border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
      background: rgba(75, 85, 99, 0.7);
  }


  body {
      font-family: 'Exo 2', 'Roboto', 'Arial Black', sans-serif;
      background: #0a0a0b;
      color: #e4e4e7;
      overflow-x: hidden;
      position: relative;
  }

  /* Starry Background */
  body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
          radial-gradient(2px 2px at 20px 30px, #fff, transparent),
          radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
          radial-gradient(1px 1px at 90px 40px, #fff, transparent),
          radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent),
          radial-gradient(2px 2px at 160px 30px, #fff, transparent),
          radial-gradient(1px 1px at 200px 90px, rgba(255, 255, 255, 0.7), transparent),
          radial-gradient(1px 1px at 240px 50px, #fff, transparent),
          radial-gradient(2px 2px at 280px 120px, rgba(255, 255, 255, 0.9), transparent),
          radial-gradient(1px 1px at 320px 20px, #fff, transparent),
          radial-gradient(1px 1px at 360px 100px, rgba(255, 255, 255, 0.8), transparent),
          radial-gradient(2px 2px at 400px 60px, #fff, transparent),
          radial-gradient(1px 1px at 440px 140px, rgba(255, 255, 255, 0.6), transparent),
          radial-gradient(1px 1px at 480px 80px, #fff, transparent),
          radial-gradient(2px 2px at 520px 30px, rgba(255, 255, 255, 0.7), transparent),
          radial-gradient(1px 1px at 560px 110px, #fff, transparent),
          radial-gradient(1px 1px at 600px 40px, rgba(255, 255, 255, 0.8), transparent),
          radial-gradient(2px 2px at 640px 150px, #fff, transparent),
          radial-gradient(1px 1px at 680px 70px, rgba(255, 255, 255, 0.9), transparent);
      background-repeat: repeat;
      background-size: 700px 200px;
      z-index: -2;
      opacity: 0.4;
      animation: twinkle 4s infinite;
  }

  @keyframes twinkle {

      0%,
      100% {
          opacity: 0.4;
      }

      50% {
          opacity: 0.8;
      }
  }

  /* Box gradient overlay */
  body::after {
      content: '';
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg,
              rgba(55, 65, 81, 0.15) 0%,
              rgba(55, 65, 81, 0.08) 25%,
              rgba(55, 65, 81, 0.03) 50%,
              transparent 75%);
      z-index: -1;
      pointer-events: none;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  /* Header */
  header {
      padding: 15px 0;
      background: rgba(15, 15, 15, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid #27272a;
      position: sticky;
      top: 0;
      z-index: 100;
  }

  .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 12px;
  }

  .logo-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #6b7280, #374151);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: white;
      box-shadow: 0 3px 15px rgba(107, 114, 128, 0.3);
      border: 1px solid #4b5563;
  }

  .logo-text {
      color: #f9fafb;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.5px;
      font-family: 'Orbitron', monospace;
  }

  .header-actions {
      display: flex;
      gap: 12px;
  }

  .btn {
      padding: 8px 20px;
      border: 1px solid #374151;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-family: 'Orbitron', monospace;
  }

  .btn-primary {
      background: linear-gradient(135deg, #6b7280, #4b5563);
      color: white;
      border: 1px solid #6b7280;
      box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
  }

  .btn-secondary {
      background: rgba(55, 65, 81, 0.3);
      color: #e5e7eb;
      border: 1px solid #374151;
  }

  .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .btn-primary:hover {
      background: linear-gradient(135deg, #4b5563, #374151);
      box-shadow: 0 4px 20px rgba(107, 114, 128, 0.4);
  }

  .btn-secondary:hover {
      background: rgba(75, 85, 99, 0.4);
      border-color: #4b5563;
  }

  /* Hero Section */
  .hero {
      padding: 100px 0 80px;
      text-align: center;
      background: linear-gradient(180deg, rgba(10, 10, 11, 0.95) 0%, rgba(17, 17, 19, 0.95) 100%);
  }

  .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #f9fafb 0%, #9ca3af 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -1px;
      line-height: 1.1;
      font-family: 'Orbitron', monospace;
  }

  .hero p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      color: #9ca3af;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
      font-weight: 400;
  }

  .hero-features {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 60px;
      flex-wrap: wrap;
  }

  .hero-feature {
      background: rgba(17, 17, 19, 0.8);
      border: 1px solid #27272a;
      padding: 24px 20px;
      border-radius: 8px;
      backdrop-filter: blur(20px);
      min-width: 200px;
      transition: all 0.3s ease;
  }

  .hero-feature:hover {
      border-color: #6b7280;
      transform: translateY(-2px);
  }

  .hero-feature-icon {
      font-size: 1.8rem;
      margin-bottom: 10px;
  }

  .hero-feature h4 {
      font-weight: 600;
      margin-bottom: 6px;
      color: #f9fafb;
      font-family: 'Orbitron', monospace;
      font-size: 0.9rem;
  }

  .hero-feature p {
      font-size: 0.8rem;
      color: #9ca3af;
      margin: 0;
  }

  /* Features Section */
  .features {
      padding: 100px 0;
      background: rgba(15, 15, 16, 0.95);
  }

  .section-title {
      text-align: center;
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 18px;
      color: #f9fafb;
      letter-spacing: 0px;
      font-family: 'Orbitron', monospace;
  }

  .section-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: #9ca3af;
      margin-bottom: 70px;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
  }

  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
  }

  .feature-card {
      background: rgba(17, 17, 19, 0.6);
      border: 1px solid #27272a;
      padding: 32px 28px;
      border-radius: 12px;
      transition: all 0.4s ease;
      backdrop-filter: blur(20px);
  }

  .feature-card:hover {
      transform: translateY(-3px);
      border-color: #6b7280;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }

  .feature-icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #374151, #1f2937);
      border: 1px solid #4b5563;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #9ca3af;
      margin-bottom: 20px;
  }

  .feature-card h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 14px;
      color: #f9fafb;
      letter-spacing: 0.5px;
      font-family: 'Orbitron', monospace;
  }

  .feature-card p {
      color: #9ca3af;
      line-height: 1.7;
      font-size: 0.95rem;
  }

  /* Dashboard Preview */
  .dashboard-preview {
      padding: 100px 0;
      background: linear-gradient(180deg, rgba(15, 15, 16, 0.95) 0%, rgba(10, 10, 11, 0.95) 100%);
      text-align: center;
  }

  .dashboard-mockup {
      background: rgba(17, 17, 19, 0.8);
      border: 1px solid #27272a;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
      padding: 40px 32px;
      margin-top: 50px;
      max-width: 850px;
      margin-left: auto;
      margin-right: auto;
      backdrop-filter: blur(20px);
  }

  .dashboard-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 20px;
      margin-bottom: 32px;
  }

  .stat-card {
      background: linear-gradient(135deg, #1f2937, #111827);
      border: 1px solid #374151;
      color: #f9fafb;
      padding: 24px 20px;
      border-radius: 8px;
      text-align: center;
      transition: all 0.3s ease;
  }

  .stat-card:hover {
      border-color: #6b7280;
      transform: translateY(-2px);
  }

  .stat-value {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: #9ca3af;
      font-family: 'Orbitron', monospace;
  }

  @media (max-width:991px) {
      .stat-value {
          font-size: 1.5rem;
      }
  }

  .stat-label {
      font-size: 0.8rem;
      color: #6b7280;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .chart-preview {
      background: #111827;
      border: 1px solid #374151;
      height: 220px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6b7280;
      font-size: 1rem;
      font-weight: 500;
      font-family: 'Orbitron', monospace;
      letter-spacing: 1px;
  }

  /* Team Section */
  .team {
      padding: 100px 0;
      background: rgba(10, 10, 11, 0.95);
  }

  .team-card {
      background: rgba(17, 17, 19, 0.8);
      border: 1px solid #27272a;
      padding: 40px;
      border-radius: 16px;
      text-align: center;
      max-width: 550px;
      margin: 0 auto;
      backdrop-filter: blur(20px);
  }

  .team-logo {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #9ca3af;
  }

  .team-name {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #f9fafb;
      font-family: 'Orbitron', monospace;
      letter-spacing: 2px;
  }

  .team-lead {
      font-size: 1.1rem;
      color: #9ca3af;
      margin-bottom: 6px;
  }

  .lead-name {
      color: #e5e7eb;
      font-weight: 600;
      font-family: 'Orbitron', monospace;
  }

  /* CTA Section */
  .cta {
      padding: 100px 0;
      background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
      text-align: center;
      border-top: 1px solid #1f2937;
  }

  .cta h2 {
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #f9fafb;
      letter-spacing: 0px;
      font-family: 'Orbitron', monospace;
  }

  .cta p {
      font-size: 1.1rem;
      margin-bottom: 40px;
      color: #9ca3af;
      line-height: 1.6;
  }

  .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
  }

  .btn-large {
      padding: 10px 24px;
      font-size: 0.8rem;
      border-radius: 6px;
      font-weight: 400;
      letter-spacing: 0.5px;
  }

  /* Footer */
  footer {
      background: rgba(10, 10, 11, 0.98);
      border-top: 1px solid #1f2937;
      color: #9ca3af;
      padding: 50px 0 32px;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px;
      margin-bottom: 32px;
  }

  .footer-section h4 {
      margin-bottom: 16px;
      color: #f9fafb;
      font-weight: 600;
      font-size: 0.9rem;
      font-family: 'Orbitron', monospace;
      letter-spacing: 0.5px;
  }

  .footer-section a {
      color: #9ca3af;
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
      transition: color 0.3s ease;
      font-size: 0.85rem;
  }

  .footer-section a:hover {
      color: #d1d5db;
  }

  .footer-bottom {
      border-top: 1px solid #1f2937;
      padding-top: 24px;
      text-align: center;
      color: #6b7280;
      font-size: 0.85rem;
  }

  /* Animations */
  @keyframes slideUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .feature-card {
      animation: slideUp 0.7s ease forwards;
      opacity: 0;
  }

  .feature-card:nth-child(1) {
      animation-delay: 0.1s;
  }

  .feature-card:nth-child(2) {
      animation-delay: 0.2s;
  }

  .feature-card:nth-child(3) {
      animation-delay: 0.3s;
  }

  .feature-card:nth-child(4) {
      animation-delay: 0.4s;
  }

  .feature-card:nth-child(5) {
      animation-delay: 0.5s;
  }

  .feature-card:nth-child(6) {
      animation-delay: 0.6s;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .hero h1 {
          font-size: 2.5rem;
          letter-spacing: -0.5px;
      }

      .hero p {
          font-size: 1rem;
      }

      .hero-features {
          flex-direction: column;
          align-items: center;
          gap: 16px;
      }

      .header-content {
          flex-direction: column;
          gap: 16px;
      }

      .cta-buttons {
          flex-direction: column;
          align-items: center;
      }

      .features-grid {
          grid-template-columns: 1fr;
      }

      .dashboard-stats {
          grid-template-columns: repeat(2, 1fr);
      }

      .section-title {
          font-size: 1.8rem;
      }
  }

  .chart-preview {
      width: 100%;
      height: 300px;
      /* <- essential */
      position: relative;
  }

  #trendsChart {
      width: 100%;
      height: 100%;
      display: block;
  }