:root {
  --gold: #e7bd63;
  --gold-soft: #f2d89a;
  --bg: #08050f;
  --bg-card: #120d1f;
  --border: rgba(231, 189, 99, 0.28);
  --text: #f1ece0;
  --text-muted: #b9b2c7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #17102b, var(--bg) 70%);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 64px;
}

.card {
  width: 100%;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.brand {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 8px;
}

h1 {
  font-size: 26px;
  margin: 0 0 12px;
  line-height: 1.3;
}

p.helper {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: -4px;
  margin-bottom: 20px;
}

input[type="text"],
input[type="date"],
textarea {
  width: 100%;
  background: #0d0918;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 20px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button, .button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #c99a3f);
  color: #1a1206;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

button.secondary, .button.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold-soft);
}

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(231, 189, 99, 0.12);
  margin-bottom: 24px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.3s ease;
}

.progress-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.summary-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 0;
}

.summary-item .label {
  color: var(--gold-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.summary-item .value {
  white-space: pre-wrap;
}

.summary-item .value.empty {
  color: var(--text-muted);
  font-style: italic;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: space-between;
}
