:root {
  --bg: #f6efe5;
  --surface: rgba(255, 250, 245, 0.82);
  --surface-strong: #fffaf5;
  --ink: #1d2330;
  --muted: #5f697a;
  --accent: #b5522d;
  --accent-dark: #8e3f20;
  --line: rgba(29, 35, 48, 0.1);
  --shadow: 0 18px 45px rgba(49, 35, 21, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(181, 82, 45, 0.18), transparent 30%),
    linear-gradient(135deg, #f8f0e4 0%, #efe4d3 42%, #e7dccd 100%);
  min-height: 100vh;
}

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

.hero,
.panel,
.status-card {
  backdrop-filter: blur(14px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero {
  border-radius: 32px;
  padding: 44px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 82, 45, 0.35), transparent 65%);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

h1,
h2 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  max-width: 10ch;
}

h2 {
  font-size: 1.65rem;
  margin-bottom: 16px;
}

.lead {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fffaf4;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.status-grid,
.content-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.status-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.status-card,
.panel {
  border-radius: var(--radius);
  padding: 24px;
}

.status-card {
  animation: rise 500ms ease both;
}

.status-card:nth-child(2) {
  animation-delay: 80ms;
}

.status-card:nth-child(3) {
  animation-delay: 160ms;
}

.status-card:nth-child(4) {
  animation-delay: 240ms;
}

.status-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.status-value {
  margin-top: 10px;
  font-size: 1.45rem;
  font-weight: 700;
}

.panel-accent {
  background: linear-gradient(160deg, rgba(181, 82, 45, 0.95), rgba(127, 50, 19, 0.93));
  color: #fff6ef;
}

.panel-accent ul {
  color: rgba(255, 246, 239, 0.9);
}

ul,
ol {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

code {
  font-family: "Courier New", monospace;
  font-size: 0.95em;
  background: rgba(29, 35, 48, 0.08);
  padding: 2px 6px;
  border-radius: 7px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .status-grid,
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 20px;
  }

  .hero,
  .status-card,
  .panel {
    padding: 20px;
  }

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