:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17211c;
  background: #eef3f0;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(47, 111, 99, 0.14), transparent 42%),
    linear-gradient(315deg, rgba(122, 92, 66, 0.12), transparent 36%),
    #eef3f0;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: stretch;
  min-height: 520px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(4.25rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin-bottom: 0;
  color: #42524a;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.status-panel {
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(23, 33, 28, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(23, 33, 28, 0.12);
}

.status-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
  color: #1e5d51;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2f9f62;
  box-shadow: 0 0 0 6px rgba(47, 159, 98, 0.16);
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dt {
  margin-bottom: 5px;
  color: #5d6a63;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: #17211c;
  font-size: 1.02rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.workflow {
  padding: 48px 0 16px;
}

.workflow h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(23, 33, 28, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

article span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #17211c;
  color: #ffffff;
  font-weight: 800;
}

article h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

article p {
  margin-bottom: 0;
  color: #4d5c55;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 1120px);
    padding: 32px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }

  .hero-copy {
    padding: 32px 0 8px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .status-panel {
    padding: 22px;
  }

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

  article {
    min-height: auto;
  }
}
