:root {
  --bg: #ffffff;
  --text: #0b0f19;
  --muted: rgba(11, 15, 25, 0.68);
  --border: rgba(11, 15, 25, 0.10);
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(11, 15, 25, 0.10);
  --gold: #c79a2c;
  --gold-dark: #a57e21;
  --radius: 18px;
  --max: 1140px;
  --font: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.brand-logo {
  height: 32px;
  width: auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gold-dark);
}
.btn-outline {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  color: var(--text);
}
.btn-small {
  padding: 10px 14px;
  font-size: 14px;
}

/* HERO */
.hero {
  padding: 80px 0 55px;
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: center;
}
.pill {
  display: inline-block;
  background: rgba(199, 154, 44, 0.10);
  border: 1px solid rgba(199, 154, 44, 0.25);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: #6a4f10;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0
