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

:root {
  --bg: #0d0f12;
  --bg-raised: #14171b;
  --text: #e8e9ec;
  --text-dim: #9a9fa6;
  --accent: #7c5cff;
  --border: #23262b;
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

header.site {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

header.site .wrap {
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.brand span { color: var(--accent); }

nav.site a {
  color: var(--text-dim);
  margin-left: 24px;
  font-size: 0.92rem;
}

nav.site a:hover { color: var(--text); }

main { padding: 64px 0 40px; }

.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  max-width: 14ch;
}

.hero p {
  color: var(--text-dim);
  font-size: 1.08rem;
  max-width: 52ch;
}

.brands {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (max-width: 620px) {
  .brands { grid-template-columns: 1fr; }
}

.brand-card {
  background: var(--bg-raised);
  padding: 28px;
}

.brand-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.brand-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin: 0 0 12px;
}

.status {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
}

.status.live { color: var(--accent); border-color: var(--accent); }

footer.site {
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding: 28px 0;
}

footer.site .wrap {
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.88rem;
}

footer.site a { color: var(--text-dim); margin-right: 18px; }
footer.site a:hover { color: var(--text); }

/* Legal pages */
.legal h1 { font-size: 1.8rem; }
.legal .updated {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 1.15rem;
  margin-top: 2em;
}
.legal p, .legal li { color: var(--text-dim); }
.legal .placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-style: italic;
}