:root {
  --bg: #0b0d12;
  --surface: #141821;
  --surface-2: #1b2030;
  --text: #f4f1ea;
  --muted: #a7a9b2;
  --gold: #c7a361;
  --gold-soft: rgba(199, 163, 97, 0.14);
  --line: rgba(255, 255, 255, 0.09);
  --radius: 18px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(11, 13, 18, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; font-size: 19px; letter-spacing: 0.2px; }
.brand:hover { text-decoration: none; }
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; gap: 22px; font-size: 15px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Hero */
.hero { padding: 88px 0 72px; text-align: center; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold); background: var(--gold-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.15; margin: 0; font-weight: 700; }
h1 { font-size: clamp(38px, 7vw, 64px); letter-spacing: -0.5px; }
h1 em { font-style: normal; color: var(--gold); }
.lede { max-width: 640px; margin: 22px auto 0; font-size: clamp(17px, 2.4vw, 20px); color: var(--muted); }
.cta-row { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: 14px; font-weight: 600; font-size: 16px; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--gold); color: #111; }
.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.note { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* Sections */
section { padding: 72px 0; border-top: 1px solid var(--line); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(28px, 4.6vw, 40px); }
.section-head p { color: var(--muted); margin-top: 12px; }

.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card .icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); font-size: 22px; margin-bottom: 16px; }
.card h3 { font-family: inherit; font-size: 18px; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }

.split { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.split .card h3 { font-family: "Playfair Display", Georgia, serif; font-size: 26px; margin-bottom: 12px; }
.split ul { margin: 14px 0 0; padding-left: 20px; color: var(--muted); }
.split li { margin-bottom: 6px; }

/* Compare table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 15.5px; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--surface-2); font-weight: 600; }
tr:last-child td { border-bottom: 0; }
td.yes { color: var(--gold); font-weight: 600; }
td.no { color: var(--muted); }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { position: relative; padding-top: 52px; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: 22px; left: 26px; font-family: "Playfair Display", Georgia, serif; font-size: 22px; color: var(--gold); }

/* Legal / prose pages */
.prose { max-width: 760px; margin: 0 auto; padding: 64px 0 80px; }
.prose h1 { font-size: clamp(34px, 6vw, 48px); margin-bottom: 8px; }
.prose h2 { font-size: 24px; margin: 40px 0 10px; }
.prose p, .prose li { color: #d9d7d0; }
.prose .meta { color: var(--muted); font-size: 14px; }
.prose .callout { background: var(--gold-soft); border: 1px solid rgba(199, 163, 97, 0.35); border-radius: 14px; padding: 18px 20px; margin: 26px 0; color: var(--text); }
details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px 20px; margin-bottom: 10px; }
summary { cursor: pointer; font-weight: 600; }
details p { margin: 10px 0 0; color: var(--muted); }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 36px 0 48px; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; }
footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
footer a { color: var(--muted); }

@media (max-width: 600px) {
  .nav-links { gap: 14px; font-size: 14px; }
  .nav-links .hide-sm { display: none; }
  .hero { padding: 64px 0 56px; }
  section { padding: 56px 0; }
}
