body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #000;
  }
  
/* Gradient buttons */
.btn-blue {
  background: linear-gradient(to right, #2563eb, #9333ea);
  color: white !important;
  border: none;
  border-radius: 30px;
}
.btn-green {
  background: linear-gradient(to right, #10b981, #16a34a);
  color: white !important;
  border: none;
  border-radius: 30px;
}
.btn-gradient {
  background: linear-gradient(to right, #2563eb, #9333ea);
  color: white !important;
  border-radius: 12px;
  border: none;
}




.hero {
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #fefdf8, #6ee7b7);
  }
  

  .hero h1 {
    font-size: 4rem;         
    font-weight: 800;       
    line-height: 1.2;
    margin-bottom: 10px;
  }
  
  
  .hero h1 .gradient-text {
    display: block;
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #2563eb, #9333ea);
    -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;
  }
  
  .hero p {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(0,0,0,0.75);
    max-width: 850px;
    margin-top: 25px;
    line-height: 1.6;
  }
  


.ticker-bar {
    background: black;
    color: white;
    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: #10b981; }  
  .negative { color: #ef4444; }  
  
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } 
  }
  


/* MISSION */
.mission {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #f0fdf4); 
    text-align: center;
  }
  
  .mission h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 30px;
  }
  
  .mission p {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
    max-width: 1000px;
    margin: 0 auto 20px auto;
    line-height: 1.7;
  }

 /* STATS */

.stat-box {
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  /* Users box */
  .stat-box.blue {
    background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
  }
  .stat-box.blue h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2563eb;
  }
  
  /* Assets box */
  .stat-box.purple {
    background: linear-gradient(to bottom right, #faf5ff, #ede9fe);
  }
  .stat-box.purple h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #9333ea;
  }
  
 
  .stat-box .subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 5px;
  }
  
  
  .stat-box .desc {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 12px;
    line-height: 1.6;
  }


.why {
    padding: 60px 20px;
    text-align: center;
  }
  
  .why h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #16a34a; 
    margin-bottom: 40px;
  }
  
  /* Layout */
  .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: #111;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 280px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    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: #ddd;
  }
  
  .why-card .icon {
    font-size: 1.5rem;
    margin-right: 6px;
  }
  
  
  .why-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .why-circle {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  }
  
  
  @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;
  }
  
  .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: #fff;
    text-align: center;
  }
  
  .how-card.blue { background: linear-gradient(135deg, #2563eb, #3b82f6); }
  .how-card.green { background: linear-gradient(135deg, #16a34a, #22c55e); }
  .how-card.purple { background: linear-gradient(135deg, #7c3aed, #9333ea); }
  .how-card.pink { background: linear-gradient(135deg, #db2777, #e11d48); }
  
  .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: linear-gradient(to bottom right, #f8fafc, #f0fff4);
  }
  
  .join-box {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    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;
  }
  
  .join-header p {
    color: #444;
    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;
  }
  
  .logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(to right, #3b82f6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .copyright {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #777;
  }
  

  
  
