
:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090c12;
  color: #eef2f7;
}
* { box-sizing: border-box; }
body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 15% 10%, rgba(33, 143, 255, .18), transparent 34rem),
    radial-gradient(circle at 85% 90%, rgba(79, 70, 229, .13), transparent 30rem),
    #090c12;
}
main {
  width: min(100%, 480px);
  padding: 34px;
  border: 1px solid #263143;
  border-radius: 18px;
  background: rgba(15, 20, 29, .94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}
.eyebrow {
  margin: 0 0 9px;
  color: #65b5ff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(27px, 7vw, 36px);
  letter-spacing: -.035em;
}
.intro {
  margin: 13px 0 28px;
  color: #aeb9c9;
  line-height: 1.55;
}
label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 650;
}
input {
  width: 100%;
  border: 1px solid #354158;
  border-radius: 10px;
  padding: 13px 14px;
  background: #0a0f18;
  color: #f7f9fc;
  font: inherit;
  outline: none;
}
input:focus {
  border-color: #4da3ff;
  box-shadow: 0 0 0 3px rgba(77, 163, 255, .15);
}
#turnstile { min-height: 65px; margin: 18px 0; }
button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 13px 18px;
  background: linear-gradient(135deg, #2797ff, #5a6bff);
  color: white;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}
button:hover { filter: brightness(1.08); }
button:disabled { cursor: wait; filter: saturate(.55); opacity: .72; }
#status {
  margin: 18px 0 0;
  padding: 12px 13px;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.45;
}
#status[data-kind="success"] {
  border: 1px solid #225f4d;
  background: #102d25;
  color: #a5f3d2;
}
#status[data-kind="error"] {
  border: 1px solid #713840;
  background: #351a20;
  color: #ffc2ca;
}
.privacy {
  margin: 22px 0 0;
  color: #7f8b9b;
  font-size: 12px;
  line-height: 1.5;
}
code { color: #b8d9ff; }
@media (max-width: 520px) {
  body { padding: 14px; }
  main { padding: 25px 20px; border-radius: 14px; }
}
