:root {
  --bg: #111315;
  --surface: #1a1d20;
  --surface-2: #22262a;
  --border: #30363d;
  --text: #f2f4f5;
  --muted: #a8b0b8;
  --accent: #d6b46a;
  --accent-strong: #f0c86f;
  --danger: #d96464;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

input {
  width: 100%;
  min-height: 44px;
  color: var(--text);
  background: #111315;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0 12px;
  outline: none;
}

input:focus {
  border-color: var(--accent);
}

button,
.primary-link,
.secondary-link {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-weight: 700;
}

button,
.primary-link {
  color: #15120a;
  background: var(--accent);
}

button:hover,
.primary-link:hover {
  background: var(--accent-strong);
}

.secondary-link,
.ghost-button {
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

.center-page {
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}
