@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Chakra+Petch:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #05070a;
  --bg-secondary: #0a0d14;
  --bg-card: #151a24;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --border-color: rgba(245, 158, 11, 0.3);
  --header-height: 80px;
  --font-heading: 'Chakra Petch', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, .btn {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* =========================================
   NAVIGATION & HEADER
   ========================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}

header.scrolled {
  background: rgba(10, 13, 20, 0.95); 
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(245, 158, 11, 0.3);
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1002;
}

.logo-img {
  height: clamp(30px, 4vw, 40px);
  width: auto;
  filter: brightness(1.2);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

nav ul {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

nav ul li a {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav ul li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1002;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.hamburger .bar {
  width: 25px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

/* Buttons */
.btn-tactical {
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"),
    #f59e0b;
  background-blend-mode: overlay, multiply, normal;
  color: #000;
  padding: 0.6rem 1.8rem;
  font-weight: 900;
  font-size: 0.8rem;
  border: none;
  position: relative;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1), 0 10px 15px -3px rgba(245, 158, 11, 0.3);
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,0.2);
}

.btn-tactical:hover {
  transform: translateY(-2px);
  background-color: var(--accent-hover);
  box-shadow: inset 0 0 15px rgba(0,0,0,0.2), 0 15px 25px -5px rgba(245, 158, 11, 0.4);
}

.label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .nav-wrapper {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  
  .nav-wrapper {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.6s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1001;
    padding: 2rem;
  }
  
  .nav-wrapper.active { right: 0; }
  
  nav ul { flex-direction: column; text-align: center; gap: 2.5rem; margin-bottom: 3rem; }
  nav ul li {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
  }
  
  .nav-wrapper.active nav ul li {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Staggered delay for menu items */
  .nav-wrapper.active nav ul li:nth-child(1) { transition-delay: 0.2s; }
  .nav-wrapper.active nav ul li:nth-child(2) { transition-delay: 0.3s; }
  .nav-wrapper.active nav ul li:nth-child(3) { transition-delay: 0.4s; }
  .nav-wrapper.active nav ul li:nth-child(4) { transition-delay: 0.5s; }
  .nav-wrapper.active nav ul li:nth-child(5) { transition-delay: 0.6s; }
  
  nav ul li a { font-size: 1.5rem; font-family: var(--font-heading); font-weight: 700; color: #fff; }
  
  .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
  }
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Footer */
.site-footer { background: #030507; padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; max-width: 1300px; margin: 0 auto; padding: 0 5% 3rem; }
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; max-width: 300px; }
.footer-col h4 { font-size: 0.85rem; color: #fff; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--text-secondary); font-size: 0.85rem; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 2rem 5%; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;}
.footer-bottom p, .footer-bottom .powered-by { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.footer-bottom .powered-by span { color: var(--accent); font-weight: 700; }
