:root {
  color-scheme: light;
  --ink: #1d2424;
  --muted: #5f6965;
  --surface: #f4f7f4;
  --surface-strong: #ffffff;
  --line: #d8dfd5;
  --brand: #1b5e57;
  --brand-strong: #0e3d39;
  --accent: #b8483a;
  --ok: #25755a;
  --warn: #a15e17;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(27, 94, 87, 0.08), transparent 42%),
    linear-gradient(225deg, rgba(184, 72, 58, 0.1), transparent 38%),
    var(--surface);
}

img {
  display: block;
  max-width: 100%;
}

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

.hero {
  min-height: min(680px, calc(100vh - 88px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 40px;
  align-items: center;
  padding-bottom: 24px;
}

.hero__copy {
  max-width: 680px;
}

.hero__avatar {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  border: 1px solid rgba(27, 94, 87, 0.22);
  background: var(--surface-strong);
  box-shadow: 0 18px 45px rgba(14, 61, 57, 0.12);
}

.eyebrow {
  margin: 28px 0 12px;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 780px;
  font-size: 6.2rem;
  line-height: 0.94;
  font-weight: 900;
}

.lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.55;
}

.status {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 700;
}

.status__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--warn);
}

.status[data-state="ok"] .status__dot {
  background: var(--ok);
}

.hero__mark {
  justify-self: center;
  width: min(360px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(27, 94, 87, 0.16);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 28px 70px rgba(14, 61, 57, 0.13);
}

.hero__mark img {
  width: 78%;
  height: auto;
}

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

.panel {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.panel h2 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 840px) {
  .shell {
    width: min(100% - 24px, 680px);
    padding-top: 28px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0 36px;
  }

  h1 {
    font-size: 3.25rem;
    line-height: 1;
  }

  .lede {
    font-size: 1.08rem;
  }

  .hero__mark {
    justify-self: start;
    width: min(280px, 82vw);
  }

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