:root {
  color-scheme: light;
  --bg: #f5f7f8;
  --surface: #ffffff;
  --ink: #17211d;
  --muted: #5f6f68;
  --line: #dce5e1;
  --accent: #167a5b;
  --accent-soft: #e2f3ec;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  margin: 0;
}

.service-page {
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-items: center;
}

.service-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(23, 33, 29, 0.08);
  max-width: 760px;
  padding: 30px;
  width: 100%;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0;
}

h2 {
  font-size: 1.1rem;
  margin-top: 28px;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

a {
  color: var(--accent);
  font-weight: 700;
}

.status-line {
  align-items: center;
  background: var(--accent-soft);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  margin: 22px 0;
  padding: 12px 14px;
}

.status-line span {
  background: var(--accent);
  border-radius: 999px;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.endpoint-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

code {
  background: #eef3f1;
  border-radius: 6px;
  display: inline-block;
  font-size: 0.95rem;
  padding: 7px 9px;
}
