/* header/css/header.css — complete nuclear overrides with body prefix for max specificity */

body .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.7);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

body .site-header.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59,130,246,0.1);
}

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

body .logo {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

body .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

body .cta-button {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transition: all 0.3s ease;
}

body .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59,130,246,0.4);
}

body .cta-arrow::before {
  content: " →";
}

body .hamburger {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: transparent;
}

body .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

body .menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,15,0.96);
  z-index: 999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

body .menu-overlay[data-state="open"] {
  display: flex;
  opacity: 1;
}

body .menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

body .menu-link {
  font-size: 36px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

body .menu-overlay[data-state="open"] .menu-link {
  opacity: 1;
  transform: translateY(0);
}

body .menu-link:hover {
  color: #3b82f6;
}

body .skip-link {
  position: absolute;
  left: -9999px;
  top: 5px;
  background: #3b82f6;
  color: #fff;
  padding: 10px;
  z-index: 1001;
}

body .skip-link:focus {
  left: 5px;
}