:root {
  --background: #120808;
  --text-primary: #ffdada;
  --primary: #a9082e;
  --text-muted: rgba(255, 218, 218, 0.62);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  /* Kein Scrollen: Inhalt bleibt im Hero-Screen */
  height: 100%;
  overflow: hidden;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--background);
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Dekorative Lichtschein-Akzente im Hintergrund */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.glow--one {
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: rgba(169, 8, 46, 0.45);
}

.glow--two {
  bottom: -220px;
  left: -160px;
  width: 520px;
  height: 520px;
  background: rgba(169, 8, 46, 0.22);
}

/* Navigation */
.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 72px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand__mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--primary);
  box-shadow: 0 0 18px rgba(169, 8, 46, 0.7);
}

.brand__name {
  font-size: 19px;
}

.nav__links {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--text-primary);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 72px);
}

.hero__badge {
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 26px;
  border: 1px solid rgba(169, 8, 46, 0.55);
  border-radius: 999px;
  background: rgba(169, 8, 46, 0.12);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -1.5px;
  max-width: 14ch;
}

.hero__title-accent {
  color: var(--primary);
  text-shadow: 0 0 40px rgba(169, 8, 46, 0.55);
}

.hero__subtitle {
  margin-top: 24px;
  max-width: 54ch;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.6;
  color: var(--text-muted);
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(169, 8, 46, 0.45);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(169, 8, 46, 0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 218, 218, 0.28);
}

.btn--ghost:hover {
  border-color: var(--text-primary);
  background: rgba(255, 218, 218, 0.06);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 24px clamp(20px, 6vw, 72px);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
