:root {
  color-scheme: light;
  --ink: #162019;
  --muted: #4f6257;
  --line: #d5ded7;
  --surface: #f5f7f3;
  --accent: #0f7a4a;
  --accent-strong: #095b39;
  --gold: #d7a520;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(15, 122, 74, 0.11), transparent 38%),
    linear-gradient(315deg, rgba(215, 165, 32, 0.18), transparent 42%),
    var(--surface);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(1120px, 100%);
  min-height: min(720px, calc(100vh - 64px));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 48px;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 15%, rgba(215, 165, 32, 0.2), transparent 24%),
    rgba(255, 255, 255, 0.7);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin: 28px 0 0;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.38;
  color: var(--muted);
}

.status {
  width: fit-content;
  margin: 34px 0 0;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
}

.signal-panel {
  display: grid;
  gap: 12px;
}

.signal-panel div {
  min-height: 96px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: #ffffff;
}

.signal-panel span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.signal-panel strong {
  font-size: 1.05rem;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px;
    place-items: stretch;
  }

  .hero {
    min-height: calc(100vh - 36px);
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
  }
}
