:root {
  --bg: #0b0f14;
  --card: #121826;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #f5c97a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: #000;
  border-bottom: 1px solid #1f2937;
}

.brand .name {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}

.hero {
  text-align: center;
  margin-bottom: 48px;
}

.h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.p {
  color: var(--muted);
  font-size: 18px;
}

.actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: #000;
}

.btn {
  background: transparent;
  color: var(--text);
  border-color: #374151;
}
