/* --- SHARED ORKLE HEADER STYLES (Enforced 1:1) --- */
:root {
  --bg: #0a0a0f;
  --bg2: #12121a;
  --border: rgba(255,255,255,0.08);
  --accent: #ff3366;
  --accent-hover: #ff5580;
  --text: #f0f0f5;
  --text2: #a0a0b0;
  --white: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: .9rem 0;
  transition: all .3s;
  border-bottom: 1px solid transparent;
}

/* Enforce the official container width for the header to avoid Tailwind interference */
.site-header .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, .92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Inter', sans-serif !important;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  transition: color .2s;
  font-family: 'Inter', sans-serif !important;
}

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

.nav-links .nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .88rem;
  line-height: 1;
  display: inline-block;
}

.nav-links .nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all .3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .nav-links.open {
    display: flex !important;
    position: fixed;
    inset: 70px 0 auto;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    z-index: 1001;
  }

  .menu-toggle {
    display: flex;
  }
}
