* { box-sizing: border-box; }
:root {
  --bg: #0b0f14;
  --panel: #111821;
  --panel-2: #151e29;
  --text: #eef4fb;
  --muted: #9aabba;
  --line: #243241;
  --accent: #78d7ff;
  --max: 1120px;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(11,15,20,.82);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { font-weight: 750; letter-spacing: -.02em; }
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: .94rem; }
nav a:hover { color: var(--text); }
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 24px;
}
.hero { min-height: 76vh; display: flex; flex-direction: column; justify-content: center; }
.eyebrow {
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .18em;
  font-weight: 800;
  margin-bottom: 12px;
}
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3.2rem, 8vw, 7rem); letter-spacing: -.055em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -.035em; }
h3 { font-size: 1.35rem; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
.actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 700;
  background: var(--panel);
}
.button.primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.button:hover { transform: translateY(-1px); }
.split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; border-top: 1px solid var(--line); }
.body-copy { color: var(--muted); font-size: 1.05rem; }
.section-heading { margin-bottom: 32px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  min-height: 260px;
}
.card p, .contact-card p { color: var(--muted); }
.status {
  display: inline-block;
  font-size: .69rem;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 38px;
}
.card-link { color: var(--muted); font-size: .9rem; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags span {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: #c7d3df;
}
.empty-state {
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 36px;
  color: var(--muted);
}
.contact-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 24px 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .9rem;
}
@media (max-width: 760px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  nav { gap: 14px; }
  .section { padding: 72px 20px; }
  .hero { min-height: auto; padding-top: 110px; padding-bottom: 110px; }
  .split, .grid { grid-template-columns: 1fr; }
  .split { gap: 24px; }
  .contact-card, footer { align-items: flex-start; flex-direction: column; }
}
