/* Throne Seeker — Homepage styles. Dark aubergine + gold, royal but minimal. */

:root {
  --bg: #1a1124;
  --surface: #241733;
  --elevated: #2e1f40;
  --border: #3a2b4d;
  --text: #f5efe0;
  --muted: #a99fb5;
  --faint: #6b5e7a;
  --gold: #e8b84b;
  --gold-deep: #b8902f;
  --royal: #5b2a86;
  --max: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(26, 17, 36, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
}
.brand svg { width: 22px; height: 22px; }
.site-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--gold); text-decoration: none; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(232, 184, 75, 0.12), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(91, 42, 134, 0.18), transparent 50%);
  pointer-events: none;
}
.hero-crown {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--gold);
  filter: drop-shadow(0 4px 12px rgba(232, 184, 75, 0.3));
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--gold); }
.hero-lead {
  margin: 20px auto 0;
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 10px 20px;
  border: 1px solid var(--royal);
  border-radius: 999px;
  background: rgba(91, 42, 134, 0.12);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

/* ── Section base ────────────────────────────────────────── */
section {
  padding: 80px 0;
}
section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
section .section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ── How it works ────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.step {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: left;
}
.step-num {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ── Features ────────────────────────────────────────────── */
.section-features { background: var(--surface); }
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feature {
  padding: 24px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.feature-icon {
  width: 36px; height: 36px;
  margin-bottom: 14px;
  color: var(--gold);
}
.feature h3 { font-size: 16px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ── Skins showcase ──────────────────────────────────────── */
.skins {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.skin-card {
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.skin-swatch {
  width: 88px; height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.skin-swatch::after {
  content: '▲';
  font-size: 32px;
  line-height: 1;
}
.skin-card.plain .skin-swatch { background: #1a1124; border: 2px solid #3a2b4d; }
.skin-card.plain .skin-swatch::after { color: #e8b84b; }
.skin-card.royal .skin-swatch { background: #1b0f2e; border: 2px solid #4d2d73; }
.skin-card.royal .skin-swatch::after { color: #f2c94c; }
.skin-card.treasure .skin-swatch { background: #2a2118; border: 2px solid #5c4a33; }
.skin-card.treasure .skin-swatch::after { color: #c2410c; }
.skin-card.neon .skin-swatch { background: #0a0a12; border: 2px solid #26263f; box-shadow: 0 0 18px rgba(34, 211, 238, 0.35); }
.skin-card.neon .skin-swatch::after { color: #22d3ee; }
.skin-card h4 { font-size: 15px; margin-bottom: 4px; }
.skin-card .skin-tier {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--faint);
}
.skin-card.pro .skin-tier { color: var(--gold); }

/* ── CTA ─────────────────────────────────────────────────── */
.cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 184, 75, 0.08), transparent 60%);
}
.cta h2 { margin-bottom: 14px; }
.cta p { color: var(--muted); max-width: 540px; margin: 0 auto 24px; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--faint);
  font-size: 13px;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}
.site-footer nav { display: flex; gap: 18px; }
.site-footer a { color: var(--muted); }

/* ── Legal pages ─────────────────────────────────────────── */
.legal-main {
  padding: 60px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}
.legal-main h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--gold);
}
.legal-main .legal-meta {
  color: var(--faint);
  font-size: 13px;
  margin-bottom: 40px;
}
.legal-main h2 {
  font-size: 1.25rem;
  margin: 40px 0 12px;
  color: var(--text);
}
.legal-main h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
  color: var(--text);
}
.legal-main p,
.legal-main ul {
  color: var(--muted);
  margin-bottom: 14px;
}
.legal-main ul {
  padding-left: 24px;
}
.legal-main li { margin-bottom: 6px; }
.legal-main address {
  font-style: normal;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 16px 0;
  color: var(--text);
}
