.anth-home .anth-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0, 1, 2, 0.72);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.anth-home .anth-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.anth-home .anth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 64px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.anth-home .anth-logo svg {
  color: var(--teal);
  flex-shrink: 0;
  height: 100%;
  width: auto;
}

.anth-home .anth-logo-wordmark {
  height: 60%;
  width: auto;
}

.anth-home .anth-nav {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
}

.anth-home .anth-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
}

.anth-home .anth-nav a:hover {
  color: var(--teal);
}

.anth-home .anth-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.anth-home .anth-btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .anth-home .anth-nav {
    display: none;
  }
}
