/* Outglow support page — inherits the legal-doc look so the brand
   feels consistent across api.outglow.live/legal/* and /support. */

:root {
  --bg: #08060e;
  --card: #181423;
  --text: #f6f2ff;
  --text-dim: #d4cce8;
  --muted: #a89fb8;
  --line: #2a2238;
  --primary: #ff3e7f;
  --warm: #ffb347;
  --accent: #5be9ff;
}

* { box-sizing: border-box; }

html { background: var(--bg); color-scheme: dark; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(255, 62, 127, 0.35); color: var(--text); }

main {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1;
}

h2 {
  margin: 34px 0 10px;
  color: var(--warm);
  font-size: 22px;
  line-height: 1.15;
}

p, li { color: var(--text-dim); }
p { margin: 0 0 14px; }
ul { margin: 10px 0 0; padding-left: 22px; }
li { margin: 8px 0; }

a {
  color: var(--accent);
  border-bottom: 1px solid rgba(91, 233, 255, 0.35);
  font-weight: 800;
  text-decoration: none;
}
a:hover { color: var(--text); border-bottom-color: var(--primary); }

.card {
  margin: 24px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.card-title {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
}

.muted { color: var(--muted); font-weight: 700; }

.contact-list {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}
.contact-list li {
  margin: 14px 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--primary);
  border-radius: 6px;
}
.contact-list strong { color: var(--text); display: block; margin-bottom: 4px; }

details {
  margin: 8px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: background 120ms ease;
}
details[open] { background: rgba(255, 255, 255, 0.04); }
summary {
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  margin-left: 12px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  transition: transform 160ms ease;
}
details[open] summary::after { content: "−"; }
details p { padding: 0 16px 16px; margin: 0; }
details p a { word-break: break-word; }

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-left: 0;
  list-style: none;
}
.links li { margin: 0; }

footer {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  main { width: min(820px, calc(100% - 24px)); padding: 32px 0 56px; }
  .card { padding: 16px; }
  h2 { font-size: 20px; }
}
