@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
/* =============================Common styles */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 8px;
  }
}

.ul-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #000;
  font-family: "Instrument Sans", sans-serif;
}

img {
  width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.global-width {
  width: 1300px;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .global-width {
    width: 100%;
    padding: 0 15px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  padding: 1.2rem 2.4rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.site-header .container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo img {
  height: 5.2rem;
  width: auto;
}
.site-header .menu-toggle {
  display: none;
}
.site-header nav ul {
  display: flex;
  gap: 2.4rem;
}
.site-header nav ul li a {
  color: #040308;
  font-size: 1.6rem;
  font-weight: 400;
  transition: 0.3s ease;
}
.site-header nav ul li a.active, .site-header nav ul li a:hover {
  background: radial-gradient(circle at top left, #FF6EB7, #E20D79);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media only screen and (max-width: 767px) {
  .site-header nav ul li a {
    font-size: 1.6rem;
    font-weight: 500;
  }
}
.site-header .button-group a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 3rem;
  padding: 1.1rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .site-header .button-group a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
}
.site-header .button-group .btn-gradient {
  color: #fff;
  background: radial-gradient(circle at top left, #FF6EB7, #E20D79);
}
.site-header .button-group .btn-gradient img {
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .site-header .button-group .btn-gradient img {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.site-header .button-group .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(226, 13, 121, 0.4);
}
.site-header .button-group .btn-gradient:hover img {
  transform: translateX(4px);
}
@media only screen and (max-width: 767px) {
  .site-header nav ul {
    display: none;
  }
  .site-header .button-group {
    display: none;
  }
  .site-header .menu-toggle {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    z-index: 1001;
    border-radius: 2.2rem;
    background: #fff;
    padding: 0.4rem 0.1rem;
  }
  .site-header .menu-toggle span {
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: 0.4s;
  }
  .site-header .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    height: 1px;
    width: 80%;
  }
  .site-header .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .site-header .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    height: 1px;
    width: 80%;
  }
  .site-header .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #1F1F1F;
    padding: 10rem 2rem;
    transition: right 0.4s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    text-align: center;
  }
  .site-header .mobile-nav.open {
    right: 0;
  }
  .site-header .mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: flex-start;
  }
  .site-header .mobile-nav ul li {
    border-bottom: 1px solid #fff;
    padding-bottom: 1rem;
    width: 33rem;
    text-align: left;
  }
  .site-header .mobile-nav ul li a {
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    text-align: left;
  }
}

.mobile-login-text {
  display: none;
}
@media only screen and (max-width: 767px) {
  .mobile-login-text {
    display: block;
    margin-top: 2rem;
  }
  .mobile-login-text a {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
}

.coming-soon-hero {
  position: fixed;
  width: 100%;
  height: 100vh;
  padding-top: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/kosmoz.jpg") no-repeat center center/cover;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .coming-soon-hero {
    background: url("../images/mob-res.jpg") no-repeat center center/cover;
    margin-top: 8rem;
  }
}
.coming-soon-hero .coming-soon-content {
  position: relative;
  text-align: center;
  color: #fff;
}
.coming-soon-hero .coming-soon-content h3 {
  font-size: 2.2rem;
  color: #FFFFFF;
  letter-spacing: 8px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-weight: 400;
}
.coming-soon-hero .coming-soon-content h1 {
  font-size: 10rem;
  font-weight: 600;
  line-height: 64px;
}

@media only screen and (max-width: 767px) {
  .site-header {
    padding: 1rem 1.5rem;
  }
  .site-header nav ul {
    gap: 1.2rem;
  }
  .site-header nav ul li a {
    font-size: 1rem;
  }
  .coming-soon-hero {
    padding-top: 0;
  }
  .coming-soon-hero .coming-soon-content h1 {
    font-size: 8rem;
  }
  .coming-soon-hero .coming-soon-content h3 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */