:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0d0d0d;
  --text: #f7f4ec;
  --muted: #aaa69c;
  --gold: #d4af37;
  --line: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(20px, calc((100% - 1160px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(16px);
}
.nav nav { display: flex; align-items: center; gap: 24px; }
.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover { color: var(--text); }
.brand { font-weight: 900; letter-spacing: 0.14em; color: var(--text) !important; }
.hero { padding: 120px 0 104px; background: radial-gradient(circle at 50% 0%, rgba(212,175,55,.17), transparent 46%); }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 900px; font-size: clamp(3rem, 7vw, 6.8rem); }
h2 { max-width: 850px; font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { font-size: 1.35rem; }
.lead { max-width: 760px; margin: 28px 0 0; color: #d0cdc5; font-size: clamp(1.15rem, 2vw, 1.45rem); }
.actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--gold);
  color: #0a0a0a !important;
  font-weight: 800;
  text-decoration: none;
}
.button.small { padding: 9px 14px; }
.text-link { color: var(--gold); font-weight: 700; text-decoration: none; }
.section { padding: 104px 0; border-top: 1px solid var(--line); }
.section.alt { background: var(--panel); }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.body-lg { margin: 0; color: #c8c4bb; font-size: 1.2rem; }
.cards, .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 46px 0 0; padding: 0; }
.cards article, .steps li {
  list-style: none;
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}
.cards p, .steps p { color: var(--muted); }
.proof { background: linear-gradient(135deg, #100e08, #050505); }
.proof dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 42px 0 0; }
.proof dl div { padding: 24px 0; border-top: 1px solid rgba(212,175,55,.4); }
.proof dt { color: var(--gold); font-size: 2rem; font-weight: 900; }
.proof dd { margin: 4px 0 0; color: var(--muted); }
.note { color: #7f7b73; font-size: .88rem; }
.faq { margin-top: 36px; }
details { border-top: 1px solid var(--line); padding: 23px 0; }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-size: 1.1rem; font-weight: 800; }
details p { color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 34px; }
.related-grid a { padding: 20px; border: 1px solid var(--line); border-radius: 10px; text-decoration: none; }
.related-grid a:hover { border-color: var(--gold); color: var(--gold); }
.cta { padding: 110px 0; text-align: center; background: radial-gradient(circle at 50% 100%, rgba(212,175,55,.18), transparent 55%); border-top: 1px solid var(--line); }
.cta h2 { margin-inline: auto; }
.cta p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }
.cta .actions { justify-content: center; }
footer { padding: 42px 0; border-top: 1px solid var(--line); color: #77746d; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
footer a { color: #aaa69c; }

@media (max-width: 760px) {
  .nav nav > a:not(.button) { display: none; }
  .hero { padding: 86px 0 78px; }
  .section { padding: 76px 0; }
  .two-col, .cards, .steps, .proof dl, .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .cards article, .steps li { min-height: auto; }
  .related-grid { grid-template-columns: 1fr; }
}
