/* Standalone stylesheet — this page shares no build, no bundler and no tokens
   with wire-web. The colours below are copied from wire-web/src/index.css so it
   reads as the same product; keep them in step by hand if the palette moves.
   No webfont: Geist would be a second request that a blocker can also eat, and
   the fallback stack is what most visitors would see anyway. */

:root {
  --bg: #060a12;
  --panel: #0c1220;
  --border: #1a2438;
  --border-soft: #141d2e;
  --text: #e2e8f0;
  --muted: #a3b2c6;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 2.5rem 1.25rem 6rem;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  /* The messenger launcher sits bottom-right; keep the last line clear of it. */
}

.card {
  max-width: 46rem;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 2rem;
}

.brand {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}

h1 {
  margin: 0.4rem 0 0;
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.lede {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}

h2 {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

p {
  margin: 0 0 0.75rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

li {
  margin-bottom: 0.3rem;
}

a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--border);
}

a:hover,
a:focus-visible {
  text-decoration-color: currentColor;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border: 1px solid var(--border);
  border-radius: 4px;
}

footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  color: var(--muted);
  font-size: 0.92rem;
}

#chat-blocked {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

#chat-blocked strong {
  color: var(--text);
}

.back {
  margin: 1rem 0 0;
}

@media (max-width: 30rem) {
  body {
    padding: 1.5rem 0.9rem 6rem;
  }

  .card {
    padding: 1.35rem;
  }

  h1 {
    font-size: 1.6rem;
  }
}
