/* Shared with apps/website site header (globals.css). Used by static brochure HTML. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 248, 252, 0.78);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid rgba(219, 228, 238, 0.7);
}

.site-header .site-header-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1160px;
  padding: 0.9rem 1.25rem;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 850;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--foreground);
}

.site-header .brand-mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  object-fit: contain;
  background: transparent;
}

.site-header .header-links {
  align-items: center;
  color: var(--muted-strong);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.site-header .header-links a {
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.site-header .header-links a:hover {
  color: var(--foreground);
  background: rgba(14, 165, 233, 0.1);
}

.site-header .header-cta {
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
}

.site-header .header-cta:hover {
  background: #143a59 !important;
  color: #fff !important;
}

@media (max-width: 640px) {
  .site-header .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }
  .site-header .header-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }
}

.print-mark {
  display: none;
}

@media print {
  .site-header {
    display: none;
  }

  .print-mark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding: 2.5mm 0 0;
    border-top: 1px solid rgba(219, 228, 238, 0.95);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .print-mark .print-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: #0b1f33;
    font-weight: 800;
    font-size: 11pt;
    letter-spacing: -0.03em;
  }

  .print-mark .print-brand img {
    width: 16px;
    height: 16px;
    display: block;
  }

  .print-mark .print-url {
    color: #3f556b;
    font-size: 8.5pt;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
}
