:root {
  --bg: #f7f7f5;
  --panel: #ffffff;
  --ink: #1a1a18;
  --muted: #6b6b66;
  --line: #e4e4de;
  --accent: #2f6f4f;
  --warn: #9a5b1e;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14151a;
    --panel: #1c1e25;
    --ink: #ecedf0;
    --muted: #9a9ca6;
    --line: #2b2e37;
    --accent: #7fc2a0;
    --warn: #d9a45f;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 48rem; margin: 0 auto; padding: 4rem 1.25rem 3rem; }

.eyebrow {
  margin: 0 0 .5rem;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--accent);
}
h1 {
  margin: 0 0 .9rem;
  font-size: clamp(2rem, 6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.lead { margin: 0; color: var(--muted); font-size: 1.06rem; max-width: 36rem; }

section { margin-top: 3rem; }
.section-title {
  margin: 0 0 1rem;
  font-size: .8rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.services { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.service {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem 1.1rem;
}
.service-head { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.service-head a {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}
.service-head a:hover { color: var(--accent); }
.service p { margin: .35rem 0 0; color: var(--muted); font-size: .93rem; }

.badge {
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .16em .5em;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-public { color: var(--accent); background: color-mix(in srgb, var(--accent) 15%, transparent); }
.badge-lan    { color: var(--warn);   background: color-mix(in srgb, var(--warn) 15%, transparent); }

.hint { margin: 1rem 0 0; color: var(--muted); font-size: .9rem; }

.cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}
.card h3 { margin: 0 0 .4rem; font-size: .98rem; }
.card p { margin: 0; color: var(--muted); font-size: .92rem; }

code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: .875em;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  padding: .1em .35em;
  border-radius: 4px;
}

footer {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}
footer p { margin: 0; }
