@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* ================ BASE STYLES ================ */
:root {
  --primary-color: #ffffff; /* Bright tech green/accent */
  --primary-dark: #999999;
  --secondary-color: #6c63ff; /* Purple accent */
  --dark-bg: #000000; /* Main dark background */
  --darker-bg: #050505; /* Slightly darker for contrast */
  --dark-card: #0D0D0D; /* Card backgrounds */
  --text-primary: #ffffff;
  --text-secondary: #959595;
  --text-muted: #80808080;
  --border-color: #232323;
  --success-color: #28a745;
  --error-color: #dc3545;
  --section-intro-color: #A1A1A1;
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --headline-font: "Poppins", serif;
  --max-width: 1200px;
  --max-nav-width: 1700px;
  --border-radius: 8px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --scale: 1;

}

/* ================ RESET & TYPOGRAPHY ================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.3;
  font-size: calc(16 * var(--scale));
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
}

img {
    max-width: 100%;
    height: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

main {
    height: 100%;
    width: 100%;
    max-width: 1200px;
}

.container {
  
  width: 100%;
  height: 100%;
  max-width: var(--max-width);
  padding: 55px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  
}

.logo-wrapper {
    height: 30px;
}

.logo-wrapper img {
    height: 100%;
    width: auto;
}

.soon-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

}

.soon-hero-wrpper {
    width: 35%;
    position: relative;
}

.s-o-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.street-overlay {
  position: absolute;
  height: 100%;
  width: 100vw;
  bottom: 0;
  background: radial-gradient(at center top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 0%);
  max-width: 1200px;
  
  filter: blur(2px);
}

.brand-wrapper {
    width: 100%;
}

.brand-wrapper h1 {
    font-size: 52px;
    font-weight: 600;
    color: white;
    margin: 0;
    margin-bottom: .5rem;
    letter-spacing: 1.1px;
}

.brand-wrapper p {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 50px;
    letter-spacing: 0.1px;
}

.org-info-wrapper {
    position: relative;
    z-index: 99;
}


footer a {
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 500;
}

footer a:hover {
    opacity: .8;
}

.footer-wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: fit-content;
}

.footer-social {
    margin-top: 30px;
    padding-right: 1px;
}

.footer-nav {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.copyright {
    color: white;
    letter-spacing: 1.1px;
    margin-bottom: 20px !important;
    font-size: 18px;
    font-weight: 400;
}

.legal-links {
    display: flex;
    justify-content: space-between;
}

.email-wrapper {
    text-align: justify;
    margin: 20px auto !important;
    width: 100%;
}

.email-wrapper a {
    text-align: justify;
    width: 100%;
    letter-spacing: 3px;
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-bottom: 50px;

}



@media (max-width: 720px) {

  .header {
      opacity: 1;
      transform: translateY(0);
      /*transition: var(--transition);*/
  }

  .container {
    height: auto;
  }
  
  .large {
    display: none !important;
  }

  .small {
    display: inherit !important;
  }

  .soon-container {
    flex-direction: column;
    margin-top: 20px;
  }

  .soon-hero-wrpper {
    width: 75%;
  }

    .footer-wrapper {
        margin-bottom: 50px;
    }

    .logo-wrapper {
        height: 18px;
        margin-bottom: 60px;
    }

    .brand-wrapper h1 {
      font-size: 35px;
      font-weight: 600;
      color: white;
      margin: 0;
      margin-bottom: .5rem;
      letter-spacing: 0.2px;
  }
  
  .brand-wrapper p {
      font-size: 12px;
      font-weight: 500;
      color: white;
      margin-bottom: 10px;
      letter-spacing: 0px;

  }
  .copyright {
    font-size: 13px;
    font-weight: 500;
    color: white;
    margin-bottom: 50px;
    letter-spacing: 0.1px;
  }

  .email-wrapper a {
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-bottom: 50px;
    letter-spacing: 0.7px;
  }

  .footer-nav ul {
    margin-bottom: 10px;
  }

  .org-info-wrapper {
    margin-top: 30px;
  }

}