:root {
  color-scheme: dark;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  --bg0: #0c1018;
  --bg1: #141c28;
  --panel: rgba(18, 26, 38, 0.92);
  --line: rgba(212, 175, 106, 0.28);
  --gold: #d4af6a;
  --gold2: #f0d9a8;
  --text: #e8eef7;
  --muted: #93a0b5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(212, 175, 106, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(70, 110, 180, 0.16), transparent 50%),
    linear-gradient(160deg, var(--bg0), var(--bg1));
  color: var(--text);
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.hero {
  text-align: center;
  padding: 32px 0 40px;
}

.logo {
  display: block;
  margin: 0 auto 20px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 700;
}

.tagline {
  margin: 0 auto 28px;
  max-width: 520px;
  line-height: 1.55;
  color: var(--muted);
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #1a1408;
  border: 1px solid rgba(212, 175, 106, 0.6);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: var(--gold2);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 106, 0.08);
}

.steps {
  display: grid;
  gap: 12px;
  margin: 24px 0 40px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 106, 0.15);
  color: var(--gold2);
  font-size: 0.85rem;
  font-weight: 700;
}

.step p {
  margin: 4px 0 0;
  line-height: 1.45;
  color: var(--muted);
}

.coming-soon {
  padding: 28px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  scroll-margin-top: 24px;
}

.coming-soon h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold2);
}

.coming-soon p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
}

.footer {
  margin-top: 40px;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.85rem;
  color: #6f7c91;
}

.page-narrow {
  max-width: 480px;
}

.hero-compact {
  padding: 16px 0 24px;
  text-align: left;
}

.hero-compact h1 {
  font-size: 1.8rem;
  text-align: left;
}

.hero-compact .tagline {
  margin-left: 0;
  text-align: left;
}

.back-link {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--gold2);
}

.register-form {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 24px;
}

.register-form .field {
  margin-bottom: 14px;
}

.register-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.register-form input {
  width: 100%;
  background: #0a1018;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
}

.register-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.hint {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: #6f7c91;
}

.form-error {
  margin: 0 0 12px;
  color: #e26d6d;
  font-size: 0.9rem;
}

.form-success {
  margin: 0 0 12px;
  color: #6dcf9b;
  font-size: 0.9rem;
  line-height: 1.45;
}

.actions-left {
  justify-content: flex-start;
}

.coming-soon a {
  color: var(--gold2);
}


@media (max-width: 480px) {
  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
