/* styles.css */
:root {
    --bg: #0d0c1d;
    --primary: #5c6ac4;
    --text: #ffffff;
    --text-sub: #b0b0c3;
    --btn-hover: #7382e3;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
    background: var(--bg);
}
  body {
        background: linear-gradient(145deg, #0d0c1d, #1e1d2f);

    color: var(--text);
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height:100vh;
  }
  a.logo{
    color:#30A5B2;
    text-decoration: none;
    font-size:18px;
    display:flex;
    justify-content: center;
    gap:5px
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
  }

  .nav-buttons a {
    margin-left: 1rem;
    text-decoration: none;
    color: var(--text);
    margin-top:5px;
  } 
  .nav-buttons  {
    text-align: right;
  } 
  
  .sign-in:hover {
    text-decoration: underline;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease-in-out;
  }
  
  .primary {
    background: var(--primary);
    color: white;
  }
  
  .primary:hover {
    background: var(--btn-hover);
  }
  
  .secondary {
    background: #2a2b3c;
    color: var(--text-sub);
  }
  
  .secondary:hover {
    background: #3a3b4c;
  }
  
  .small {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
  .main{
    min-height:100vh;
  }    


  .hero {
    text-align: center;
    padding: 4rem 2rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  .highlight {
    color: var(--primary);
  }
  
  .subtext {
    color: var(--text-sub);
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom:40px;
    flex-wrap:wrap
  }
  .hero-buttons a{
    min-width:250px;
  }
  .mockup {
    display: flex;
    justify-content: center;
  }
  
  .mockup img {
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  h1{
    text-transform: uppercase;
    line-height: 1.2;
  }
  .corner-cta{
    background-color: orangered;
  }
    .corner-cta a{
    color:#2a2b3c;
  }

  .contact-container {
  max-width: 600px;
  margin: 5rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.contact-heading {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-subtext {
  color: var(--text-sub);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  background: #1e1d2f;
  border: 1px solid #444;
  padding: 0.75rem;
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #25243a;
}
.text-content{
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
#disclaimer a, .text-content a{
  color:var(--primary);
}
@media only screen and (max-width: 600px) {
  .nav-buttons .sign-in {
    display:none;
  }
}
@media only screen and (max-width: 346px) {
  .nav-buttons{
    display:none;
  }
  .hero h1 div{
    text-align: left;
  }
}

/* styles.css */

.early-supporters {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(145deg, #0d0c1d, #1e1d2f);
}

.early-supporters h2 {
  color:rgb(92, 106, 196);
  font-size: 1.8rem;
  margin-bottom: 40px;

}

.supporters-container {
  max-width: 1200px;
  margin: 0 auto;
}

.early-supporters .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.early-supporters .logos img {
  max-height: 60px;
  filter: grayscale(100%) brightness(120%);
}

.early-supporters .logos img:hover {
  opacity: 1;
}