/* Shared marketing header for terms / privacy / how-it-works (no Tailwind build). */
.landing-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #001f3f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.landing-site-header__container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.landing-site-header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
}

.landing-site-header__logo img {
  height: 3rem;
  width: auto;
  display: block;
}

#header-menu.landing-site-header__menu {
  gap: 1.5rem;
}

.landing-site-header__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.landing-site-header__nav a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.landing-site-header__nav a:hover {
  color: #ffa500;
}

.landing-site-header__auth {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-site-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.landing-site-header__btn--ghost {
  color: #fff;
  background: transparent;
}

.landing-site-header__btn--ghost:hover {
  color: #ffa500;
  background: rgba(255, 255, 255, 0.08);
}

.landing-site-header__btn--primary {
  background: #ffa500;
  color: #fff;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.landing-site-header__btn--primary:hover {
  background: #ff8c00;
}

@media (min-width: 768px) {
  .landing-site-header__nav {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .landing-site-header__auth {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding-top: 0;
    border-top: none;
  }

  .landing-site-header__btn {
    width: auto;
  }
}
