/* Typography: Mona Sans (via Fontsource CDN) */
/* Comments intentionally in English. */
@font-face {
  font-family: "Mona Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/mona-sans:vf@latest/latin-wght-normal.woff2")
    format("woff2-variations");
}

:root {
  color-scheme: dark;
  --bg: #050607;
  --fg: #e9e9ea;
  --muted: rgba(233, 233, 234, 0.68);
  --line: rgba(233, 233, 234, 0.12);
  --panel: rgba(255, 255, 255, 0.02);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Mona Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0.2px;
}

a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

a:hover {
  border-bottom-color: rgba(233, 233, 234, 0.35);
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 20px;
}

.panel {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 18px;
  padding: 28px;
}

.kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

h1 {
  margin: 10px 0 10px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.01em;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 62ch;
  font-size: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  min-height: 120px;
}

.label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.footer {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.dot {
  opacity: 0.5;
}

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 18px 0;
}

.small {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 820px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
