:root {
  color-scheme: light;
  --page: #0f1117;
  --surface: #171a23;
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: #f5f5f7;
  --text-secondary: #b7bac4;
  --text-muted: #82858f;
  --accent: #6c5ce7;
  --accent-hover: #5a4bd1;
  --good: #2ecc71;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--page);
  color: var(--text-primary);
  line-height: 1.5;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 12px;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.cta-wrap {
  text-align: center;
  margin: 32px 0 48px;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.cta:hover {
  background: var(--accent-hover);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.disclosure {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

footer a {
  color: var(--text-muted);
  margin: 0 8px;
}

.legal-page h1 {
  font-size: 1.5rem;
  text-align: left;
}

.legal-page section {
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 1.1rem;
}

.legal-page .placeholder {
  color: #e6a23c;
  background: rgba(230, 162, 60, 0.12);
  border: 1px dashed rgba(230, 162, 60, 0.5);
  border-radius: 8px;
  padding: 2px 8px;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--text-muted);
  text-decoration: none;
}
