/* hitech.dk root. A deliberately quiet page: it says who owns the domain and
 * that it is not for sale, and nothing else. No third-party fonts or scripts,
 * so it can run under the same strict CSP as everything below it. */

:root {
  --page: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;
  --text: #0f172a;
  --body: #64748b;
  --muted: #94a3b8;
  --accent: #2563eb;
  --accent-soft: #eff6ff;
  --ok: #22c55e;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #0b1220;
    --surface: #131c2b;
    --surface-2: #1c2637;
    --line: #2a3648;
    --line-soft: #1c2637;
    --text: #e8eef7;
    --body: #94a5bd;
    --muted: #64748b;
    --accent: #60a5fa;
    --accent-soft: #16233a;
    --ok: #4ade80;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--page);
  color: var(--body);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.card {
  width: 100%;
  max-width: 420px;
  padding: 48px 32px 32px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
}

h1 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.rule {
  width: 32px;
  height: 4px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: var(--accent);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body);
}

.note { margin: 0; font-size: 15px; }

.status {
  /* Flex, not an inline dot: otherwise the second line of wrapped text runs
     back under the dot instead of hanging with the rest of the sentence. */
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 28px 0 0;
  padding: 14px 16px;
  font-size: 14px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
}
.dot {
  display: inline-block;
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-1px);
  background: var(--ok);
  vertical-align: middle;
}

footer {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.ico { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
