/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI", system-ui, sans-serif;
}

body{
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

/* BACKGROUND */
.hero-bg{
  position:fixed;
  inset:0;
  background:url("D96BA18F-BF72-4615-9E67-9A387DE47ABA.png") center/contain no-repeat;
  opacity:0.25;
  z-index:-1;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:20px;
  width:100%;
  display:flex;
  justify-content:center;
  z-index:100;
}

.nav-glass{
  width:85%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 30px;
  background:rgba(255,255,255,0.08);
  border-radius:50px;
  backdrop-filter:blur(20px);
  box-shadow:0 0 30px rgba(0,255,255,0.15);
  position:relative;
}

/* LOGO CENTER */
.logo{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:2px;
  cursor:pointer;
}

.logo img{
  height:35px;
  display:block;
}

/* MENU BUTTON */
.menu-btn{
  width:30px;
  height:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
  z-index:2;
}

.menu-btn span{
  height:3px;
  background:#6effff;
  border-radius:5px;
  transition:0.4s;
}

/* HAMBURGER → X */
.menu-btn.active span:nth-child(1){
  transform:rotate(45deg) translate(6px,6px);
}
.menu-btn.active span:nth-child(2){
  opacity:0;
}
.menu-btn.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* FULLSCREEN MENU */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  backdrop-filter:blur(30px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:30px;
  opacity:0;
  pointer-events:none;
  transition:0.5s;
  z-index:999;
}

.menu-overlay.show{
  opacity:1;
  pointer-events:auto;
}

.menu-overlay a{
  font-size:32px;
  color:#fff;
  text-decoration:none;
  opacity:0.75;
  transition:0.3s;
}

.menu-overlay a:hover{
  opacity:1;
  color:#6effff;
}

/* CLOSE BUTTON */
.menu-close{
  position:absolute;
  top:30px;
  right:40px;
  font-size:36px;
  background:none;
  border:none;
  color:#6effff;
  cursor:pointer;
  opacity:0.8;
}

.menu-close:hover{
  opacity:1;
  transform:scale(1.1);
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:0 20px;
}

.hero h1{
  font-size:clamp(40px,6vw,80px);
  line-height:1.1;
}

.hero span{
  color:#6effff;
  text-shadow:0 0 40px rgba(110,255,255,0.7);
}

.hero p{
  margin-top:20px;
  font-size:18px;
  opacity:0.8;
  max-width:600px;
}

.hero button{
  margin-top:30px;
  padding:15px 40px;
  border:none;
  border-radius:30px;
  background:#6effff;
  color:#000;
  font-size:18px;
  cursor:pointer;
}

/* SECTIONS */
.section{
  max-width:1000px;
  margin:120px auto;
  padding:0 20px;
  text-align:center;
  opacity:0;
  transform:translateY(40px);
  transition:1s;
}

.section h2{
  color:#6effff;
  margin-bottom:20px;
}

.section p{
  opacity:0.85;
  line-height:1.6;
}

/* HIGHLIGHT BLOCK */
.highlight{
  background:rgba(255,255,255,0.05);
  padding:60px 20px;
  border-radius:20px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:40px;
}

/* FOOTER */
footer{
  text-align:center;
  padding:40px;
  opacity:0.6;
  font-size:14px;
}