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

:root {
  --bg: #080809;
  --bg2: #0f0f11;
  --bg3: #161619;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text: #e8e6de;
  --text2: #888580;
  --text3: #444240;
  --gold: #c8b87a;
  --font-display: 'Syne', sans-serif;
  --font-serif: 'Newsreader', serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
.l-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 60px;
  background: rgba(8,8,9,0.88);
  backdrop-filter: blur(16px);
}
.l-nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
  opacity: 0.45;
}
.l-nav-logo img { height: 32px; width: auto; }
.l-nav-signin {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--text2); text-decoration: none;
  padding: 7px 18px;
  border: 0.5px solid var(--border2);
  border-radius: 7px;
  transition: color 0.15s, border-color 0.15s;
}
.l-nav-signin:hover { color: var(--text); border-color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem 2.5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse at center, rgba(200,184,122,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 680px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
}
.hero-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--gold);
  border: 0.5px solid rgba(200,184,122,0.35);
  padding: 4px 12px; border-radius: 20px;
  background: rgba(200,184,122,0.06);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: var(--text2);
  line-height: 1.65;
  max-width: 460px;
}
.hero-actions {
  display: flex; gap: 0.85rem; align-items: center;
  flex-wrap: wrap; justify-content: center;
  margin-top: 0.4rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #09090a;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: var(--text2);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 12px 22px;
  text-decoration: none;
  border: 0.5px solid var(--border2);
  border-radius: 8px;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--gold); }

/* ── FEATURES ── */
.features {
  padding: 2.5rem 2rem;
  border-top: 0.5px solid var(--border);
}
.features-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feat-card {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: border-color 0.2s;
}
.feat-card:hover { border-color: rgba(200,184,122,0.3); }
.feat-icon {
  font-size: 18px;
  color: var(--gold);
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--text);
}
.feat-card p {
  font-family: var(--font-serif);
  font-size: 13px; font-weight: 300;
  color: var(--text2);
  line-height: 1.6;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 0.5px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  background: radial-gradient(ellipse at center, rgba(200,184,122,0.05) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}
.cta-banner p {
  font-family: var(--font-serif);
  font-size: 0.95rem; font-weight: 300;
  color: var(--text2);
}

/* ── FOOTER ── */
.l-footer {
  padding: 1.5rem 3rem;
  border-top: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.l-footer-logo img { height: 26px; width: auto; opacity: 0.6; }
.l-footer p {
  font-family: var(--font-serif);
  font-size: 12px; font-weight: 300;
  color: var(--text3);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .features-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .l-nav { padding: 0 1.5rem; }
  .features-inner { grid-template-columns: 1fr; }
  .l-footer { flex-direction: column; align-items: flex-start; }
}
