:root {
  --bg: #0b0b0b;          /* matte black */
  --surface: #151515;
  --fg: #ffffff;
  --muted: #a0a0a0;
  --accent: #7bff00;      /* neon green — accent only */
  --border: rgba(255,255,255,0.12);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100dvh;
  display: flex;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  margin: auto;
  width: 100%;
  max-width: 820px;
  padding: 44px 24px 36px;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

/* brand logo */
.brand { display: flex; }
.logo {
  height: 30px;
  width: auto;
  display: block;
}

/* hero */
.hero {
  margin: auto 0;
  padding: 56px 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}
h1 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: clamp(52px, 11vw, 116px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 .accent { color: var(--accent); }

.sub {
  margin: 26px 0 38px;
  max-width: 50ch;
  color: var(--muted);
  font-size: clamp(15px, 2.3vw, 17px);
  line-height: 1.65;
}

/* form */
.form { max-width: 540px; }
.field {
  display: flex;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px;
}
.field:focus-within { border-color: var(--accent); }
.field input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--fg);
  font-family: inherit;
  font-size: 16px;
  padding: 13px 14px;
}
.field input::placeholder { color: #6a6a6a; }

.field button {
  position: relative;
  border: 0;
  cursor: pointer;
  padding: 0 26px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #0b0b0b;
  background: var(--accent);
  transition: filter 0.15s, transform 0.1s;
}
.field button:hover { filter: brightness(1.08); }
.field button:active { transform: translateY(1px); }
.field button:disabled { cursor: progress; opacity: 0.7; }

.btn-spinner {
  display: none;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px; height: 16px;
  border: 2px solid rgba(11,11,11,0.35);
  border-top-color: #0b0b0b;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
button.loading .btn-label { visibility: hidden; }
button.loading .btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-msg {
  min-height: 20px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}
.form-msg.ok { color: var(--accent); }
.form-msg.err { color: #ff5252; }

.trust {
  margin-top: 18px;
  font-size: 13px;
  color: #6a6a6a;
}

/* footer */
.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6a6a6a;
}
.foot .tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.foot .meta { display: flex; align-items: center; gap: 8px; }
.foot a { color: inherit; text-decoration: none; }
.foot a:hover { color: var(--accent); }
.foot .dot { opacity: 0.5; }

@media (max-width: 540px) {
  .field { flex-direction: column; }
  .field button { padding: 15px; }
  .foot { justify-content: flex-start; }
}

/* success state — collapse the form into a confirmation */
.form.done .field, .form.done .trust { display: none; }
