:root {
  --bg: #0f0d10;
  --surface: #17141a;
  --border: #2a252f;
  --text: #e8e4ea;
  --muted: #8a8194;
  --accent: #c2410c;
  --accent-hover: #ea580c;
  --error: #f87171;
  --success: #4ade80;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.card {
  width: 100%;
  max-width: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lede { margin: 0 0 24px; color: var(--muted); }

.notice {
  margin: 0 0 28px;
  padding: 14px 16px;
  background: #1f1a24;
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  font-size: 14px;
  color: var(--muted);
}

.notice strong { display: block; color: var(--text); }

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

input[type='email'] {
  width: 100%;
  padding: 13px 15px;
  margin-bottom: 20px;
  background: #100e13;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
}

input[type='email']:focus {
  outline: none;
  border-color: var(--accent);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}

.check input { margin-top: 4px; flex-shrink: 0; }

.cf-turnstile { margin-bottom: 20px; }

.primary {
  display: inline-block;
  width: 100%;
  padding: 14px 26px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.primary:hover:not(:disabled) { background: var(--accent-hover); }
.primary:disabled { opacity: 0.5; cursor: not-allowed; }

#status { margin: 16px 0 0; font-size: 15px; min-height: 1.6em; }
#status.error { color: var(--error); }
#status.success { color: var(--success); }

.muted {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--muted);
}

form[hidden] { display: none; }
