#glass-canvas-wrapper {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

#header {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 15vh;
  padding-inline: var(--section-px);
  overflow: hidden;
}

#header .container {
  position: relative;
  z-index: 1;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header-logo {
  width: clamp(400px, 45vw, 500px);
  height: auto;
  margin-bottom: var(--gap-md);
}

.header-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 0.78rem;
  color: var(--text-muted);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.08em;
}

.header-subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2rem);
  color: var(--text-light);
  letter-spacing: 0.1rem;
  margin-bottom: 1.6rem;
}

.header-body {
  max-width: 60ch;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: var(--gap-lg);
  line-height: 1.7;
}

.glass-container {
  width: 100%;
  height: 100%;
}

@media (max-width: 680px) {
  .header-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }
}