:root{
  --bg:#1b1a1f;
  --fg:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --line:rgba(255,255,255,.18);
  --line-strong:rgba(255,255,255,.28);
  --panel:rgba(255,255,255,.04);
  --panel-strong:rgba(255,255,255,.07);
  --focus:rgba(255,255,255,.55);
  --radius:14px;
}


*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--fg);
  font-family: baskerville-display-pt, Baskerville, "Baskerville Old Face", "Times New Roman", serif;
}

.hero{
  min-height:100vh;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 18px;
  animation:heroFade 900ms ease-out both;
}

@keyframes heroFade{
  from{ opacity:0; transform:translateY(10px); }
  to{ opacity:1; transform:translateY(0); }
}

.hero-inner{
  width:min(520px, 100%);
  text-align:center;
}

.brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}



.brand-logo{
  width:min(320px, 78vw);
  height:auto;
  display:block;
  user-select:none;
  -webkit-user-drag:none;
  margin:0 auto 6px auto;
}


.brand-subtitle-wrap{
  width: 100%;
  display:flex;
  justify-content:center;
  padding: 0 18px; /* padding on either side */
}

.brand-subtitle{
  margin:0;
  text-align:center;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .02em;
  color: rgba(255,255,255,.78);
}


.gate{
  margin-top: clamp(68px, 10vh, 112px);
}



.msg{
  margin:0 0 14px 0;
  padding:12px 12px;
  border:1px solid rgba(255, 180, 180, .35);
  background:rgba(255, 180, 180, .08);
  border-radius:12px;
  color:rgba(255, 220, 220, .95);
  font-size:13px;
  line-height:1.35;
  text-align:left;
}

.gate{
  display:grid;
  gap:14px;
  padding:16px;
}

.field{
  display:grid;
  gap:8px;
  text-align:left;
}

.field-label{
  font-size:12px;
  letter-spacing:.02em;
  color:var(--muted);
}

.input{
  width:100%;
  padding:14px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--panel-strong);
  color:var(--fg);
  font-size:15px;
  outline:none;
}

.input::placeholder{
  color:rgba(255,255,255,.45);
}

.input:focus{
  border-color:var(--focus);
  background:rgba(255,255,255,.09);
}

.nda{
  display:flex;
  gap:10px;
  align-items:flex-start;
  text-align:left;
  padding:8px 0 2px 0;
}

.check{
  margin-top:2px;
  width:18px;
  height:18px;
  accent-color:#fff;
}

.nda-text{
  font-size:13px;
  line-height:1.35;
  color:var(--muted);
}

.btn{
  width:100%;
  padding:14px 14px;
  border-radius:12px;
  border:1px solid var(--line-strong);
  background:#fff;
  color:#000;
  font-weight:650;
  font-size:15px;
  cursor:pointer;
}

.btn:hover{
  filter:brightness(.96);
}

.btn:active{
  transform:translateY(1px);
}

.helper{
  margin:0;
  font-size:12px;
  color:var(--muted);
  line-height:1.4;
  text-align:center;
}

.link{
  color:var(--fg);
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.25);
}

.link:hover{
  border-bottom-color:rgba(255,255,255,.55);
}

.hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}
input, button, label, textarea, select {
  font-family: inherit;
}
