:root {
  color-scheme: light;
  --bg: #f4efe8;
  --panel: rgba(255, 250, 244, 0.88);
  --panel-strong: #fffaf4;
  --line: rgba(40, 26, 14, 0.12);
  --text: #20150c;
  --muted: #5f4f42;
  --accent: #0f766e;
  --accent-strong: #0b5d56;
  --shadow: 0 24px 70px rgba(53, 33, 18, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 32%),
    radial-gradient(circle at bottom right, rgba(196, 126, 72, 0.16), transparent 28%),
    linear-gradient(180deg, #f8f3ed 0%, var(--bg) 100%);
}

.shell {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.hero,
.card,
.status-panel {
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  border-radius: 32px;
  padding: 2.5rem;
}

.eyebrow,
.label {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--muted);
}

h1,
h2,
.value {
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  line-height: 0.95;
  max-width: 10ch;
}

.lede {
  margin: 1.5rem 0 0;
  max-width: 52rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  border-radius: 24px;
  padding: 1.5rem;
}

.card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.status-panel {
  margin-top: 1rem;
  border-radius: 24px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value {
  font-size: 1.05rem;
  word-break: break-word;
}

.ok {
  color: var(--accent-strong);
}

@media (prefers-reduced-motion: no-preference) {
  .hero,
  .card,
  .status-panel {
    animation: rise 500ms ease-out both;
  }

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

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

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

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

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

@media (max-width: 720px) {
  .shell {
    width: min(100% - 1rem, 42rem);
    padding: 1rem 0 2rem;
  }

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

  .hero {
    padding: 1.5rem;
  }

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