@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0c0b0a;
  --bg-elevated: #161311;
  --bg-card: #151210;
  --border: #2b2622;
  --border-soft: #221f1b;

  --text: #f3ede4;
  --text-muted: #9c9088;
  --text-dim: #6f6653;

  --accent: #ff7a1f;
  --accent-bright: #ff9a4d;
  --accent-dim: #7a3f18;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius: 10px;
  --radius-sm: 6px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  background-image:
    none;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.01em;
}

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
  border-radius: 4px;
}
::selection { background: var(--accent); color: #12100e; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin: 0 0 0.9rem;
}

.section-inner { max-width: 980px; margin: 0 auto; padding: 5rem 1.5rem; }

/* ---------- HERO ---------- */

.hero { border-bottom: 1px solid var(--border-soft); }

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.08;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 50ch;
  margin: 1.25rem auto 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent-bright);
  background: rgba(255, 122, 31, 0.08);
  border: 1px solid rgba(255, 122, 31, 0.25);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  margin: 1.75rem 0 2.25rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ---------- BUTTONS ---------- */

.hero-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}


.btn-primary { background: var(--accent); color: #1a1409; }
.btn-primary:hover { background: var(--accent-bright); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent-dim); }

/* ---------- FEATURES ---------- */

.features { border-bottom: 1px solid var(--border-soft); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.feature-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.feature-desc { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ---------- HOW IT WORKS ---------- */

.how { border-bottom: 1px solid var(--border-soft); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-bright);
  display: block;
  margin-bottom: 0.6rem;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  margin: 0 0 0.4rem;
}

.step-desc { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- STATUS / ROADMAP ---------- */

.status-section { border-bottom: 1px solid var(--border-soft); text-align: center; }
.status-section h2 { margin-bottom: 1.25rem; }
.status-copy {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 56ch;
  margin: 0 auto 2rem;
}

/* ---------- FAQ ---------- */

.faq { border-bottom: 1px solid var(--border-soft); }
.faq-list { display: grid; gap: 0.75rem; margin-top: 2.5rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--accent-bright);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- LEGAL PAGES (ToS / Privacy) ---------- */

.legal-hero { border-bottom: 1px solid var(--border-soft); padding: 4rem 1.5rem 2.5rem; text-align: center; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.6rem); }
.legal-updated { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-dim); margin-top: 0.75rem; }

.legal-body { max-width: 720px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }
.legal-body h2 {
  font-size: 1.25rem;
  margin: 2.5rem 0 1rem;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 1rem; }
.legal-body ul { color: var(--text-muted); font-size: 0.95rem; padding-left: 1.2rem; margin: 0 0 1rem; }
.legal-body li { margin-bottom: 0.5rem; }
.legal-body strong { color: var(--text); }
.legal-body a { color: var(--accent-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--accent); }

/* ---------- RESPONSIVE ---------- */

@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 4.5rem 1.25rem 3rem; }
  .section-inner { padding: 3.5rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot { animation: none; opacity: 1; }
  .btn:hover { transform: none; }
}