*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Inter",sans-serif;
}

:root{
  --header-height:64px;
}

body{
  background:#0b0b0f;
  color:#eaeaf0;
  line-height:1.6;
  padding-top:var(--header-height);
}

/* BACKGROUND */
.bg{
  position:fixed;
  inset:0;
  background-size:cover;
  background-position:center;
  z-index:-2;
}
.overlay{
  position:fixed;
  inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.6),rgba(0,0,0,.9));
  z-index:-1;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:var(--header-height);
  background:rgba(10,10,15,.85);
  border-bottom:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(8px);
  z-index:100;
}

.header-inner{
  max-width:1100px;
  height:100%;
  margin:auto;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.logo img{
  height:32px;
  width:auto;
  display:block;
}

/* NAV */
nav{
  display:flex;
  align-items:center;
}

nav a{
  color:#eaeaf0;
  margin-left:16px;
  text-decoration:none;
  font-weight:600;
}

nav a.active{
  color:#c4162a;
}

.discord{
  border:1px solid #c4162a;
  padding:8px 12px;
  border-radius:8px;
}

/* HERO */
.hero{
  min-height:calc(100vh - var(--header-height));
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:60px 20px;
}

.hero-content{
  max-width:900px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
}

.hero-logo{
  max-width:520px;
  width:100%;
  height:auto;
  display:block;
  filter:drop-shadow(0 0 25px rgba(255,80,0,.35));
}

.hero-content p{
  font-size:18px;
  max-width:600px;
  opacity:.95;
}

/* SECTION */
.section{
  padding:100px 20px;
}

.container{
  max-width:1100px;
  margin:auto;
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

/* FOOTER */
.footer{
  padding:30px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.06);
}

/* RESPONSIVE */
@media(max-width:800px){
  .grid{
    grid-template-columns:1fr;
  }
  .hero-logo{
    max-width:360px;
  }
}

@media(max-width:480px){
  .hero-logo{
    max-width:280px;
  }
}
