:root {
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --teal: #0D9488;
  --stone: #1C1917;
  --stone-surface: #292524;
  --stone-border: rgba(255, 255, 255, 0.12);
  --bg: #1C1917;
  --bg-card: #292524;
  --bg-card-border: rgba(255, 255, 255, 0.12);
  --text: #F5F4F2;
  --text-muted: #9CA3AF;
  --text-subtle: #6B7280;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

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

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

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

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

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

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 80px 24px 64px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.35);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--amber); }

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--amber); color: #1C1917; }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid var(--stone-border); }

.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Cards / sections ── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 100px;
  background: rgba(107, 114, 128, 0.15);
  border: 1px solid rgba(107, 114, 128, 0.25);
  color: var(--text-subtle);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section > p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 48px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

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

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid var(--bg-card-border);
  margin: 0 24px;
}

/* ── Footer ── */
footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer p { font-size: 0.85rem; color: var(--text-subtle); }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 0.85rem; color: var(--text-subtle); }
.footer-links a:hover { color: var(--text-muted); text-decoration: none; }

/* ── Legal pages ── */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal h1 { font-size: 2rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.02em; }
.legal .updated { font-size: 0.85rem; color: var(--text-subtle); margin-bottom: 48px; display: block; }
.legal h2 { font-size: 1.05rem; font-weight: 700; margin: 40px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--bg-card-border); }
.legal p { color: var(--text-muted); margin-bottom: 14px; }
.legal li { color: var(--text-muted); margin-left: 20px; margin-bottom: 6px; }
.legal ul { margin-bottom: 14px; }

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 0.875rem;
}

.legal th {
  text-align: left;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal td {
  padding: 10px 14px;
  border: 1px solid var(--bg-card-border);
  vertical-align: top;
}

.legal strong { color: var(--text); font-weight: 600; }
.legal a { color: var(--amber); }
.legal hr { border: none; border-top: 1px solid var(--bg-card-border); margin: 40px 0; }

/* ── Responsive ── */
@media (max-width: 640px) {
  nav { padding: 16px; }
  .nav-links { display: none; }
  .hero { padding: 48px 20px 48px; }
  .section { padding: 48px 20px; }
  footer { flex-direction: column; align-items: flex-start; }
}
