:root {
  color-scheme: dark;
  --bg: #0b0d10;
  --panel: #13171c;
  --line: #252b33;
  --text: #f4f7fb;
  --muted: #929ba7;
  --accent: #8fb7ff;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 8%, rgba(71, 117, 255, 0.13), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 68vh;
  display: grid;
  align-content: center;
  padding: 72px 0 48px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: .98;
  letter-spacing: -.055em;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

.status {
  width: fit-content;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 34px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(19, 23, 28, .72);
  color: #c8d0da;
  font-size: 13px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(143, 183, 255, .8);
}

.works { padding: 36px 0 72px; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.section-heading span { margin: 0; }
.section-heading h2 { font-size: 18px; }
.section-heading span { color: var(--muted); font-size: 13px; }

.empty-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}

.empty-number {
  margin: 0;
  color: #4d5662;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.empty-card h3 { margin: 0 0 6px; font-size: 18px; }
.empty-card div p { margin: 0; color: var(--muted); line-height: 1.6; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

footer p { margin: 0; }

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1040px); }
  .hero { min-height: 62vh; padding-top: 54px; }
  .empty-card { grid-template-columns: 1fr; gap: 12px; padding: 22px; }
  footer { flex-direction: column; }
}
