:root {
  color-scheme: light;
  --bg: #f4f1e8;
  --panel: #fffdf7;
  --panel-border: #d6ccb7;
  --text: #1f1a12;
  --muted: #6a6051;
  --accent: #315f4f;
  --accent-soft: #d8e8df;
  --pill: #efe5d0;
  --shadow: 0 18px 50px rgba(49, 39, 22, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(216, 232, 223, 0.95), transparent 32%),
    linear-gradient(180deg, #f6f2e8 0%, var(--bg) 100%);
  color: var(--text);
}

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

.hero {
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.02;
  max-width: 10ch;
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.lead,
.muted,
li,
dd,
dt {
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.lead {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.card {
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.status-card {
  border-color: #b7cbbf;
}

.status-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--pill);
  color: var(--text);
  font: 600 14px/1 "Segoe UI", Tahoma, sans-serif;
  white-space: nowrap;
}

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

.param-grid div {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
}

dt {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

dd {
  margin: 0;
  word-break: break-word;
  font-size: 15px;
  line-height: 1.45;
}

.steps,
.facts {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .shell {
    padding-top: 40px;
  }

  .status-header {
    flex-direction: column;
  }

  .param-grid {
    grid-template-columns: 1fr;
  }
}
