:root {
  --bg: #0e0f13;
  --card: #16181f;
  --border: #262a35;
  --text: #e8eaf0;
  --muted: #8b90a0;
  --accent: #7c5cff;
  --accent-hover: #6a4aef;
  --error: #ff6b6b;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.card {
  width: 100%;
  max-width: 560px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  word-break: break-all;
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.lead strong { color: var(--text); }

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

label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); }

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background: #0e0f13;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

textarea { resize: vertical; min-height: 90px; }

button {
  margin-top: 6px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

button:hover { background: var(--accent-hover); }
button:disabled { opacity: 0.6; cursor: not-allowed; }

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

.resellers-note {
  margin: 24px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

#thankyou h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

#thankyou p {
  margin: 0;
  color: var(--muted);
}
