:root {
  --black: #050505;
  --ink: #18181b;
  --muted: #666a73;
  --soft: #f5f5f3;
  --panel: #ffffff;
  --line: #deded9;
  --line-dark: #2a2a2a;
  --accent: #111111;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    #fafaf8;
  background-size: 36px 36px;
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.72; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 920px;
  color: var(--black);
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
h2 {
  color: var(--black);
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
h3 { color: var(--black); font-size: 20px; letter-spacing: -0.01em; margin-bottom: 10px; }
.shell { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(18px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 900; color: var(--black); }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand strong { display: block; letter-spacing: 0.14em; font-size: 18px; }
.brand span { display: block; margin-top: 2px; color: var(--muted); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.links { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 800; color: rgba(24, 24, 27, 0.72); }
.links a:hover { color: var(--black); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: var(--black);
  color: #fff;
  border: 1px solid var(--black);
}
.btn.secondary { background: transparent; color: var(--black); border-color: var(--line-dark); }
.btn.light { background: #fff; color: var(--black); border-color: #fff; }
.eyebrow {
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.lead { max-width: 780px; color: rgba(24, 24, 27, 0.72); font-size: 18px; line-height: 1.78; }
.hero { padding: 92px 0 72px; background: radial-gradient(circle at 80% 15%, #eeeeea 0, transparent 32%), #fff; border-bottom: 1px solid var(--line); }
.section { padding: 88px 0; }
.band { background: #fff; border-block: 1px solid var(--line); }
.grid { display: grid; gap: 24px; }
.two { grid-template-columns: 1.04fr 0.96fr; align-items: center; }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 36px; font-size: 13px; font-weight: 800; color: var(--muted); }
.hero-note span { border-left: 2px solid var(--black); padding-left: 12px; }
.dashboard {
  position: relative;
  border: 1px solid var(--line-dark);
  background: #101010;
  color: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}
.dash-top { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 14px; margin-bottom: 16px; }
.dash-logo { display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 900; letter-spacing: 0.18em; }
.dash-logo img { width: 42px; height: 42px; object-fit: contain; filter: invert(1); background: #fff; }
.dash-status { color: #d7d7d7; font-size: 12px; }
.dash-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.dash-card { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); padding: 16px; min-height: 116px; }
.dash-card small { display: block; color: #b8b8b8; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.dash-card strong { display: block; color: #fff; font-size: 34px; line-height: 1; margin-top: 16px; }
.dash-card span { display: block; color: #cfcfcf; margin-top: 8px; font-size: 13px; }
.dash-wide { grid-column: 1 / -1; }
.bars { display: grid; gap: 9px; margin-top: 16px; }
.bar { height: 8px; background: rgba(255,255,255,.13); overflow: hidden; }
.bar i { display: block; height: 100%; background: #fff; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 28px;
  box-shadow: var(--shadow);
}
.card.no-shadow { box-shadow: none; }
.card-number { color: var(--black); font-size: 12px; font-weight: 900; letter-spacing: 0.16em; margin-bottom: 22px; }
.capability { border-top: 1px solid var(--line); padding-top: 20px; }
.capability p { margin-bottom: 0; }
.matrix {
  border: 1px solid var(--line);
  background: #fff;
}
.matrix-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  border-bottom: 1px solid var(--line);
}
.matrix-row:last-child { border-bottom: 0; }
.matrix-row > div { padding: 20px; border-right: 1px solid var(--line); }
.matrix-row > div:last-child { border-right: 0; }
.matrix-head { background: #0b0b0b; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.matrix-head > div { color: #fff; }
.deliverables { display: grid; gap: 12px; }
.deliverables div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  font-weight: 850;
  color: var(--black);
}
.deliverables span { color: var(--muted); font-weight: 700; }
.cta {
  background: var(--black);
  color: white;
  padding: 74px 0;
}
.cta h2, .cta .eyebrow { color: white; }
.cta p { color: rgba(255,255,255,.72); }
.cta-row { display: grid; grid-template-columns: 1.25fr auto; gap: 28px; align-items: center; }
.footer { background: var(--black); color: white; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.75fr 1fr; gap: 34px; }
.footer strong { color: #fff; }
.footer p, .footer a { color: rgba(255,255,255,.68); line-height: 1.72; }
.form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 850; color: var(--black); font-size: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
textarea { min-height: 150px; }
@media (max-width: 860px) {
  .links { display: none; }
  .two, .three, .four, .footer-grid, .cta-row { grid-template-columns: 1fr; }
  .matrix-row { grid-template-columns: 1fr; }
  .matrix-row > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .matrix-row > div:last-child { border-bottom: 0; }
  .hero, .section { padding: 58px 0; }
  .brand strong { font-size: 16px; }
}
