/* Shared bolt.host header — matches homepage React header */

:root {
  --bolt-header-height: 64px;
}

.bolt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(18, 6, 68, 0.06);
}

.bolt-header__shell {
  max-width: 1200px;
  margin: 0 auto;
}

.bolt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--bolt-header-height);
  padding: 0 24px;
}

.bolt-header__logo img {
  height: 28px;
  width: auto;
}

.bolt-header__nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.bolt-header__link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #120644;
  transition: color 0.2s ease;
}

.bolt-header__link:hover,
.bolt-header__link.is-active {
  color: #007fff;
}

.bolt-header__cta {
  display: none;
  padding: 8px 20px;
  border-radius: 12px;
  background: #120644;
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 0 #cbff80;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.bolt-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 0 #cbff80;
}

.bolt-header__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #120644;
  cursor: pointer;
}

.bolt-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid #f3f4f6;
  background: #fff;
}

.bolt-header__mobile-nav[hidden] {
  display: none !important;
}

.bolt-header__mobile-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  color: #120644;
}

.bolt-header__mobile-link:hover,
.bolt-header__mobile-link.is-active {
  color: #007fff;
}

.bolt-header__mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 12px;
  background: #120644;
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 0 #cbff80;
}

@media (min-width: 768px) {
  .bolt-header__nav {
    display: flex;
  }

  .bolt-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .bolt-header__menu-btn {
    display: none;
  }

  .bolt-header__mobile-nav {
    display: none !important;
  }
}
