/* Shared placeholder styling for the domains that have no site yet (2026-09-20).
   Deliberately plain: a holding page should look intentional, load instantly and say nothing it can't back up.
   Self-hosted font, no third-party requests, no cookies, no analytics. */

@font-face {
  font-family: 'Cabin';
  src: url('font/cabin.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --bg: #0d0d0f;
  --panel: #15151a;
  --heading: #f0f0f2;
  --body: #9a9aa4;
  --accent: #c8a24a;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background: var(--bg);
  color: var(--body);
  font-family: 'Cabin', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.mark {
  display: inline-block;
  margin-bottom: 28px;
  padding: 10px 18px;
  border: 1px solid rgba(200, 162, 74, .35);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--heading);
}

p { margin: 0 auto; max-width: 44ch; }



footer {
  margin-top: 28px;
  font-size: 13px;
  color: #5e5e68;
}

@media (max-width: 480px) {
  h1 { font-size: 27px; }
  body { font-size: 16px; }
}
