:root {
  --bg: #f6f3ef;
  --card: #ffffff;
  --text: #1f1a17;
  --muted: #6f6257;
  --accent: #b95c35;
  --border: #e8e2da;
  --radius: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.app-card {
  width: 100%;
  max-width: 640px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.eyebrow {
  font-size: 0.75rem;
  color: var(--muted);
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-bar {
  width: 140px;
  height: 6px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
}

.progress-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.headline {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.question-title {
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.options {
  display: grid;
  gap: 10px;
}

.option-button {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.option-button:hover {
  border-color: var(--accent);
  background: #faf7f4;
}

.fact-box {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: #7a6f66;
}

.fact-label {
  font-weight: 600;
  color: #8a7f75;
}

.fact-box a {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent);
  font-size: 0.8rem;
  text-decoration: none;
}

.result-label {
  font-size: 0.75rem;
  color: #8a7f75;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.result-title {
  font-size: 1.4rem;
}

.result-copy {
  color: var(--muted);
}

.insight-list {
  margin-top: 10px;
  color: var(--muted);
}

.button {
  margin-top: 20px;
  padding: 12px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  border: none;
}
