:root {
  color-scheme: light;
  --aw-carbon-950: #070a11;
  --aw-carbon-900: #0b0f15;
  --aw-navy-500: #47577c;
  --aw-navy-700: #2a3550;
  --aw-red-500: #bf3425;
  --aw-red-600: #a62e1f;
  --aw-paper-0: #fdfdfc;
  --aw-paper-50: #fbfaf7;
  --aw-paper-100: #f5f3ee;
  --aw-paper-150: #efebe2;
  --aw-paper-200: #e5e0d3;
  --aw-paper-300: #c9c2b0;
  --aw-ink-500: #545a69;
  --aw-ink-900: #0b0d11;
}

.site-header {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 4.5vw, 80px);
  background: rgba(253, 253, 252, 0.94);
  border-bottom: 1px solid var(--aw-paper-200);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--aw-red-500), rgba(191, 52, 37, 0));
  pointer-events: none;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.site-brand img,
.site-header .site-brand img {
  width: 188px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--aw-ink-500);
  font-size: 13px;
  white-space: nowrap;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--aw-red-600);
}

.site-nav .site-cta,
.site-header .site-cta {
  min-height: 36px;
  border-radius: 4px;
  border: 1px solid var(--aw-red-500);
  background: var(--aw-red-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(191, 52, 37, 0.18);
}

.site-nav .site-cta:hover {
  background: var(--aw-red-600);
  border-color: var(--aw-red-600);
  color: #fff;
}

.site-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--aw-paper-300);
  border-radius: 999px;
  padding: 0 11px;
  color: var(--aw-carbon-900);
  background: var(--aw-paper-100);
  font-weight: 800;
  font-size: 12px;
}

.site-footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--aw-paper-200);
  color: var(--aw-ink-500);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    min-height: 74px;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    white-space: normal;
    gap: 10px 14px;
  }

  .site-brand img,
  .site-header .site-brand img {
    width: 158px;
  }
}
