@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

:root {
  --gold: #C8970A;
  --gold-light: #F5E6B8;
  --gold-dark: #9B7208;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #242424;
  --mid: #3A3A3A;
  --muted: #888;
  --light: #E8E4DC;
  --white: #FAF9F6;
  --border: rgba(200,151,10,0.18);
  --border-light: rgba(255,255,255,0.08);
  --radius: 10px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
.syne { font-family: 'Syne', sans-serif; }
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; font-weight: 800; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { font-size: 15px; color: rgba(250,249,246,0.72); line-height: 1.8; }

.gold { color: var(--gold); }
.text-muted { color: var(--muted); }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.section-label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  transition: all 0.3s;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: var(--white); text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 0.5rem; list-style: none; }
.nav-links a {
  font-size: 13px; color: rgba(250,249,246,0.6); text-decoration: none;
  transition: color 0.2s; font-weight: 400; letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--gold); color: var(--dark); border: none;
  padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark); border: none;
  padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 500;
  cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  border: 0.5px solid rgba(250,249,246,0.3);
  padding: 13px 28px; border-radius: 8px; font-size: 14px;
  cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── CARDS ── */
.card {
  background: var(--dark-3);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(200,151,10,0.4); }

/* ── DIVIDER ── */
.divider { border: none; border-top: 0.5px solid var(--border); margin: 4rem 0; }
.divider-sm { border: none; border-top: 0.5px solid var(--border); margin: 2rem 0; }

/* ── BADGES / PILLS ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,151,10,0.12); color: var(--gold);
  border: 0.5px solid rgba(200,151,10,0.3);
  border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 500;
}
.pill-dark {
  background: var(--dark-4); color: rgba(250,249,246,0.6);
  border: 0.5px solid var(--border-light);
  border-radius: 20px; padding: 5px 14px; font-size: 12px;
  display: inline-block;
}

/* ── GRID UTILITIES ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }

/* ── STATS BAR ── */
.stats-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  border: 0.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  padding: 1.5rem; text-align: center;
  border-right: 0.5px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--gold); display: block;
}
.stat-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; display: block; }

/* ── FOOTER ── */
footer {
  background: var(--dark-2); border-top: 0.5px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: var(--white); margin-bottom: 1rem; display: block;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-heading { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 0.5px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 12px; color: var(--muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── CHECK MARK ── */
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(250,249,246,0.75); }
.check-icon { width: 18px; height: 18px; border-radius: 50%; background: rgba(200,151,10,0.15); border: 0.5px solid rgba(200,151,10,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-icon svg { width: 10px; height: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 4rem 0; }
  h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
}
