:root {
  --bg: #0b0f14;
  --surface: #111720;
  --surface-2: #151c26;
  --line: #26303d;
  --line-soft: #1d2631;
  --text: #f1f5f9;
  --muted: #96a2b1;
  --accent: #8bd3b0;
  --accent-strong: #b8efd6;
  --max: 1180px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% -10%, rgba(120, 160, 190, 0.08), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid #506075;
  border-radius: 4px;
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: 3px;
  bottom: 3px;
  border-radius: 2px;
  background: var(--accent);
}

.brand-name {
  font-size: 15px;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
  color: var(--muted);
}

.nav a:hover,
.footer a:hover {
  color: var(--text);
}

.hero {
  padding: 112px 0 92px;
  max-width: 870px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  color: #7f8c9c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 920px;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 34px;
  color: #b3bdc8;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 650;
  border: 1px solid var(--line);
}

.button-primary {
  background: #edf4f0;
  color: #101711;
  border-color: #edf4f0;
}

.button-secondary {
  background: #111720;
  color: #c9d2dc;
}

.status-card {
  border: 1px solid var(--line);
  background: rgba(17, 23, 32, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.status-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.status-summary h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.025em;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid #2f4b40;
  background: #111d18;
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 650;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 211, 176, .10);
}

.status-grid {
  display: grid;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 28px;
  border-bottom: 1px solid var(--line-soft);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row > div {
  min-width: 0;
}

.status-row strong,
.status-row span {
  display: block;
}

.status-row strong {
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 650;
}

.status-row div span {
  color: var(--muted);
  font-size: 12px;
}

.status-value {
  flex: 0 0 auto;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 650;
}

.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading p,
.contact p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.metric {
  min-height: 160px;
  padding: 22px;
  background: rgba(17, 23, 32, .72);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.metric:last-child {
  border-right: 0;
}

.metric-label {
  color: #778493;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.metric strong {
  margin-top: auto;
  margin-bottom: 4px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.metric > span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: linear-gradient(180deg, rgba(21,28,38,.86), rgba(15,21,29,.86));
}

.service-index {
  margin-bottom: 54px;
  color: #667383;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.service-card p {
  margin-bottom: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 70px;
  align-items: end;
}

.contact p {
  margin-top: 18px;
  max-width: 650px;
}

.contact-note {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  background: var(--surface);
}

.contact-note > span,
.contact-note > strong {
  display: block;
}

.contact-note > span {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-note > strong {
  font-size: 13px;
  font-weight: 650;
}

.contact-note .status-dot {
  margin-right: 8px;
}

.footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #718091;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    display: none;
  }

  .hero {
    padding: 84px 0 68px;
  }

  .section-heading,
  .contact {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-note {
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .topbar {
    height: 66px;
  }

  .hero {
    padding: 64px 0 54px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .status-summary,
  .status-row {
    padding-left: 18px;
    padding-right: 18px;
  }

  .status-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .section {
    padding: 72px 0;
  }

  .metrics,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .service-index {
    margin-bottom: 36px;
  }

  .footer {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
