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

:root {
  --gold:    #c8aa6e;
  --gold-dim:#8a6e2f;
  --bg:      #0a0a0f;
  --bg2:     #0f0f18;
  --bg3:     #13131f;
  --border:  rgba(200,170,110,0.18);
  --text:    #e8e0d0;
  --text-dim:#9a9080;
  --red:     #c84848;
  --radius:  12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: #0a0a0f;
  font-size: 1rem;
  padding: 13px 28px;
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-dim);
  font-size: 1rem;
  padding: 13px 28px;
}
.btn-donate {
  background: #ff5e5b;
  color: #fff;
}
.btn-donate-lg {
  background: #ff5e5b;
  color: #fff;
  font-size: 1.1rem;
  padding: 15px 36px;
  border-radius: 10px;
}

/* ── HERO ── */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200,170,110,0.08) 0%, transparent 70%);
}
.hero-inner { max-width: 760px; margin: 0 auto; }

.badge {
  display: inline-block;
  background: rgba(200,170,110,0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #fff;
}
.gold { color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── SECTIONS ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
  color: #fff;
}

/* ── FEATURES ── */
.features { background: var(--bg2); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(200,170,110,0.4); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how { background: var(--bg); }

.steps {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #0a0a0f;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li div {
  font-size: 0.95rem;
  color: var(--text-dim);
  padding-top: 6px;
}
.steps li strong { color: var(--text); }

/* ── SAFE ── */
.safe { background: var(--bg2); }
.safe-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.safe-inner > div:first-child { flex: 1; min-width: 280px; }
.safe-inner h2 { text-align: left; margin-bottom: 16px; }
.safe-inner p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.safe-inner strong { color: var(--text); }
.safe-badge {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(74,159,110,0.5);
  background: rgba(74,159,110,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.safe-icon { font-size: 2.5rem; }
.riot-disclaimer {
  font-size: 0.75rem !important;
  color: #5a5a6a !important;
  margin-top: 16px !important;
  font-style: italic;
}

.safe-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4a9f6e;
  text-align: center;
  line-height: 1.4;
}

/* ── DONATE ── */
.donate {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,94,91,0.07) 0%, transparent 70%),
              var(--bg);
}
.donate-inner {
  text-align: center;
  max-width: 640px;
}
.donate-inner h2 { margin-bottom: 16px; }
.donate-inner > p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.donate-note {
  margin-top: 16px !important;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
}
footer a { color: var(--text-dim); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero { padding: 70px 20px 60px; }
  section { padding: 60px 20px; }
  .safe-inner { flex-direction: column; align-items: flex-start; }
  .safe-badge { align-self: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}
