/* gate.css — Zugangs-/Begrüßungsseite. Nutzt die Design-Tokens aus base.css. CSP-rein. */
body.gate {
  min-height: 100vh; min-height: 100dvh;
  display: grid; place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem) 1.25rem;
}
.gate__card {
  width: 100%; max-width: 40rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.75rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}
.gate__eyebrow {
  font-family: var(--mono); font-size: var(--text-meta);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--disc);
  margin: 0 0 0.8rem;
}
.gate__title { font-size: var(--text-h2); line-height: 1.08; margin: 0 0 0.5rem; }
.gate__lede { font-size: var(--text-lg); color: var(--muted); margin: 0 0 1.7rem; }
.gate__lede strong { color: var(--ink); }
.gate__points { list-style: none; padding: 0; margin: 0 0 1.9rem; display: grid; gap: 0.85rem; }
.gate__points li { position: relative; padding-left: 1.7rem; font-size: 0.96rem; line-height: 1.55; color: var(--muted); }
.gate__points li::before { content: "✓"; position: absolute; left: 0; top: 0.05em; color: var(--disc); font-weight: 700; }
.gate__points strong { color: var(--ink); }
.gate__label { display: block; font-family: var(--mono); font-size: var(--text-meta); color: var(--muted); margin-bottom: 0.5rem; }
.gate__row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.gate__input {
  flex: 1 1 13rem; min-width: 0;
  font-family: var(--mono); font-size: 1.05rem; letter-spacing: 0.02em;
  padding: 0.78rem 0.95rem;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px;
}
.gate__input::placeholder { color: color-mix(in oklab, var(--muted) 60%, transparent); }
.gate__input:focus-visible { outline: 2px solid var(--disc); outline-offset: 1px; border-color: var(--disc); }
.gate__btn {
  flex: 0 0 auto;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 0.78rem 1.45rem;
  background: var(--disc); color: #fff;
  border: 1px solid var(--disc); border-radius: 10px; cursor: pointer;
}
.gate__btn:hover { filter: brightness(1.06); }
.gate__btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.gate__error { color: var(--trans); font-size: 0.9rem; margin: 0.9rem 0 0; font-weight: 600; }
.gate__footer { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: 0.8rem; line-height: 1.5; color: var(--muted); }
.gate__footer p { margin: 0.35rem 0 0; }
.gate__footer a { color: var(--disc); }
