/* BAGHOLDER — Dark Theme Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0F0F14;
  --surface: #1A1A24;
  --text: #F0F0F5;
  --text-muted: #9898A8;
  --accent: #00DC82;
  --accent-dim: rgba(0, 220, 130, 0.15);
  --border: #2A2A38;
  --red: #FF4D4D;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a:hover {
  text-decoration: underline;
}

/* — Layout — */

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* — Navigation — */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 20, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

nav .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

/* — Hero — */

.hero {
  text-align: center;
  padding: 80px 0 60px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero .accent {
  color: var(--accent);
}

.hero .tagline {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
}

.hero .badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

/* — Sections — */

section {
  padding: 60px 0;
}

section + section {
  border-top: 1px solid var(--border);
}

section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* — Cards grid — */

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.card .step-num {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* — Fee table — */

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.fee-table th,
.fee-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.fee-table th {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.fee-table td {
  font-size: 15px;
}

.fee-table .accent-cell {
  color: var(--accent);
  font-weight: 600;
}

/* — Trust badges — */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.trust-item .icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--accent);
  font-size: 16px;
}

.trust-item p {
  font-size: 14px;
  color: var(--text-muted);
}

.trust-item strong {
  color: var(--text);
}

/* — Disclaimers — */

.disclaimers {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-top: 16px;
}

.disclaimers p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.disclaimers p:last-child {
  margin-bottom: 0;
}

/* — Footer — */

footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
}

/* — Legal pages — */

.legal-page {
  padding: 40px 0 80px;
}

.legal-page h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-page .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page p,
.legal-page ul {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 24px;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* — Support page — */

.support-page {
  padding: 40px 0 80px;
}

.support-page h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.support-page .subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 4px;
}

.faq h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 12px;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* — Responsive — */

@media (max-width: 640px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero .tagline {
    font-size: 16px;
  }

  section h2 {
    font-size: 22px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
