:root {
  --bg: #08090c;
  --bg-card: #0f1115;
  --bg-elevated: #161920;
  --gold: #c9a227;
  --gold-light: #e8c84b;
  --gold-dark: #8a6d1a;
  --gold-glow: rgba(201,162,39,0.25);
  --green: #2ecc71;
  --blue: #5dade2;
  --red: #e74c3c;
  --text: #eaeaea;
  --text-dim: #7a7f8e;
  --border: rgba(255,255,255,0.07);
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Cinzel', serif; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; }
h3 { font-size: 1.2rem; }
p { line-height: 1.75; color: var(--text-dim); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-dark { background: var(--bg-card); }
.gold { color: var(--gold); }
.section-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; padding: 0.4rem 1rem;
  border: 1px solid var(--gold-dark); border-radius: 3px;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { margin-top: 0.5rem; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; padding: 1.2rem 0; transition: all 0.4s; }
.nav.scrolled { background: rgba(8,9,12,0.92); backdrop-filter: blur(16px); padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { text-decoration: none; display: flex; flex-direction: column; }
.brand-text { font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 900; color: var(--gold); letter-spacing: 0.2em; }
.brand-sub { font-size: 0.55rem; color: var(--text-dim); letter-spacing: 0.5em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a { color: var(--text-dim); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-menu a:hover { color: #fff; }
.nav-cta { background: var(--gold) !important; color: var(--bg) !important; padding: 0.55rem 1.3rem; border-radius: 3px; font-weight: 700 !important; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); }

/* HERO */
.dl-hero { position: relative; padding: 10rem 0 6rem; text-align: center; overflow: hidden; }
.dl-hero-bg { position: absolute; inset: 0; }
.dl-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.dl-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,12,0.5) 0%, rgba(8,9,12,0.3) 40%, rgba(8,9,12,0.85) 80%, var(--bg) 100%); }
.dl-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.dl-hero-content h1 { color: #fff; margin: 0.5rem 0 1rem; }
.dl-hero-content p { color: rgba(255,255,255,0.7); font-size: 1.15rem; margin-bottom: 2rem; }
.dl-meta { margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-dim); display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.dl-meta .dot { opacity: 0.4; }

/* BUTTONS */
.btn-gold { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 2.5rem; background: var(--gold); color: var(--bg); font-family: 'Cinzel', serif; font-weight: 700; font-size: 0.9rem; text-decoration: none; border-radius: 3px; transition: all 0.25s; box-shadow: 0 4px 25px var(--gold-glow); }
.btn-gold:hover { transform: translateY(-2px); background: var(--gold-light); box-shadow: 0 8px 35px rgba(201,162,39,0.4); }
.btn-ghost { display: inline-flex; align-items: center; padding: 1rem 2.5rem; border: 1px solid rgba(255,255,255,0.2); color: var(--text); font-family: 'Cinzel', serif; font-weight: 700; font-size: 0.9rem; text-decoration: none; border-radius: 3px; transition: all 0.25s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { display: inline-block; padding: 0.75rem 2rem; border: 1px solid var(--gold-dark); color: var(--gold); font-weight: 600; text-decoration: none; border-radius: 3px; font-size: 0.9rem; transition: all 0.2s; }
.btn-outline:hover { background: var(--gold); color: var(--bg); }
.btn-dl svg { flex-shrink: 0; }

/* STEPS */
.step { margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.step-num {
  width: 50px; height: 50px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 900;
  color: var(--gold); border: 2px solid var(--gold-dark); border-radius: 50%;
  background: rgba(201,162,39,0.05);
}
.step-header h3 { color: var(--text); margin-bottom: 0.2rem; }
.step-subtitle { font-size: 0.85rem; color: var(--text-dim); margin: 0; }
.step-body { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }
.step-body-reverse { grid-template-columns: 1fr 1.3fr; }
.step-content p { margin-bottom: 1.2rem; font-size: 0.95rem; color: var(--text-dim); }
.step-content strong { color: var(--text); }

.step-visual { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: 0 15px 50px rgba(0,0,0,0.5); }
.step-visual img { width: 100%; height: 250px; object-fit: cover; display: block; }
.visual-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  font-size: 0.8rem; color: var(--gold-light); font-weight: 500;
}

/* CODE / PATH */
code { font-family: 'JetBrains Mono', monospace; font-size: 0.85em; background: rgba(255,255,255,0.06); padding: 0.15em 0.5em; border-radius: 3px; color: var(--gold-light); }
.path-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.2rem; margin: 1rem 0; }
.path-label { font-size: 0.75rem; color: var(--text-dim); display: block; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.1em; }
.path-code { font-size: 1rem; background: none; padding: 0; color: var(--gold); }

/* LISTS */
.check-list { list-style: none; margin: 1rem 0; }
.check-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--text-dim); }
.check-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.check-list li strong { color: var(--text); }
.numbered-list { margin: 1rem 0; padding-left: 1.5rem; }
.numbered-list li { margin-bottom: 0.7rem; font-size: 0.9rem; color: var(--text-dim); padding-left: 0.3rem; }
.numbered-list li strong { color: var(--text); }

/* INFO BOXES */
.tip-box, .warn-box { display: flex; gap: 0.75rem; padding: 1rem 1.2rem; border-radius: var(--radius); margin: 1.2rem 0; font-size: 0.88rem; }
.tip-box { background: rgba(46,204,113,0.06); border: 1px solid rgba(46,204,113,0.15); }
.tip-box strong { color: var(--green); }
.tip-box div { color: var(--text-dim); }
.tip-icon { font-size: 1.2rem; flex-shrink: 0; }
.warn-box { background: rgba(231,76,60,0.06); border: 1px solid rgba(231,76,60,0.15); }
.warn-box strong { color: var(--red); }
.warn-box div { color: var(--text-dim); }
.warn-icon { font-size: 1.2rem; flex-shrink: 0; }

.bonus-box { background: rgba(201,162,39,0.06); border: 1px solid rgba(201,162,39,0.2); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; }
.bonus-box h4 { font-size: 1rem; color: var(--gold); margin-bottom: 0.75rem; }
.bonus-box ul { list-style: none; }
.bonus-box li { margin-bottom: 0.4rem; font-size: 0.9rem; color: var(--text-dim); padding-left: 1.2rem; position: relative; }
.bonus-box li::before { content: '\2726'; position: absolute; left: 0; color: var(--gold); }

/* REQUIREMENTS */
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.req-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }
.req-card h3 { margin-bottom: 1.5rem; color: var(--text-dim); font-size: 1rem; }
.req-card-gold { border-color: rgba(201,162,39,0.2); }
.req-card-gold h3 { color: var(--gold); }
.req-table { width: 100%; border-collapse: collapse; }
.req-table tr { border-bottom: 1px solid var(--border); }
.req-table td { padding: 0.7rem 0; font-size: 0.88rem; }
.req-table td:first-child { color: var(--text-dim); width: 100px; font-weight: 600; }
.req-table td:last-child { color: var(--text); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--gold-dark); }
.faq-item h4 { font-size: 0.95rem; color: var(--text); margin-bottom: 0.75rem; font-family: 'Raleway', sans-serif; font-weight: 600; }
.faq-item p { font-size: 0.85rem; margin: 0; }

/* FINAL CTA */
.final-cta { padding: 5rem 0; border-top: 1px solid var(--border); }
.final-cta h2 { color: #fff; margin-bottom: 0.5rem; }
.final-cta p { margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 3rem 0 2rem; background: var(--bg-card); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand { font-family: 'Cinzel', serif; font-weight: 700; color: var(--gold); font-size: 1rem; display: block; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.footer-col h4 { font-size: 0.8rem; color: var(--text); margin-bottom: 1rem; letter-spacing: 0.08em; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 0.85rem; margin-bottom: 0.4rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.82rem; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .step-body, .step-body-reverse { grid-template-columns: 1fr; }
  .step-visual { order: -1; }
  .req-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(8,9,12,0.98); backdrop-filter: blur(12px); padding: 2rem; gap: 1.2rem; border-bottom: 1px solid var(--border); }
  .nav-menu.open { display: flex; }
  .nav-burger { display: flex; }
  .dl-hero { padding: 8rem 1.5rem 4rem; }
  .btn-gold, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
