/* Bodygrindwerk Coming-Soon — Layout + D+B-Look. Tokens aus brand-tokens.css */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  background: var(--bg-0, #0A0B0D);
  color: var(--fg-1, #F4F5F7);
  font-family: "Inter Tight", system-ui, sans-serif;
  overflow: hidden;
  position: relative;
}

/* --- Hintergrund-Video deckt den Viewport --- */
.bg-video {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Scrim für Textkontrast (WCAG AA) — hell/leichter für v2-Tageslicht-Footage */
.scrim {
  position: fixed; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,11,13,.30), rgba(10,11,13,.55));
}

/* --- Overlay-Inhalt zentriert --- */
.overlay {
  position: relative; z-index: 2;
  min-height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: clamp(.8rem, 2.2vh, 1.6rem);
  text-align: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.logo-mark {
  width: clamp(56px, 9vw, 104px);
  height: auto;
  margin-bottom: clamp(.4rem, 1.5vh, 1rem);
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.45));
}
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  clip-path: inset(50%); white-space: nowrap; border: 0;
}
.wordmark {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(.35rem, 1.4vh, .8rem);
}
.wordmark__welcome {
  font-family: "Space Grotesk", "Inter Tight", sans-serif;
  font-weight: 600;
  letter-spacing: .05em;
  font-size: clamp(.9rem, 2.4vw, 1.5rem);
  color: var(--fg-2, #B3B8C2);
}
.wordmark__img {
  display: block;
  width: clamp(230px, 62vw, 640px);
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.5));
}
.wordmark .grind { color: var(--accent, #2A6FDB); }
/* --- Beats (Sequenz-Texte, GSAP steuert Sichtbarkeit) --- */
.beats { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: clamp(1.5rem,5vw,4rem); }
.beat { grid-area: 1/1; opacity: 0; max-width: 26ch; text-wrap: balance;
  text-shadow: 0 2px 18px rgba(10,11,13,.65), 0 0 2px rgba(10,11,13,.8); }
.beat__line { font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: clamp(1.3rem,4.4vw,3rem); line-height: 1.2; }
.beat__line--q { color: var(--accent,#2A6FDB); margin-top: .4em; }
.beat__name { font-family: "JetBrains Mono", monospace; font-weight: 700;
  letter-spacing: .3em; padding-left: .3em; font-size: clamp(1.1rem,3.6vw,2.4rem); }
.beat--faktenbremse .beat__name { color: #FFB020; }
.beat--grindnotizen .beat__name { color: #8B95A5; } /* Steel aufgehellt für Lesbarkeit auf Video */
.beat--hebelwerk   .beat__name { color: var(--accent,#2A6FDB); }
.beat__sub { margin-top: .5em; font-size: clamp(1rem,2.6vw,1.6rem); font-weight: 500; }
.beat__tag { margin-top: .4em; font-size: clamp(.85rem,2vw,1.1rem); color: var(--fg-2,#B3B8C2); }

.tagline {
  color: var(--fg-2, #B3B8C2);
  font-size: clamp(.85rem, 2vw, 1.1rem);
  max-width: 42ch;
}

/* --- Signup --- */
.signup { margin-top: clamp(.5rem, 2vh, 1.2rem); width: min(420px, 90vw); }
.signup__label { display: block; font-size: .9rem; color: var(--fg-2); margin-bottom: .5rem; }
.signup__row { display: flex; gap: .5rem; }
.signup input {
  flex: 1; min-width: 0;
  background: var(--bg-1, #111317);
  border: 1px solid var(--border-3, #3A4150);
  color: var(--fg-1); border-radius: 8px;
  padding: .7rem .9rem; font-size: 1rem;
}
.signup input:focus-visible { outline: 2px solid var(--accent, #2A6FDB); outline-offset: 2px; }
.signup button {
  background: var(--accent, #2A6FDB); color: #fff; border: 0;
  border-radius: 8px; padding: .7rem 1rem; font-weight: 600; cursor: pointer;
  white-space: nowrap;
}
.signup button:hover { filter: brightness(1.08); }
.signup__hint { min-height: 1.2em; font-size: .85rem; color: var(--fg-3, #7A808C); margin-top: .5rem; }
.signup__hp { position: absolute !important; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.signup__consent { font-size: .72rem; line-height: 1.4; color: var(--fg-2, #9AA3AD); margin: .5rem auto 0; max-width: 44ch; text-align: center; }
.signup__consent a { color: inherit; text-decoration: underline; }

/* --- Social --- */
.social { display: flex; gap: 1.2rem; margin-top: .6rem; }
.social__link {
  color: var(--fg-1, #F4F5F7); text-decoration: none; font-weight: 600;
  font-size: .95rem; letter-spacing: .1em; text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(10,11,13,.8), 0 0 2px rgba(10,11,13,.85);
  transition: color .2s ease;
}
.social__link:hover { color: var(--accent, #2A6FDB); }

/* --- Rechts-Links (immer sichtbar, Pflicht) --- */
.legal-links {
  position: fixed; left: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 3; display: flex; gap: .5rem; align-items: center;
  font-size: .8rem; letter-spacing: .02em;
}
.legal-links a {
  color: var(--fg-2, #B3B8C2); text-decoration: none;
  text-shadow: 0 1px 8px rgba(10,11,13,.85);
}
.legal-links a:hover { color: var(--fg-1, #F4F5F7); }
.legal-links span { color: var(--fg-3, #7A808C); }

/* --- Sound-Toggle --- */
.sound-toggle {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 3; width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-2, #181B21); color: var(--fg-1);
  border: 1px solid var(--border-3, #3A4150); cursor: pointer; font-size: 1.1rem;
}
.sound-toggle[aria-pressed="true"] { background: var(--accent, #2A6FDB); color: #fff; }
.sound-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* --- Reduced Motion: alles ruhig sichtbar, kein Reveal-Versatz --- */
@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; }
}

/* --- Mobile Feinschliff --- */
@media (max-width: 520px) {
  .signup__row { flex-direction: column; }
  .signup button { width: 100%; }
}

/* --- Eintreten-Splash (Vorhang: Klick startet Intro + Ton) --- */
.enter-splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-0, #0A0B0D); text-align: center;
  transition: opacity .8s ease;
}
.enter-splash--hidden { opacity: 0; pointer-events: none; }
.enter-splash__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem; padding: 2rem;
}
.enter-splash__logo { width: clamp(72px, 14vw, 104px); height: auto; }
.enter-splash__brand-img {
  display: block;
  width: clamp(220px, 60vw, 440px);
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.5));
}
.enter-splash__btn {
  margin-top: .3rem; display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent, #2A6FDB); color: #fff; border: 0; border-radius: 999px;
  padding: .85rem 2.2rem; font-family: var(--font-body, "Inter Tight", sans-serif);
  font-size: 1.05rem; font-weight: 600; letter-spacing: .02em; cursor: pointer;
  animation: enterPulse 2.2s ease-in-out infinite;
}
.enter-splash__btn:hover { filter: brightness(1.08); }
.enter-splash__btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.enter-splash__hint {
  margin: 0; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-3, #7A808C);
}
@keyframes enterPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42,111,219,.45); }
  50% { box-shadow: 0 0 30px 5px rgba(42,111,219,.32); }
}
@media (prefers-reduced-motion: reduce) {
  .enter-splash { transition: none; }
  .enter-splash__btn { animation: none; }
}
