:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #5f6c63;
  --line: #d8ded9;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --accent: #315f49;
  --accent-dark: #213f32;
  --gold: #b88a3b;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(49, 95, 73, 0.12), rgba(184, 138, 59, 0.08)),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(23, 32, 27, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 27, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.hero {
  width: min(100%, 760px);
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(23, 32, 27, 0.12);
}

.brand-mark {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(49, 95, 73, 0.45);
  color: var(--accent-dark);
  background: #eef2ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.status-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.status-panel > div {
  min-width: 0;
  padding: 20px;
  background: var(--panel);
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

@media (max-width: 620px) {
  .page-shell {
    align-items: stretch;
    padding: 16px;
  }

  .hero {
    display: flex;
    min-height: calc(100vh - 32px);
    flex-direction: column;
    justify-content: center;
    padding: 28px;
  }

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