h1.soon{
  text-align: center;
}

html{overflow-x: hidden;}

body{
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #010106;
  overflow-x: hidden;
  color: #d6d6d6;

  font-family: sans-serif;
}

/* animated pixel overlay */
body::before {
  content: "";
  position: fixed;
  inset: -40px; /* extra space so movement doesn't show edges */
  background-image: url("../images/pixelBG.png"); /* change path */
  background-repeat: repeat;
  background-size: 900px auto;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: pixelDrift 28s ease-in-out infinite alternate;
  will-change: transform;
}

/* optional second layer for more depth */
body::after {
  content: "";
  position: fixed;
  inset: -40px;
  background-image: url("../images/pixelBG.png");
  background-repeat: repeat;
  background-size: 1200px auto;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  animation: pixelFloat 45s linear infinite;
  will-change: transform;
}

/* keep content above overlays */
body > * {
  position: relative;
  z-index: 1;
}

@keyframes pixelDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  25% {
    transform: translate3d(-12px, 8px, 0) scale(1.01);
  }
  50% {
    transform: translate3d(10px, -10px, 0) scale(1.02);
  }
  75% {
    transform: translate3d(-8px, -6px, 0) scale(1.01);
  }
  100% {
    transform: translate3d(14px, 10px, 0) scale(1.03);
  }
}

@keyframes pixelFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-80px, -40px, 0);
  }
}
/* ------------------------ HEADER ------------------------ */
.header-wrapper{
  background: rgba(1,1,6,.7)
}

header{
  flex: 0 0 100px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px 0 80px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.header-cta {
  min-height: 44px;
  padding: 0.75rem 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: -30px;
}

#logo{
  height: 100px;
  display: block;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  display: block;
}

.logo-link:hover {
  opacity: 0.92;
}

.logo-link:focus-visible {
  outline: 2px solid rgba(0,255,200,0.6);
  outline-offset: 4px;
  border-radius: 8px;
}

.left{
  display: flex;
  align-items: center;
}

/* DESKTOP NAV ONLY */
.desktop-nav{
  height: fit-content;
  margin-left: 20px;
  margin-top: -30px;
}

.desktop-nav ul{
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a{
  display: block;
  color: #d6d6d6;
  font-size: 18px;
  letter-spacing: .5px;
  text-decoration: none;
  padding: 10px 0;
  margin: 0 25px;
  box-sizing: border-box;  
  border-bottom: 1px solid #010106;
  transition: .3s ease;
}

.desktop-nav a:hover{  
  border-bottom: 1px solid #567afd;
}

.desktop-nav a.active {
  color: #00ffc8;
  position: relative;
}

/* TOGGLE BUTTON */
.menu-toggle{
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;

  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 30;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: -5px;
  gap: 6px;

  background:
    linear-gradient(#010106, #010106) padding-box,
    linear-gradient(45deg, #3f7eef, #9c4dff, #84e59e 90%) border-box;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  transition: transform .2s ease, background .3s ease;
}

.menu-toggle:hover{
  background:
    linear-gradient(#1a1a1a, #1a1a1a) padding-box,
    linear-gradient(45deg, #3f7eef, #9c4dff, #84e59e 90%) border-box;
}

.menu-toggle:active{
  transform: scale(.97);
}

.menu-toggle span{
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition:
    transform .3s ease,
    opacity .25s ease,
    background .3s ease;
}

.menu-toggle.active span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity: 0;
}

.menu-toggle.active span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE NAV */
.mobile-nav{
  display: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(1,1,6,.92), rgba(1,1,6,.92)) padding-box,
    linear-gradient(45deg,
      rgba(63,126,239,.35),
      rgba(156,77,255,.35),
      rgba(132,229,158,.35)
    ) border-box;
}

.mobile-nav ul{
  list-style: none;
  margin: 0;
  padding: 14px;
  gap: 6px;
  display: flex;
  flex-direction: column;
}

.mobile-nav li{
  margin: 0;
  padding: 0;
}

.mobile-nav a{
  position: relative;
  display: block;
  margin: 0;
  padding: 14px 18px;
  color: #d6d6d6;
  font-size: 18px;
  letter-spacing: .5px;
  text-decoration: none;
  border-bottom: none;
  border-radius: 10px;
  transition: .3s ease;
}

.mobile-nav a.active{
  color: #00ffc8;
}

.mobile-nav a:hover:not(.cta),
.mobile-nav a:focus{
  background: linear-gradient(135deg, rgba(0, 255, 200, .2), rgba(77, 124, 255, .2));
  color: #fff;
}

.mobile-nav a:hover::before,
.mobile-nav a:focus::before{
  opacity: 1;
  transform: scaleY(1);
}

.mobile-nav li{
  opacity: 0;
  transform: translateY(-8px);
  transition: .3s ease;
}

.mobile-nav.active li{
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.active li:nth-child(1){transition-delay:.04s;}
.mobile-nav.active li:nth-child(2){transition-delay:.08s;}
.mobile-nav.active li:nth-child(3){transition-delay:.12s;}
.mobile-nav.active li:nth-child(4){transition-delay:.16s;}
.mobile-nav.active li:nth-child(5){transition-delay:.20s;}
.mobile-nav.active li:nth-child(6){transition-delay:.24s;}

/* MOBILE BREAKPOINT */
@media (max-width: 1000px){
  header{
    padding: 24px 20px 0 20px;
  }

  #logo{
    height: 64px;
  }

  .desktop-nav,
  .desktop-cta{
    display: none;
  }

  .menu-toggle{
    display: inline-flex;
  }

  .mobile-nav{
    display: block;
    position: absolute;
    top: 100px;
    left: 10px;
    right: 20px;
    z-index: 999;

    background: rgba(1, 1, 6, 0.56);
    border-radius: 14px;
    box-shadow:
      0 20px 40px rgba(0,0,0,.55),
      0 0 20px rgba(80,120,255,.10),
      0 0 40px rgba(156,77,255,.06);

    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    max-height: 0;
    overflow: hidden;

    transition:
      opacity .35s ease,
      transform .35s ease,
      max-height .4s ease;
  }

  .mobile-nav.active{
    opacity: 1;
    transform: translateY(10px);
    pointer-events: auto;
    max-height: 500px;
  }
}

@media (max-width: 640px){
  header{
    padding: 18px 16px 0 16px;
  }

  .mobile-nav{
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .mobile-nav ul{
    padding: 16px;
  }

  .mobile-nav a{
    font-size: 17px;
    padding: 12px 0;
  }

  .menu-toggle{
    width: 48px;
    height: 48px;
  }
}
/* ------------------------ CONTENT ------------------------ */
#content{
  flex: 1 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
    color: #010106;
    background: linear-gradient(135deg, #00ffc8, #4d7cff);
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(0,255,200,0.28);
}


/* ------------------------ FOOTER ------------------------ */
footer{
  flex-shrink: 0;
  flex-basis: 50px;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
  background: rgba(1, 1, 6, .7);
}


/* ------------------------ !!!!!!!!SMALL SCREEN!!!!!!!! ------------------------ */
@media only screen and (max-width: 768px) {
  /* ------------------------ HEADER ------------------------ */
  
}