body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #e5e7eb;
    background: #020617;
  }
  
  /* Gradient buttons */
  .btn-blue {
    background: linear-gradient(to right, #22c55e, #4ade80);
    color: #020617 !important;
    border: none;
    border-radius: 30px;
  }
  .btn-green {
    background: linear-gradient(to right, #16a34a, #22c55e);
    color: #020617 !important;
    border: none;
    border-radius: 30px;
  }
  .btn-gradient {
    background: linear-gradient(to right, #22c55e, #4ade80);
    color: #020617 !important;
    border-radius: 12px;
    border: none;
  }
  
  /* HERO */
  .hero {
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at top, #020617, #000000);
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #f8fafc;
  }
  
  .hero h1 .gradient-text {
    display: block;
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #22c55e, #86efac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
  }
  
  .hero h5 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 25px;
    max-width: 1000px;
    line-height: 1.5;
    color: #e5e7eb;
  }
  
  .hero p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #9ca3af;
    max-width: 850px;
    margin-top: 25px;
    line-height: 1.6;
  }
  
  /* TICKER */
  .ticker-bar {
    background: #000000;
    color: #e5e7eb;
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
    display: flex;
    align-items: center;
  }
  
  .ticker-inner {
    display: inline-flex;
    animation: marquee 30s linear infinite;
  }
  
  .ticker-inner div {
    display: inline-block;
    margin-right: 60px;
    font-weight: 600;
  }
  
  .positive { color: #22c55e; }
  .negative { color: #fb7185; }
  
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  

  
  /* STATS */
  .stat-box {
    border-radius: 20px;
    box-shadow:
      inset 0 0 0 1px rgba(34,197,94,.25),
      0 15px 40px rgba(0,0,0,.9);
  }
  
  /* Users box */
  .stat-box.blue {
    background: #020617;
  }
  .stat-box.blue h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #22c55e;
  }
  
  /* Assets box */
  .stat-box.purple {
    background: #020617;
  }
  .stat-box.purple h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #86efac;
  }
  
  .stat-box .subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 5px;
    color: #e5e7eb;
  }
  
  .stat-box .desc {
    font-size: 1rem;
    color: #9ca3af;
    margin-top: 12px;
    line-height: 1.6;
  }
  
  /* WHY */
  .why {
    padding: 60px 20px;
    text-align: center;
  }
  
  .why h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 40px;
  }
  
  .why-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .why-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .why-card {
    background: #020617;
    color: #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    width: 280px;
    text-align: left;
    box-shadow:
      inset 0 0 0 1px rgba(34,197,94,.25),
      0 18px 45px rgba(0,0,0,.9);
    transition: transform 0.3s ease;
  }
  
  .why-card:hover {
    transform: translateY(-5px);
  }
  
  .why-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 8px 0;
  }
  
  .why-card p {
    font-size: 0.9rem;
    color: #9ca3af;
  }
  
  .why-card .icon {
    font-size: 1.5rem;
    margin-right: 6px;
  }
  
  .why-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .why-circle {
    background: radial-gradient(circle, #22c55e, #16a34a);
    color: #020617;
    font-size: 2rem;
    font-weight: bold;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(34,197,94,.7);
  }
  
  @media (max-width: 992px) {
    .why-container {
      flex-direction: column;
      align-items: center;
      gap: 50px;
    }
    .why-center {
      order: -1;
    }
    .why-column {
      align-items: center;
    }
  }
  
  /* HOW IT WORKS */
  .how {
    text-align: center;
    margin: 80px auto;
  }
  
  .how h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #22c55e;
  }
  
  .how-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .how-card {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    padding: 30px 20px;
    border-radius: 16px;
    color: #e5e7eb;
    text-align: center;
    background: #020617;
    box-shadow: inset 0 0 0 1px rgba(34,197,94,.25);
  }
  
  .how-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .how-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  /* JOIN */
  .join {
    padding: 80px 20px;
    background: #020617;
  }
  
  .join-box {
    max-width: 1100px;
    margin: auto;
    background: #020617;
    border-radius: 20px;
    box-shadow:
      inset 0 0 0 1px rgba(34,197,94,.25),
      0 25px 60px rgba(0,0,0,.9);
    padding: 50px;
  }
  
  .join-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .join-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #22c55e;
  }
  
  .join-header p {
    color: #9ca3af;
    line-height: 1.6;
  }
  
  .join-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .footer-col {
    text-align: left;
  }
  
  .footer-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #e5e7eb;
  }
  
  .logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: radial-gradient(circle, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020617;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .copyright {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
  }
  
  
