:root {
  color-scheme: light;
  --ink: #18201f;
  --muted: #59635f;
  --steel: #596e7f;
  --copper: #b65f2a;
  --sage: #7d8d76;
  --paper: #f7f4ee;
  --line: rgba(24, 32, 31, 0.16);
}

* {
  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(90deg, rgba(24, 32, 31, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(24, 32, 31, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.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, 1fr) 360px;
  gap: 32px;
  align-items: end;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 244, 238, 0.86)),
    radial-gradient(circle at 80% 18%, rgba(182, 95, 42, 0.18), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(89, 110, 127, 0.22), transparent 32%);
  box-shadow: 0 24px 80px rgba(24, 32, 31, 0.12);
}

.content {
  max-width: 720px;
}

.eyebrow,
.panel-label {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.intro {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 700;
}

.panel {
  padding: 24px;
  border-left: 4px solid var(--sage);
  background: rgba(255, 255, 255, 0.72);
}

.panel h2 {
  margin-bottom: 28px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.panel a {
  color: var(--copper);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .page-shell {
    padding: 16px;
  }

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