:root {
  --bg: #f6f4ef; --bg-2: #eee9de; --ink: #14130f; --ink-2: #2b2a25;
  --muted: #7a766b; --line: #1413100f; --line-strong: #1413101f;
  --card: #ffffff; --accent: #14130f;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: "Instrument Serif", serif; font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -0.02em; font-size: 20px;
  color: var(--ink); text-decoration: none;
}
.logo-mark { width: 28px; height: 28px; border-radius: 8px;
  background: var(--ink); display: grid; place-items: center;
  color: var(--bg); font-weight: 800; font-size: 13px;
}
.btn { appearance: none; border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink);
  padding: 9px 16px; border-radius: 999px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  font-family: inherit; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .15s ease;
}
.btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.primary:hover { background: #000; }

/* PAGE HEADER */
.page-head { padding: 64px 0 32px; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.page-head h1 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 700; margin: 16px 0 0; text-wrap: balance;
}
.page-head p.lede { font-size: 18px; color: var(--muted); margin: 18px 0 0; max-width: 60ch; }
.updated { font-size: 13px; color: var(--muted); margin-top: 18px; font-family: "JetBrains Mono", monospace; }

/* CONTENT */
.content { padding: 24px 0 80px; }
.content h2 { font-size: 26px; letter-spacing: -0.02em; margin: 48px 0 12px; line-height: 1.2; }
.content h3 { font-size: 19px; margin: 28px 0 8px; }
.content p { color: var(--ink-2); margin: 0 0 14px; }
.content ul, .content ol { color: var(--ink-2); padding-left: 22px; margin: 0 0 16px; }
.content li { margin-bottom: 8px; }
.content a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.content strong { color: var(--ink); font-weight: 600; }

.card { background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px; margin: 24px 0;
}

/* STATUS */
.status-grid { display: grid; gap: 12px; margin-top: 24px; }
.status-row { display: grid; grid-template-columns: 1fr auto; align-items: center;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 22px;
}
.status-row .name { font-weight: 600; font-size: 15.5px; }
.status-row .domain { font-size: 12.5px; color: var(--muted); font-family: "JetBrains Mono", monospace; margin-top: 2px; }
.status-pill { display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #0a7c4a;
  background: #2ecc7118; padding: 6px 12px; border-radius: 999px;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 999px; background: #2ecc71; box-shadow: 0 0 0 4px #2ecc7126; }
.status-pill.warn { color: #946100; background: #f59e0b22; }
.status-pill.warn .dot { background: #f59e0b; box-shadow: 0 0 0 4px #f59e0b22; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.contact-card { background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 26px; text-decoration: none; color: var(--ink);
  transition: all .15s ease; display: block;
}
.contact-card:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.contact-card .ic { font-size: 22px; }
.contact-card .ttl { font-weight: 700; font-size: 17px; margin-top: 8px; }
.contact-card .val { font-size: 14px; color: var(--muted); margin-top: 4px; font-family: "JetBrains Mono", monospace; }
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }

/* FAQ-style help */
.help-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.help-item h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.help-item p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* FOOTER */
footer { border-top: 1px solid var(--line); padding: 32px 0; margin-top: 40px; }
.foot { display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px;
}
.foot a { color: var(--ink-2); text-decoration: none; }
.foot a:hover { color: var(--ink); }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 600px) {
  .page-head { padding: 40px 0 24px; }
  .content { padding: 16px 0 60px; }
  .content h2 { font-size: 22px; margin-top: 36px; }
  .card { padding: 22px; }
}
