@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg:#0D0F12;
  --panel:#15181D;
  --grid:#1C2128;
  --steel:#4A4E58;
  --lime:#C6FF3D;
  --lime-dim:#7FA31E;
  --text:#E6E8EB;
  --text-dim:#8B909B;
}

*{box-sizing:border-box;margin:0;padding:0;}

body{
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--bg);
  background-size:34px 34px, 34px 34px;
  color:var(--text);
  font-family:'Inter',sans-serif;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 16px;
}

.wrap{
  width:100%;
  max-width:620px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.gear{
  width:52px;
  height:52px;
  margin-bottom:18px;
  animation:spin 8s linear infinite;
}

@keyframes spin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

.eyebrow{
  font-family:'Space Mono',monospace;
  font-weight:700;
  font-size:12.5px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--lime);
  background:rgba(198,255,61,0.08);
  border:1px solid var(--lime-dim);
  padding:6px 14px;
  border-radius:3px;
  margin-bottom:20px;
}

h1{
  font-family:'Space Mono',monospace;
  font-weight:700;
  font-size:clamp(24px,4.6vw,38px);
  line-height:1.25;
  letter-spacing:-0.01em;
  color:#fff;
  margin-bottom:30px;
}

h1 .hl{
  color:var(--lime);
}

.belt{
  width:100%;
  height:1px;
  background:repeating-linear-gradient(
    90deg,
    var(--steel) 0px, var(--steel) 10px,
    transparent 10px, transparent 20px
  );
  margin-bottom:30px;
}

.card{
  width:100%;
  background:var(--panel);
  border:1px solid var(--grid);
  border-left:3px solid var(--lime);
  border-radius:6px;
  padding:28px 26px;
  margin-bottom:26px;
}

.card-title{
  font-family:'Space Mono',monospace;
  font-size:14px;
  font-weight:700;
  color:var(--lime);
  margin-bottom:18px;
}

form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

input{
  width:100%;
  background:var(--bg);
  border:1px solid var(--steel);
  border-radius:4px;
  padding:13px 14px;
  color:var(--text);
  font-family:'Inter',sans-serif;
  font-size:15px;
  outline:none;
  transition:border-color .15s ease;
}

input:focus{
  border-color:var(--lime);
}

button{
  margin-top:4px;
  background:var(--lime);
  color:#0D0F12;
  border:none;
  border-radius:4px;
  padding:14px 20px;
  font-family:'Space Mono',monospace;
  font-weight:700;
  font-size:14.5px;
  letter-spacing:0.03em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .15s ease, transform .12s ease;
}

button:hover{
  background:#D8FF6E;
  transform:translateY(-1px);
}

.disclaimer{
  font-family:'Space Mono',monospace;
  font-size:11.5px;
  color:var(--text-dim);
  max-width:440px;
}
