/* CoinSA SEO landing pages */
:root {
  color-scheme: dark;
  --bg: #070b14;
  --card: rgba(18, 28, 48, 0.92);
  --text: #f4f0e8;
  --muted: #8e9bb5;
  --gold: #f0b429;
  --gold-light: #ffd875;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at top, rgba(240, 180, 41, 0.08), transparent 40%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--gold-light);
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 18px;
}

.kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 12px;
}

.lead {
  color: var(--muted);
  margin: 0 0 16px;
}

ul,
ol {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #f0b429, #d4a017);
  color: #1a1200;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

footer {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
