/* ================= BASE ================= */
:root{
  --bg: #050507;
  --text: rgba(255,255,255,0.9);
  --muted: rgba(255,255,255,0.6);
  --accent: #ff6a00;
  --header-height: 84px;
}

*{ box-sizing: border-box; }

html, body{
  margin:0;
  padding:0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a{ color: inherit; text-decoration: none; }

/* ================= HEADER ================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(5,5,7,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner{
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark{
  height: 120px;
  width: auto;
  display: block;
  transform: translateY(14px);
}

.nav-home{
  display: none;
}

.nav{
  display: flex;
  gap: 22px;
  margin: 0 auto; /* centers nav */
}

.nav a{
  font-weight: 800;      /* 1500 isn't a valid standard weight; use 700/800/900 */
  letter-spacing: .08em;
  font-size: 1.20rem;
  color: var(--muted);
  position: relative;
}

.nav a:hover{ color: var(--text); }

.nav a.is-active{
  color: var(--text);
}

.nav a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;
  height:2px;
  background: rgba(255,106,0,.7);
  box-shadow: 0 0 18px rgba(255,106,0,.35);
}

/* ================= VIRTUAL PAGES ================= */
.page{
  display: none;
  min-height: calc(100vh - var(--header-height));
  padding: 56px 20px;
  opacity: 0;
  transition: opacity .25s ease;
}

.page.active{
  display: block;
  opacity: 1;
}

.page-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.muted{ color: var(--muted); }

/* ================= HERO ================= */
.hero{
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-logo{ margin-bottom: 36px; }

.hero-logo img{
  width: min(560px, 90%);
  height: auto;
  filter:
    drop-shadow(0 25px 80px rgba(0,0,0,.9))
    drop-shadow(0 0 45px rgba(255,110,0,.35));
  animation: slowFloat 8s ease-in-out infinite;
}

@keyframes slowFloat{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0); }
}

.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ================= BUTTONS ================= */
.btn{
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  font-weight: 700;
  letter-spacing: .08em;
  transition: all .25s ease;
}

.btn:hover{ background: rgba(255,255,255,0.12); }

.btn-primary{
  border-color: rgba(255,106,0,.6);
  background: rgba(255,106,0,.18);
}

.btn-primary:hover{ background: rgba(255,106,0,.28); }

.btn-ghost{ background: transparent; }

/* ================= NEWS ================= */
.news-item{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 18px;
  margin: 14px 0;
}

.news-date{
  margin: 0 0 8px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  letter-spacing: .08em;
}

.news-title{
  margin: 0 0 8px;
  font-size: 1.3rem;
}

/* ================= FOOTER ================= */
.footer{
  text-align: center;
  padding: 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: .85rem;
}

/* ================= MOBILE ================= */
@media (max-width: 700px){
  .nav{ display: none; }

  .brand-mark{
    height: 90px;
    transform: translateY(10px);
  }
	
/* ================= LOGO ANIMATION ================= */
@keyframes logoPulse{
  0%{
    filter:
      drop-shadow(0 25px 80px rgba(0,0,0,.9))
      drop-shadow(0 0 30px rgba(255,110,0,.25));
  }
  50%{
    filter:
      drop-shadow(0 25px 80px rgba(0,0,0,.9))
      drop-shadow(0 0 60px rgba(255,110,0,.55));
  }
  100%{
    filter:
      drop-shadow(0 25px 80px rgba(0,0,0,.9))
      drop-shadow(0 0 30px rgba(255,110,0,.25));
  }
}

#home .hero-logo img{
  animation: logoPulse 4.5s ease-in-out infinite;
}

/* ================= HOME LOGO INTRO ================= */
@keyframes logoIntro{
  0%{
    opacity: 0;
    transform: scale(0.82);
    filter:
      drop-shadow(0 25px 80px rgba(0,0,0,.9))
      drop-shadow(0 0 0 rgba(255,110,0,0));
  }
  60%{
    opacity: 1;
    transform: scale(1.04);
    filter:
      drop-shadow(0 25px 80px rgba(0,0,0,.9))
      drop-shadow(0 0 55px rgba(255,110,0,.55));
  }
  100%{
    opacity: 1;
    transform: scale(1);
    filter:
      drop-shadow(0 25px 80px rgba(0,0,0,.9))
      drop-shadow(0 0 40px rgba(255,110,0,.35));
  }
}

/* This class will be toggled by JS */
#home .hero-logo img.logo-intro{
  animation: logoIntro 900ms ease-out 1 both;
}
	
}