:root {
  --bg:#080b10;
  --panel:#0e131b;
  --line:#202b3a;
  --text:#e8edf5;
  --muted:#7f8b9c;
  --accent:#52e0a5;
  --accent-soft:#52e0a522;
  --sans:Inter,"Segoe UI Variable Text","Segoe UI",Roboto,"Helvetica Neue",Arial,ui-sans-serif,system-ui,-apple-system,sans-serif
}
* { box-sizing:border-box }
html,body {
  height:100%;
  margin:0;
  background:#000;
  color:var(--text);
  font:400 16px/1.5 var(--sans);
  -webkit-font-smoothing:antialiased
}
.login-shell {
  position:fixed;
  inset:0;
  width:100%;
  height:100vh;
  height:100dvh;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:auto;
  padding:max(20px,env(safe-area-inset-top)) max(20px,env(safe-area-inset-right)) max(20px,env(safe-area-inset-bottom)) max(20px,env(safe-area-inset-left));
  background:radial-gradient(circle at 50% 16%,#173029 0,transparent 38%),#000
}
.login-card {
  flex:0 1 420px;
  width:min(420px,100%);
  margin:0;
  padding:0;
  border:1px solid #52e0a52e;
  background:rgba(14,19,27,.94);
  border-radius:18px;
  box-shadow:0 24px 90px #000,0 0 55px #52e0a512;
  overflow:hidden
}
.verify-body {
  padding:34px
}
.brand-logo {
  display:block;
  object-fit:contain;
  border-radius:11px
}
.brand-logo-large {
  width:52px;
  height:52px;
  filter:drop-shadow(0 0 22px #52e0a54d)
}
.eyebrow {
  font:700 11px/1.2 var(--sans);
  letter-spacing:.14em;
  color:var(--accent);
  margin:20px 0 6px
}
h1 {
  margin:0;
  font-size:30px;
  font-weight:650;
  line-height:1.1;
  letter-spacing:-.03em
}
.muted {
  color:var(--muted);
  font-size:15px;
  line-height:1.65;
  margin:8px 0 0
}
.hold-button {
  position:relative;
  display:grid;
  place-items:center;
  width:88px;
  height:88px;
  margin:28px auto 0;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
  user-select:none;
  -webkit-user-select:none;
  touch-action:none
}
.hold-meter {
  position:absolute;
  inset:0;
  width:88px;
  height:88px
}
.hold-track,
.hold-progress {
  fill:none;
  stroke-width:3
}
.hold-track { stroke:#243041 }
.hold-progress {
  stroke:var(--accent);
  stroke-linecap:round;
  stroke-dasharray:263.9;
  stroke-dashoffset:263.9;
  transform:rotate(-90deg);
  transform-origin:48px 48px
}
.hold-logo {
  width:32px;
  height:32px;
  object-fit:contain;
  pointer-events:none;
  z-index:1
}
.hold-check {
  fill:none;
  stroke:var(--accent);
  stroke-width:4;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-dasharray:64;
  stroke-dashoffset:64;
  opacity:0
}
.hold-button.verified .hold-progress {
  stroke-dashoffset:0
}
.hold-button.verified .hold-logo { opacity:0 }
.hold-button.verified .hold-check {
  opacity:1;
  stroke-dashoffset:0;
  transition:stroke-dashoffset .32s ease, opacity .18s ease
}
.hold-caption {
  margin:12px 0 0;
  color:var(--muted);
  font:700 14px/1.2 var(--sans);
  letter-spacing:.08em;
  text-transform:uppercase;
  text-align:center
}
.hold-button.verified + .hold-caption { color:var(--accent) }
.verify-footer {
  margin:0;
  padding:14px 34px;
  border-top:1px solid #52e0a51f;
  background:#08140f;
  color:var(--muted);
  font:700 12px/1.2 var(--sans);
  letter-spacing:.08em;
  text-transform:uppercase;
  text-align:center
}
