/* Wiederverwendbare Bausteine: Schaltflächen, Karten, Überschriften und kleine Kennzeichnungen.
   Bei mehrfach definierten Selektoren gilt die CSS-Kaskade: spätere bzw. spezifischere Regeln können frühere überschreiben. */
/* NOTE: Wiederverwendbare Bausteine: Button, Card, Tag, Filter */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.6);
}

.page-title {
  margin: 1rem 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
  transition:
    transform 0.25s var(--ee),
    background 0.25s var(--ee),
    border-color 0.25s var(--ee);
}

.btn-primary {
  /* Solid surfaces keep calls to action calm and legible. */
  background: #ffffff;
  color: var(--bg);
  box-shadow:
    0 16px 30px rgba(255, 255, 255, 0.06),
    0 16px 45px rgba(167, 139, 250, 0.15);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary:hover,
.btn-secondary:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 3px solid rgba(140, 82, 255, 0.75);
  outline-offset: 3px;
}

.glass-card,
.panel,
.info-card,
.contact-card,
.legal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: var(--shadow);
}

.info-card,
.contact-card,
.legal-card {
  padding: 1.2rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head p,
.section-head > p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-3);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Bildschirmabhängige Anpassungen: gelten nur bei der folgenden Breite bzw. Systemeinstellung. */
@media (max-width: 640px) {
  .eyebrow {
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .page-title {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
    line-height: 0.96;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-top: 1.2rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 46px;
  }

  .info-card,
  .contact-card,
  .legal-card {
    padding: 1rem;
  }

  .section-head {
    display: block;
    margin-bottom: 1.1rem;
  }

  .section-head > p {
    margin-top: 0.6rem;
  }
}
