:root {
  color-scheme: dark;
  --bg: #0f1111;
  --surface: #171b1d;
  --panel: #1e2326;
  --border: #30383d;
  --text: #f6f1df;
  --muted: #c9c0aa;
  --subtle: #928b7d;
  --accent: #6bd58a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(107, 213, 138, 0.08), transparent 36rem), var(--bg);
}

a {
  color: var(--accent);
}

.siteHeader,
.siteFooter,
main {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.siteHeader {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.brand {
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.siteNav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.siteNav a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

.siteNav a:hover,
.siteNav a:focus-visible {
  color: var(--accent);
}

.hero,
.contentCard,
.siteFooter {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
}

.hero {
  padding: clamp(24px, 4vw, 42px);
}

.contentCard,
.siteFooter {
  margin-top: 18px;
  padding: 22px;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 28px 0 10px;
  font-size: 24px;
}

h3 {
  margin: 20px 0 8px;
  color: var(--muted);
  font-size: 17px;
}

p,
li {
  max-width: 78ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.lead {
  margin-top: 18px;
  font-size: 18px;
}

.buttonRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(107, 213, 138, 0.35);
  border-radius: 8px;
  color: var(--text);
  background: rgba(107, 213, 138, 0.12);
  font-weight: 850;
  text-decoration: none;
}

.button.secondary {
  border-color: var(--border);
  color: var(--muted);
  background: rgba(255,255,255,0.035);
}

.trustNote {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--subtle);
  font-size: 13px;
}

.linkGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.linkGrid a {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface);
  font-weight: 850;
  text-decoration: none;
}

.siteFooter {
  margin-bottom: 28px;
  color: var(--subtle);
  font-size: 13px;
}

@media (max-width: 720px) {
  .siteHeader {
    align-items: flex-start;
  }

  .siteNav {
    width: 100%;
  }
}
