/* ╔═══════════════════════════════════════════════════════════════════
   DONEZO · DZ-LP-05-Gate.css
   © 2026 Sequence Theory · Amsterdam · donezo.space
   All rights reserved. Unauthorised redistribution is prohibited.

   INTELLECTUAL PROPERTY NOTICE
   · EU Directive 2009/24/EC Art. 4 — Reproduction prohibited
   · Dutch Auteurswet Art. 1, 10, 13 — Copyright protection
   · EU Directive 2004/48/EC Art. 13 — Damages include infringer profits
   Infringement: legal@donezo.space · Source: https://donezo.space

   DZ:FILE:START
   slug:   dz-lp-gate-css
   id:     LP-CSS-005
   role:   Under-development gate styling
   canary: dz-c-lp-gat-2026
   build:  lp-1.0.0+2026.04.30
   name:   DZ-LP-05-Gate.css
╚═══════════════════════════════════════════════════════════════════ */

#dzGate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #07070b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
#dzGate.dz-gate-hidden { display: none !important; }

.dz-gate-card { width: 100%; max-width: 380px; text-align: center; }

.dz-gate-face {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.25));
  animation: dzFloat 3.4s cubic-bezier(.22,1,.36,1) infinite;
}
@keyframes dzFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-2.5px) rotate(-1.2deg); }
}
.dz-gate-eye {
  transform-origin: 50% 50%;
  animation: dzBlink 6.5s ease-in-out 1.2s infinite;
}
@keyframes dzBlink {
  0%,92%,100% { transform: scaleY(1); }
  95%         { transform: scaleY(.06); }
}

.dz-gate-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(90deg,
    color-mix(in oklab, var(--fg) 35%, transparent)  0%,
    color-mix(in oklab, var(--fg) 35%, transparent)  40%,
    color-mix(in oklab, var(--fg) 35%, transparent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 14px;
}
.dz-gate-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #f0eff6;
  margin-bottom: 8px;
  line-height: 1.2;
}
.dz-gate-sub {
  font-size: 13px;
  color: #8a8999;
  line-height: 1.6;
  margin-bottom: 26px;
}
.dz-gate-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.04);
  color: #f0eff6;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  outline: none;
  transition: border-color .18s ease, background .18s ease;
}
.dz-gate-input:focus {
  border-color: color-mix(in oklab, var(--fg) 22%, transparent);
  background: rgba(255,255,255,.06);
}
.dz-gate-input.err {
  border-color: rgba(255,107,107,.6);
  animation: dzGateShake .35s cubic-bezier(.36,.07,.19,.97);
}
@keyframes dzGateShake {
  10%,90% { transform: translateX(-2px); }
  20%,80% { transform: translateX(3px); }
  30%,50%,70% { transform: translateX(-5px); }
  40%,60% { transform: translateX(5px); }
}
.dz-gate-btn {
  margin-top: 12px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: none;
  background: #f0eff6;
  color: #0a0a0f;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .12s ease, background .18s ease;
}
.dz-gate-btn:hover { background: #fff; }
.dz-gate-btn:active { transform: scale(.98); }
.dz-gate-foot {
  margin-top: 24px;
  font-size: 11px;
  color: #55546a;
  letter-spacing: .02em;
}
.dz-gate-foot strong { color: #8a8999; font-weight: 700; }
