/* ── TOKENS ── */
:root {
  --gold:     #F5C518;
  --gold-lo:  rgba(245,197,24,0.10);
  --gold-mi:  rgba(245,197,24,0.22);
  --black:    #080808;
  --surf:     #111111;
  --surf2:    #181818;
  --bdr:      rgba(255,255,255,0.07);
  --bdr2:     rgba(255,255,255,0.13);
  --text:     #FFFFFF;
  --dim:      rgba(255,255,255,0.52);
  --muted:    rgba(255,255,255,0.27);
  --green:    #4DB87E;
  --blue:     #7EB8FF;
  --max-w:    1200px;
  --section-y: 110px;
  --nav-h:    68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── TYPOGRAPHY ── */
h1, h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
h3 { font-family: 'Work Sans', sans-serif; font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; }
h4 { font-family: 'Work Sans', sans-serif; font-weight: 500; }
p, li { font-family: 'Work Sans', sans-serif; font-weight: 300; }

.label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.accent { color: var(--gold); }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; }
section { padding: var(--section-y) 52px; }
.divider { height: 1px; background: var(--bdr); margin: 0 52px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--black);
  font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; font-weight: 600;
  padding: 13px 26px; border-radius: 3px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: #e0b315; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Work Sans', sans-serif; font-weight: 400;
  color: var(--dim); font-size: 14px; text-decoration: none;
  border-bottom: 1px solid var(--bdr2); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.4); }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 64px; }
.section-header h2 { font-size: clamp(32px, 3.8vw, 50px); max-width: 700px; }
.section-header p {
  margin-top: 18px; font-size: 15.5px; color: var(--dim);
  max-width: 560px; line-height: 1.8;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }

/* ── RESPONSIVE BASE ── */
@media (max-width: 960px) {
  section { padding: 80px 20px; }
  .divider { margin: 0 20px; }
}
