:root {
  --cpx-bg: #0a0a0f;
  --cpx-bg-alt: #14141d;
  --cpx-surface: #1c1c28;
  --cpx-gold: #e8b341;
  --cpx-gold-dark: #b6862a;
  --cpx-gold-light: #f5cf6e;
  --cpx-text: #f4f1e8;
  --cpx-text-dim: #b9b6ad;
  --cpx-border: rgba(232, 179, 65, 0.18);
  --cpx-radius: 12px;
  --cpx-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --cpx-max: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cpx-bg);
  color: var(--cpx-text);
  font-family: 'Urbanist', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cpx-gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cpx-gold-light); }

h1, h2, h3, h4 { font-family: 'Urbanist', sans-serif; font-weight: 800; line-height: 1.2; margin: 0; color: var(--cpx-text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-transform: uppercase;
  font-size: 14px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--cpx-gold-light), var(--cpx-gold-dark));
  color: #1a1306;
  box-shadow: 0 8px 24px rgba(232, 179, 65, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232, 179, 65, 0.4); color: #1a1306; }

.btn--ghost {
  background: transparent;
  color: var(--cpx-text);
  border: 1px solid var(--cpx-border);
}
.btn--ghost:hover { background: rgba(232, 179, 65, 0.08); }

.site-main { display: block; }
