/* @font-face {
  font-family: "Gotham";
  src:
    url("../fonts/Gotham.woff2") format("woff2"),
    url("../fonts/Gotham.woff") format("woff");
  font-weight: 400;
  font-style: normal;
} */
 
:root {
  --color-black: #0b1214;
  --color-dark: #191f27;
  --color-navy: #1a2c55;
  --color-lime: #aaff00;
  --color-white: #ffffff;
  --color-grey: rgba(255, 255, 255, 0.65);
  --card: #0b1214;
  --section-padding: 120px;
  --content-gap: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Gotham', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-black);
    color: var(--color-white);
     font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}
h1{
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
}


/* Buttons */
.btn-outline,.btn-primary, .submitButton {
  font-size: 1.125rem;
  transition: 0.3s;
   font-family: 'Gotham', sans-serif;
}
.btn-outline {
  background: transparent;
  border: 1px solid #AAFF00;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  line-height: 1;
  cursor: pointer;
}

.btn-primary,
.submitButton {
  background: #AAFF00;
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}


/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; 
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/landing-hero-banner.png") center/cover no-repeat;
  z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 20, 0.40);  
    z-index: -1;
}
.heroContentWrapper{
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 0;
}
.heroContentWrapper, .logoHeading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.logoHeading {
  gap: 24px; 
}
.heroContentWrapper h1, .heroContentWrapper p{ 
    margin-bottom: 0;
}
.heroContentWrapper h1{ 
    font-weight: 700;
}
 
.subtitle, .note {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}
.subtitle{
    max-width: 660px;
}
.container {
  max-width: 900px;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}
 
/* Form */
::placeholder {
  color: #747C80;
  font-family: 'Gotham', sans-serif;
}
.form-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

input[type="email"] {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  width: 350px;
  font-size: 0.875rem;
  font-family: 'Gotham', sans-serif;
   min-height: 44px;
}
input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #AAFF00;
}
.submitButton {
  color: #000;
  border-radius: 8px;
  transition: 0.3s;
  min-height: 44px;
}

.submitButton:hover {
 background-color: #fff;
}

/* Responsive */

@media (max-width: 992px) {
   .hero::before {
    background-image: none;
    background: linear-gradient(90deg, #111 50%, #212121);
  }
  h1 {
    font-size: 3rem;
    line-height: 1;
  }
  .hero::after{
    background: transparent;
  }
}
@media (max-width: 600px) {
  .WaitlistFormWrapper,
  input[type="email"],
  .submitButton {
    width: 100%;
  }
}

 