:root {
  --bg: #1e1e1e;
  --surface: #252526;
  --surface-raised: #2d2d2d;
  --border: #3e3e42;
  --text: #cccccc;
  --text-dim: #888888;
  --accent: #f27f0c;
  --accent-dim: #3d2a14;
  --warn: #ff9d5c;
  --warn-dim: #5c4128;
  --white: #FFFFFF;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

/* Header */
header {
  background: var(--surface);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.brand span { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
nav { display: flex; gap: 24px; }
nav a { color: var(--text); font-weight: 500; opacity: 0.85; text-decoration: none; }
nav a:hover { opacity: 1; color: var(--accent); }

/* Hero */
.hero {
  background: var(--bg);
  color: var(--text);
  text-align: center;
  padding: 80px 24px 90px;
}
.hero img.logo { width: 120px; height: 120px; border-radius: 24px; margin-bottom: 28px; box-shadow: 0 10px 40px rgba(242,127,12,0.25); }
.hero h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 12px; color: var(--accent); }
.hero p.tagline { font-size: 1.25rem; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.hero p.sub { font-size: 1.05rem; color: var(--text-dim); max-width: 560px; margin: 0 auto 32px; }

.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-accent { background: var(--accent); color: var(--bg); box-shadow: 0 6px 20px rgba(242,127,12,0.3); }
.btn-partner { background: var(--accent-dim); color: var(--accent); border: 2px solid var(--accent); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.badge-soon { display: block; font-size: 0.75rem; font-weight: 500; opacity: 0.9; margin-top: 6px; color: var(--warn); }

/* Sections */
section { padding: 64px 0; }
section h2 { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 12px; color: var(--text); }
section p.section-sub { text-align: center; color: var(--text-dim); max-width: 600px; margin: 0 auto 40px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text); }
.card p { color: var(--text-dim); font-size: 0.95rem; }

/* Partner band */
.partner-band {
  background: var(--surface);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partner-band .icon { background: var(--accent-dim); color: var(--accent); }
.partner-band h2 { color: var(--text); }
.partner-band p.section-sub { color: var(--text-dim); }
.partner-band .card { background: var(--surface-raised); border: 1px solid var(--border); }
.partner-band .card h3 { color: var(--text); }
.partner-band .card p { color: var(--text-dim); }

/* Steps */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step .num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.step h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--text); }
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* FAQ */
.faq-item { background: var(--surface-raised); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; margin-bottom: 12px; }
.faq-item h3 { font-size: 1rem; margin-bottom: 6px; color: var(--text); }
.faq-item p { color: var(--text-dim); font-size: 0.95rem; }

/* Legal pages */
.legal { background: var(--surface-raised); border: 1px solid var(--border); border-radius: 16px; padding: 40px; margin: 40px 0; }
.legal h1 { font-size: 1.8rem; margin-bottom: 4px; color: var(--accent); }
.legal .updated { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 24px; }
.legal h2 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--text); }
.legal h3 { font-size: 1rem; margin: 18px 0 8px; color: var(--accent); }
.legal p, .legal li { color: var(--text-dim); margin-bottom: 10px; }
.legal ul { padding-left: 22px; }

/* Footer */
footer {
  background: var(--surface);
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}
footer .links { margin-bottom: 12px; }
footer .links a { color: var(--text); margin: 0 12px; opacity: 0.85; text-decoration: none; }
footer .links a:hover { opacity: 1; color: var(--accent); }

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  nav { gap: 14px; font-size: 0.9rem; }
}
