:root {
  --bg: #f4efe7;
  --panel: rgba(255, 255, 255, 0.78);
  --ink: #111111;
  --muted: #5e584f;
  --line: rgba(17, 17, 17, 0.08);
  --accent: #b84c2a;
  --accent-dark: #963c1f;
  --shadow: 0 20px 60px rgba(32, 24, 16, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 76, 42, 0.16), transparent 32%),
    linear-gradient(180deg, #f9f3ea 0%, var(--bg) 100%);
}

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

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

.hero {
  padding: 3rem;
}

.hero.compact {
  padding-bottom: 2rem;
}

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

h1,
h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.lede,
.status-text,
.workflow-description,
.status-panel dd,
.secondary-link {
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
}

.lede {
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 1.25rem 0 0;
}

.primary-button {
  margin-top: 1.75rem;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  cursor: pointer;
}

.primary-button:hover {
  background: var(--accent-dark);
}

.workflow-section {
  margin-top: 1.5rem;
}

.section-heading {
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.workflow-card {
  padding: 1.4rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.workflow-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.workflow-description {
  margin: 0.85rem 0 1.1rem;
  color: var(--muted);
  line-height: 1.5;
}

.workflow-card button {
  width: 100%;
}

.completion-shell {
  max-width: 720px;
}

.status-panel {
  margin-top: 1.25rem;
  padding: 1.6rem;
}

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

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

.status-grid dd {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
}

.secondary-link {
  color: var(--accent);
}

@media (max-width: 640px) {
  .hero,
  .status-panel {
    border-radius: 22px;
  }

  .hero {
    padding: 2rem 1.35rem;
  }

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