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

:root {
  --bg: #0a0e14;
  --bg2: #111620;
  --bg3: #181e2a;
  --bg4: #1e2535;
  --border: #252d3d;
  --border2: #2e3a52;
  --text: #e8edf5;
  --text2: #8895aa;
  --text3: #556070;
  --gold: #c9a84c;
  --gold2: #e8c46a;
  --goldbg: rgba(201,168,76,.1);
  --goldborder: rgba(201,168,76,.25);
  --green: #3dba6f;
  --greenbg: rgba(61,186,111,.1);
  --red: #e05252;
  --redbg: rgba(224,82,82,.1);
  --blue: #4f9ef8;
  --bluebg: rgba(79,158,248,.1);
  --r6: 8px;
  --r10: 12px;
  --r16: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,20,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -.3px;
}

.logo span { color: var(--text2); font-size: 13px; font-family: 'DM Sans', sans-serif; font-weight: 300; margin-left: 6px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--gold);
  color: #0a0e14 !important;
  padding: 8px 18px;
  border-radius: var(--r6);
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--gold2) !important; }

.hamburger { display: none; cursor: pointer; background: none; border: none; color: var(--text2); font-size: 22px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.5rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text2); text-decoration: none; font-size: 15px; padding: .5rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border: none; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
  margin-top: 5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo { display: block; margin-bottom: .75rem; }
.footer-brand p { font-size: 13px; color: var(--text3); line-height: 1.7; max-width: 280px; }

.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--text3); font-weight: 600; margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text2); text-decoration: none; font-size: 13px; margin-bottom: .5rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text3);
}

.footer-bottom a { color: var(--text3); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .04em;
}

.tag-gold { background: var(--goldbg); color: var(--gold); border: 1px solid var(--goldborder); }
.tag-green { background: var(--greenbg); color: var(--green); border: 1px solid rgba(61,186,111,.25); }
.tag-blue { background: var(--bluebg); color: var(--blue); border: 1px solid rgba(79,158,248,.25); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--r6);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-gold { background: var(--gold); color: #0a0e14; }
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text2); border: 1px solid var(--border2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp .6s ease forwards; }
.delay-1 { animation-delay: .1s; opacity: 0; }
.delay-2 { animation-delay: .2s; opacity: 0; }
.delay-3 { animation-delay: .3s; opacity: 0; }
.delay-4 { animation-delay: .4s; opacity: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}
