:root {
  --bg: #07090f;
  --surface: #101521;
  --surface-2: #171d2a;
  --line: rgba(232, 201, 106, 0.24);
  --gold: #e8c96a;
  --text: #f4f1e8;
  --muted: #b7b3aa;
  --blue: #6f95ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: radial-gradient(circle at top, #172039 0, var(--bg) 36rem); color: var(--text); font: 17px/1.68 "Barlow", sans-serif; }
a { color: inherit; text-underline-offset: 4px; }
.skip-link { position: absolute; left: -9999px; top: 10px; background: var(--gold); color: #080808; padding: 8px 12px; z-index: 10; }
.skip-link:focus { left: 10px; }
.shell { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.site-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.brand { color: var(--gold); font-family: "Cinzel", serif; font-weight: 900; text-decoration: none; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 20px; }
.nav-links a { color: var(--muted); font-family: "Barlow Condensed", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }
.hero { padding: 82px 0 58px; border-bottom: 1px solid var(--line); }
.eyebrow, .section-label { color: var(--gold); font-family: "Barlow Condensed", sans-serif; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Barlow Condensed", sans-serif; margin: 0; }
h1 { max-width: 900px; margin-top: 14px; font-size: clamp(48px, 8vw, 88px); line-height: .94; text-transform: uppercase; }
h1 em { color: var(--gold); font-style: normal; }
.lede { max-width: 800px; margin: 24px 0 0; color: var(--muted); font-size: clamp(19px, 2.5vw, 23px); }
.disclaimer { max-width: 820px; margin-top: 24px; padding: 15px 18px; border-left: 3px solid var(--gold); background: rgba(232, 201, 106, .07); color: var(--muted); }
.meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; color: var(--muted); font-size: 14px; }
.meta a { color: var(--gold); }
.section { padding: 58px 0; border-bottom: 1px solid var(--line); }
.section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.section-head::after { content: ""; height: 1px; flex: 1; background: var(--line); }
h2 { font-size: clamp(34px, 5vw, 52px); line-height: 1; text-transform: uppercase; }
h3 { font-size: 24px; line-height: 1.15; }
.prose { max-width: 820px; color: var(--muted); }
.prose p { margin: 16px 0 0; }
.prose strong { color: var(--text); }
.prose h2 { color: var(--text); margin: 46px 0 12px; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; margin-top: 28px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { display: block; padding: 24px; border: 1px solid var(--line); background: var(--surface); text-decoration: none; }
a.card:hover { border-color: var(--gold); background: var(--surface-2); }
.card p { margin: 10px 0 0; color: var(--muted); }
.card .label { display: block; margin-bottom: 14px; color: var(--gold); font: 700 12px/1 "Barlow Condensed", sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.diagram { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.setup { position: relative; min-height: 250px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(145deg, #222a3b, #0d111a); }
.setup .coin { position: absolute; left: 50%; bottom: 30px; width: 112px; height: 112px; border-radius: 50%; transform: translateX(-50%); background: radial-gradient(circle at 35% 30%, #f2dc91, #b8862e 55%, #6c4613); border: 5px solid #d0aa52; box-shadow: 0 10px 28px rgba(0,0,0,.55); }
.setup .phone { position: absolute; left: 50%; top: 24px; width: 55px; height: 92px; border: 4px solid #cbd2df; border-radius: 9px; transform: translateX(-50%); background: #111; }
.setup .light { position: absolute; top: 58px; width: 76px; height: 76px; border-radius: 50%; background: radial-gradient(circle, #fff9d6, rgba(255,246,193,.1) 70%); }
.setup .light.left { left: 12%; }
.setup .light.right { right: 12%; }
.setup figcaption { position: absolute; left: 15px; right: 15px; bottom: 8px; color: var(--muted); font-size: 13px; text-align: center; }
.checklist { margin: 24px 0 0; padding: 0; list-style: none; counter-reset: step; }
.checklist li { position: relative; margin-top: 12px; padding: 18px 18px 18px 56px; background: var(--surface); border: 1px solid var(--line); color: var(--muted); }
.checklist li::before { counter-increment: step; content: counter(step); position: absolute; left: 18px; top: 17px; color: var(--gold); font: 900 22px/1 "Barlow Condensed", sans-serif; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-block; padding: 11px 15px; border: 1px solid var(--gold); color: var(--text); font: 700 12px/1 "Barlow Condensed", sans-serif; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.button.primary { background: var(--gold); color: #090909; }
.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 28px 0 46px; color: var(--muted); font-size: 14px; }

@media (max-width: 740px) {
  .site-nav { display: block; }
  .nav-links { justify-content: flex-start; margin-top: 16px; }
  .grid, .grid.three, .diagram { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
}
