* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #060715;
    color: #fff;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .header {
    padding: 1rem 0;
    font-family: "polymath", sans-serif;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .logo {
   width: 150px;
  }

  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 4rem 0 6rem;
  }
  
  .hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: "polymath", sans-serif;

  }
  
  .subtitle {

    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: #cccccc;
    font-family: 'Inter', sans-serif;

  }
  
  .cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    border: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 3;
    font-family: "polymath", sans-serif;
    font-weight: 300;
    background: linear-gradient(
      135deg,
      #6f84f8 0%,
      #8fa2fb 100%
    );
    box-shadow: 0 0 8px rgba(143, 162, 251, 0.4);


  }

  .cta-btn1 {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    border: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 3;
    font-family: "polymath", sans-serif;
    font-weight: 300;
    background: linear-gradient(
      135deg,
      #505050 0%,
      #b6b6b6 100%
    );
    box-shadow: 0 0 8px rgba(143, 162, 251, 0.4);


  }
  
  .cta-btn:hover {
    z-index: 3;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7); 
    background: linear-gradient(135deg, #8fa2fb 0%, #a0b2fc 100%);

  }
  
  .grey-text {
    color: silver;
    margin-top: 10px;
    margin-bottom: 3rem;
    font-style: italic;
    font-size: small;
  }
  .image-container {
    height: auto;
    border-radius: 8px;
    display: block;
    position: relative;
  }

  .glow {
    position: absolute;
  top: -420px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 145%;
  }

  .screenshot {
    max-width: 85%;
    position: relative;
    z-index: 2; 
    padding-bottom: 75px;
  }
  
  .pillars-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 85%;
}
@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.pillar-card {
  background: 
  linear-gradient(#10101C, #10101C) padding-box, 
  linear-gradient(45deg, #7F5AF0, #919191) border-box;

  border: 1.5px solid transparent;
      border-radius: 10px;
    padding: 1.5rem;
    color: #fff;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 100px;
   
        box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.10), 0px 10px 20px 0px rgba(0, 0, 0, 0.15), 0px 15px 30px 0px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px); 
    max-width: 300px;

}
.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}
.pillar-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.pillar-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.pillar-description {
    font-size: 14px;
    color: #CCCCCC;
}

.feature-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 4rem 0;
max-width: 1000px;  
margin-bottom: 120px;
text-align: left;
}

.feature-text {
  flex: 0 0 50%;
}

.feature-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.6;
}

.feature-image {
  flex: 1;
  flex: 1 0 50%; 
  text-align: center; /* Center the image horizontally if needed */
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Optional rounding of corners */
  display: block;
  margin: 0 auto; /* Center if you want it truly centered in its flex box */
}

@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-text, .feature-image {
    flex: none;
    width: 100%;
  }
  
  .feature-text h2 {
    font-size: 1.5rem;
  }
  
  .feature-text p {
    font-size: 0.95rem;
  }
  
  .feature-image img {
    margin-top: 1rem;
  }
}

  .footer {
  color: #fff;
  font-family: "Inter", sans-serif; 
  padding: 2rem 0;
  line-height: 2.5rem;

}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.footer-brand {
  flex: 1;
}

.footer-logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 6rem;  
  flex: 3;  
  justify-content: flex-end;
}

.footer-column h3 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.70);
  font-size: small;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-column a:hover {
  color: #ccc;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons li {
  display: inline-block;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  font-size: small;

}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  gap: 3rem;

}

.footer-bottom-links li {
  margin: 0;

}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
 

}

.footer-bottom-links a:hover {
  color: #ccc;

}

.lang-icon {
  font-size: 0.8rem;
  margin-left: 0.25rem;
}

.terms-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  color: white;
  line-height: 1.6;
  font-size: 16px;
}

.terms-container h1 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}

.terms-container h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

.terms-container p {
  margin-bottom: 16px;
}

.terms-container ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.terms-container li {
  margin-bottom: 8px;
}

.terms-container a {
  color: #0070f3;
  text-decoration: none;
}

.terms-container a:hover {
  text-decoration: underline;
}

.privacy-policy {
  text-align: left;
  max-width: 800px;
  color: white;
  align-items: center;
}

.privacy-policy H1 {
  font-family: "polymath", sans-serif;
}

.beta {
  min-height: 100vh;            
  display: flex;                 
  flex-direction: column;         
  align-items: center;            /* Center horizontally */
  text-align: center;    
  padding-top: 20%;
}

  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .subtitle {
      font-size: 1rem;
    }
  
    .cta-btn {
      margin-bottom: 2rem;
    }
  }
  