:root {
  --bg: #08090d;
  --bg-elevated: #0f1118;
  --text: #ece8e1;
  --muted: #8a8698;
  --gold: #c9a227;
  --gold-dim: #9a7b1c;
  --border: #2a3044;
  --max: 720px;
  --max-wide: 840px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display: Georgia, 'Times New Roman', serif;
}

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 70% at 20% 0%, rgba(201, 162, 39, 0.12), transparent 55%),
    linear-gradient(160deg, #0a0c12 0%, #08090d 60%, #06070a 100%);
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

.site-header {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 24px 20px 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
}

.site-nav__brand:hover {
  text-decoration: none;
  color: var(--gold);
}

.site-nav__crest {
  font-size: 1.25rem;
  color: var(--gold);
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  list-style: none;
}

.site-nav__links a {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: none;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current='page'] {
  color: var(--gold);
  text-decoration: none;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 64px;
}

main--wide {
  max-width: var(--max-wide);
}

h1 {
  font-family: var(--display);
  font-size: 2.25rem;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.15;
}

h2 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--text);
}

h3 {
  font-size: 1rem;
  margin: 20px 0 8px;
  color: var(--text);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 24px;
}

.tagline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dim);
  margin-bottom: 16px;
}

.updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 28px;
}

p,
li {
  color: var(--text);
  margin-bottom: 12px;
}

ul,
ol {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 20px 0;
  background: rgba(201, 162, 39, 0.05);
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.45);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 16px 0 28px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(180deg, #e4c04a 0%, #c9a227 100%);
  color: #0a0b0f;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
}

.btn:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.btn--secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: var(--bg-elevated);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  margin-bottom: 10px;
  color: var(--gold);
}

.faq details p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 20px 48px;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 12px;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold);
}

.hero__crest {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.35));
}