/* Basis-Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: #fff;
  background: #000;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
a:focus { outline: 2px dashed #fff; outline-offset: 3px; }

/* Video-Hintergrund */
.video-wrap {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
}
.video-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 80% at 50% 40%, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

/* Centered Content */
.center {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.25rem 8rem;
}
.stack {
  display: grid;
  gap: 1.25rem;
  max-width: 1000px;
  width: 100%;
}

/* Logo */
.logo {
  margin: 0 auto 0.25rem;
  width: clamp(72px, 12vw, 140px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}

/* Typo */
.headline {
  /* Aktuell: Marcellus. F&uuml;r weichere Optik: "Quicksand", sans-serif; */
  font-family: "Marcellus", serif;
  font-family: "Quicksand", sans-serif;
  font-family: "Great Vibes", sans-serif;


  font-size: clamp(3.9rem, 8vw, 10.2rem);
  font-weight: 400;
  letter-spacing: 0.0em;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.claim {
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 400;
  opacity: 0.95;
  margin: 0.1rem 0 0;
  text-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.more-to-come {
  font-size: clamp(1.1rem, 2.2vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0.95;
  margin: 5.8rem 0 0;
  text-shadow: 0 8px 24px rgba(0,0,0,0.4);
}


/* Footer */
.footer {
  position: fixed;
  bottom: 20px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.95rem;
  z-index: 10;
  padding: 0 1rem;
}
.footer a {
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer a:hover { background: rgba(255,255,255,0.26); transform: translateY(-1px); }

/* Modal + Overlay */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 100;
}
.scrim.active { opacity: 1; visibility: visible; }

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  z-index: 101;
  visibility: hidden;
}
.modal.active { visibility: visible; }

.modal__dialog {
  position: relative;
  width: min(800px, 92vw);
  max-height: min(80vh, 900px);
  overflow: auto;
  padding: 1.25rem 1.25rem 1.5rem;
  border-radius: 16px;
  background: rgba(15,18,25,0.9);
  color: #f7f7f7;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.modal.active .modal__dialog { transform: translateY(0) scale(1); opacity: 1; }

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}
.modal__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}
.modal__close {
  appearance: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
}
.modal__close:hover { background: rgba(255,255,255,0.12); }

.modal__content {
  font-size: 0.98rem;
  line-height: 1.6;
}
.modal__content a { text-decoration: underline; }

/* Small screens */
@media (max-width: 420px) {
  .footer { bottom: 14px; }
}
