@font-face {
    font-family: 'Overpass Mono';
    src: url('assets/fonts/OverpassMono-Bold.woff2') format('woff2'),
        url('assets/fonts/OverpassMono-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Overpass Mono';
    src: url('assets/fonts/OverpassMono-Medium.woff2') format('woff2'),
        url('assets/fonts/OverpassMono-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Overpass Mono';
    src: url('assets/fonts/OverpassMono-Regular.woff2') format('woff2'),
        url('assets/fonts/OverpassMono-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Holtwood One SC';
    src: url('assets/fonts/HoltwoodOneSC-Regular.woff2') format('woff2'),
        url('assets/fonts/HoltwoodOneSC-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #efe6e6;
  background: #000;
  overflow: hidden;
}

#spray {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.dec-img .decor {
  width: 70%;
  height: auto;
  opacity: 0.4;
}

.navbar-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 24px;
  left: 0;
  z-index: 1000;
  padding: 0 60px;
}

.navbar {
  width: 1317px;
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(38, 37, 37, 0.48);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 12px;
}

.nav-left img {
  width: 50%;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 70px;
  background: #fff;
  border-radius: 15px;
}

.nav-right .link{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 14px;
}

.venture{
  font-size: 14px;
  color: #1B1818;
  white-space: nowrap;
  text-decoration: none;
}

.nav-right img {
  width: 100%;
}

.main-section {
  position: relative;
  top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 80vh;
  padding: 40px;
}

.content {
  max-width: 880px;
}

/* Gentle slide-up animation for main content children (smooth & light) */
.content > * {
  opacity: 0;
  transform: translateY(20px) scale(0.998);
  will-change: transform, opacity;
  transition: opacity 180ms linear;
}

.content.animate-in > * {
  /* slightly shorter duration, softer easing for a lighter feel */
  animation: slideUp 600ms ease-in-out forwards;
}

/* Subtle stagger delays (short and airy) */
.content.animate-in > *:nth-child(1) {
  animation-delay: 100ms;
}
.content.animate-in > *:nth-child(2) {
  animation-delay: 260ms;
}
.content.animate-in > *:nth-child(3) {
  animation-delay: 400ms;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.998);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .content > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

.main-logo {
  width: 50%;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.tagline {
  font-family: "Overpass Mono";
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.36px;
  margin-bottom: 50px;
  text-align: center;
  vertical-align: middle;
  max-width: 874px;
  position: relative;
  z-index: 1;
}

.launching {
  font-size: 72px;
  font-weight: 400;
  color: #fff;
  font-family: 'Holtwood One SC';
  line-height: 79.2px;
  letter-spacing: -1.44px;
  position: relative;
  z-index: 1;
}

.decor {
  position: absolute;
  width: 1083px;
  height: 182px;
  opacity: 0.4;
  filter: blur(25px);
  overflow: hidden;
    right: 0;
    left: auto;
    overflow: hidden;
}

.decor-top {
  top: 170px;
  left: 0;
}

.decor-bottom {
  bottom: 20px;
  right: 0;
}


@media screen and (max-width: 1439px) and (min-width: 810px) {
  .decor {
    width: 890px;
    height: 182px;
  }
  .launching{
    font-size: 56px;
  }
}
@media screen and (max-width: 890px) and (min-width: 810px) {
  .decor {
    width: 805px;
    height: 182px;
  }
}
@media screen and (max-width: 810px){
  .decor {
    width: 100%;
  }
  .navbar-wrapper{
    padding: 0 40px;
  }
  .navbar{
    padding: 15px 12px;
  }
  .nav-left img {
    width: 133px;
    height: 28px;
  }
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 117px;
    height: 44px;
    background: #fff;
    border-radius: 15px;
  }
  .nav-right .link{
    gap: 4px;
  }
  .venture{
    font-size: 10px;
  }
  .nav-right img {
    width: 30px;
    height: 30px;
  }
  .main-logo {
    width: 323px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
  }
  .tagline{
    font-size: 14px;
  }
  .launching{
    font-size: 28px;
  }
}