:root {
  --bg: #080a12;
  --panel: #0e1220;
  --panel-border: rgba(255, 255, 255, 0.06);
  --text: #d7dae3;
  --muted: #9aa3b2;
  --accent: #cfd2da;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

.corner-note {
  position: fixed;
  top: 16px;
  left: 20px;
  color: #9aa3b2;
  font-size: 12px;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

.wrap {
  min-height: 100svh;
  display: grid;
  place-items: start center;
  padding-top: clamp(64px, 12vh, 120px);
  padding-left: 16px;
  padding-right: 16px;
}

.card {
  width: min(640px, 92vw);
  background: linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(255,255,255,0.01)) , var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 28px 28px 24px;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.brand {
  width: 120px;
  height: auto;
  display: block;
  margin: 6px auto 10px;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,0.2));
}

.headline {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #e4e7ee;
}

.desc {
  margin: 0 auto 14px;
  max-width: 56ch;
  color: var(--muted);
  font-size: 12px;
}

.links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.9;
  transition: opacity 120ms ease, transform 120ms ease;
}

.link:hover { opacity: 1; transform: translateY(-1px); }

.links .dot { color: #6b7280; font-size: 14px; opacity: 0.8; }

/* Inline SVG icons inherit currentColor; no filter needed */

@media (prefers-color-scheme: light) {
  :root {
    --bg: #0b0f1a;
  }
}
