:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4f6f1;
  color: #18211f;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 107, 94, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(214, 68, 45, 0.16), transparent 22rem),
    linear-gradient(135deg, #fbfcf7 0%, #e9eee7 100%);
}

.shell {
  width: min(100% - 32px, 960px);
  margin: 0 auto;
  padding: clamp(28px, 7vh, 72px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  min-height: 58vh;
  border-bottom: 1px solid rgba(24, 33, 31, 0.16);
}

.brand-mark {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid #006b5e;
  border-radius: 50%;
  background: #fffef9;
  color: #006b5e;
  font-size: clamp(2rem, 8vw, 4.8rem);
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: 0 18px 60px rgba(24, 33, 31, 0.13);
}

.content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #c0392b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #18211f;
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: #3d4743;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 31, 0.14);
  border-radius: 8px;
  background: rgba(24, 33, 31, 0.14);
}

.status div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 254, 249, 0.82);
}

.status span {
  display: block;
  margin-bottom: 8px;
  color: #736b62;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status strong {
  display: block;
  overflow-wrap: anywhere;
  color: #18211f;
  font-size: 0.98rem;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 36px;
  }

  .brand-mark {
    width: min(42vw, 156px);
  }

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