/* ===== Parfait — access gate ===== */
body.gate {
  margin: 0; min-height: 100vh; min-height: 100dvh;
  background: var(--pf-plum-deep);
  display: grid; place-items: center;
  padding: 24px;
  color: var(--pf-cream);
}
.gate .stage-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(242,95,80,0.22), transparent 60%),
    radial-gradient(90% 70% at 88% 110%, rgba(242,188,255,0.14), transparent 55%),
    var(--pf-plum-deep);
}

.gate-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 450px;
  background: linear-gradient(155deg, #4A2532 0%, #34191F 100%);
  border: 1px solid rgba(249,248,230,0.08);
  border-radius: 24px;
  padding: 40px 38px 32px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6);
}
.gate-card .lockup { color: var(--pf-cream); font-size: 26px; }
.gate-card .wordmark { font-size: 26px; color: var(--pf-cream); }
.gate-card .bee { height: 1.2em; }

.gate-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.55; margin: 20px 0 0; color: var(--pf-lilac);
}
.gate-card h1 {
  font-family: var(--font-display); font-weight: 600; font-size: 32px;
  letter-spacing: -0.02em; margin: 10px 0 8px;
}
.gate-sub { font-size: 14.5px; line-height: 1.5; opacity: 0.75; margin: 0 0 24px; max-width: 38ch; }

#gateForm { display: flex; flex-direction: column; gap: 11px; }
#gateForm input[type="password"],
#gateForm input[type="text"],
#gateForm input[type="email"] {
  font-family: var(--font-body); font-size: 15px; color: var(--pf-cream);
  padding: 13px 15px; border-radius: 13px;
  border: 1px solid rgba(249,248,230,0.16);
  background: rgba(249,248,230,0.05);
  outline: none; transition: border-color 0.2s, background 0.2s;
}
#gateForm input::placeholder { color: rgba(249,248,230,0.4); }
#gateForm input:focus { border-color: var(--pf-coral); background: rgba(249,248,230,0.08); }

.gate-nda {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; line-height: 1.45; opacity: 0.72; margin: 4px 0 6px; cursor: pointer;
}
.gate-nda input { margin: 2px 0 0; width: 16px; height: 16px; accent-color: var(--pf-coral); flex: none; }

.gate-btn {
  font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
  color: var(--pf-cream); background: var(--pf-coral); border: 0; border-radius: 999px;
  padding: 14px 22px; cursor: pointer; margin-top: 4px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.gate-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(242,95,80,0.55); }
.gate-btn:disabled { opacity: 0.6; cursor: default; transform: none; box-shadow: none; }

.gate-msg { min-height: 1.2em; font-size: 13px; margin: 8px 0 0; color: #ffb4a8; }
.gate-msg.ok { color: var(--pf-lilac); }

.gate-back {
  display: inline-block; margin-top: 18px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em;
  color: var(--pf-cream); opacity: 0.5; text-decoration: none; transition: opacity 0.2s;
}
.gate-back:hover { opacity: 0.9; }

@media (max-width: 480px) {
  .gate-card { padding: 32px 24px 26px; border-radius: 18px; }
  .gate-card h1 { font-size: 27px; }
}
