:root {
  --ink: #17201c;
  --muted: #5c665f;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: #dfe5df;
  --green: #2e7d58;
  --blue: #315f88;
  --amber: #b4751f;
  --shadow: 0 18px 50px rgba(23, 32, 28, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 18, 14, 0.86), rgba(9, 18, 14, 0.56) 42%, rgba(9, 18, 14, 0.08)),
    linear-gradient(180deg, rgba(9, 18, 14, 0.1), rgba(9, 18, 14, 0.45));
  z-index: -1;
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 112px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.82;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.primary-action {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #14211b;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.primary-action:focus-visible,
.secondary-action:focus-visible {
  outline: 3px solid rgba(86, 186, 134, 0.65);
  outline-offset: 3px;
}

.status-band,
.work-band {
  padding: 64px 0;
}

.status-band {
  background: #ffffff;
}

.work-band {
  background: #edf2ee;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading .eyebrow {
  color: var(--green);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.status-card {
  min-height: 156px;
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.status-dot {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 999px;
}

.status-dot-ok {
  background: var(--green);
}

.status-dot-warn {
  background: var(--amber);
}

.status-dot-info {
  background: var(--blue);
}

.status-label {
  margin: 20px 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.status-value {
  margin: 0;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid #d5ddd6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.check-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(46, 125, 88, 0.12);
  border: 1px solid rgba(46, 125, 88, 0.32);
}

.check-mark::after {
  content: "";
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg) translate(1px, -1px);
}

.check-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 750;
}

.check-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 64px 0 92px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 16px;
  }

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

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-content,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 18, 14, 0.74), rgba(9, 18, 14, 0.7)),
      linear-gradient(90deg, rgba(9, 18, 14, 0.82), rgba(9, 18, 14, 0.2));
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    min-height: 132px;
  }
}
