:root {
  --obsidian: #0b1120;
  --slate-1: #1E293B;
  --slate-2: #334155;
  --slate-3: #475569;
  --gold: #d4a017;
  --gold-soft: #b8901a;
  --text: #e6e8eb;
  --text-muted: #9ca3af;
  --blue: #3b82f6;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--obsidian); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; line-height: 1.6; min-height: 100vh; }
.container { max-width: 640px; margin: 0 auto; padding: 80px 32px 64px; }
.brand { font-size: 14px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-bottom: 48px; font-weight: 600; }
h1 { font-size: 40px; line-height: 1.15; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 24px; }
.lede { font-size: 18px; color: var(--text-muted); margin-bottom: 48px; }
form { display: flex; flex-direction: column; gap: 20px; }
label { font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; display: block; font-weight: 500; }
input, select, textarea { width: 100%; background: var(--slate-1); border: 1px solid var(--slate-2); color: var(--text); padding: 14px 16px; font-size: 16px; font-family: inherit; border-radius: 4px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { min-height: 120px; resize: vertical; }
button { background: var(--gold); color: var(--obsidian); border: none; padding: 16px; font-size: 16px; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; border-radius: 4px; margin-top: 12px; transition: background 0.15s; }
button:hover { background: var(--gold-soft); }
.note { font-size: 13px; color: var(--text-muted); margin-top: 24px; line-height: 1.5; }
.foot { margin-top: 80px; padding-top: 32px; border-top: 1px solid var(--slate-2); font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
.foot a { color: var(--text-muted); text-decoration: none; border-bottom: 1px solid var(--slate-2); }
.foot a:hover { color: var(--gold); border-color: var(--gold); }
.success { padding: 24px; background: var(--slate-1); border-left: 3px solid var(--gold); border-radius: 4px; margin-top: 24px; display: none; }
.success.show { display: block; }
