:root {
  --bg: #0b2b1f;
  --bg-2: #143d2b;
  --text: #f5f0e8;
  --text-dim: rgba(245, 240, 232, 0.72);
  --text-muted: rgba(245, 240, 232, 0.52);
  --gold: #c9a84c;
  --gold-2: #e8d48b;
  --line: rgba(201, 168, 76, 0.2);
  --card: rgba(255, 255, 255, 0.03);
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: radial-gradient(ellipse at top right, #1a5c3a 0%, var(--bg) 45%), var(--bg);
  color: var(--text);
}

.container {
  width: min(700px, 92vw);
  margin: 0 auto;
  padding: 28px 0 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.header {
  text-align: center;
  margin-bottom: 24px;
}

.logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 12px;
}

.kicker {
  margin: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
}

.title {
  margin: 8px 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  color: var(--text-dim);
  font-size: 1.1rem;
}

.progress-wrap {
  margin-bottom: 16px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width 250ms ease;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.screen {
  flex: 1;
  display: block;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 30px);
  backdrop-filter: blur(3px);
}

.headline {
  margin: 0 0 14px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  line-height: 1.2;
}

.intro-copy,
.question-copy,
.result-copy {
  margin: 0 0 18px;
  color: var(--text-dim);
  line-height: 1.65;
}

.intro-lead {
  margin-bottom: 12px;
}

.intro-highlight {
  color: var(--gold);
  font-weight: 700;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: #0b2b1f;
  padding: 14px 22px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--line);
  padding: 11px 16px;
  font-weight: 600;
}

.q-label {
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
  font-weight: 700;
}

.q-title {
  margin: 0 0 10px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.35rem, 3.2vw, 1.8rem);
  line-height: 1.3;
}

.options {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.option {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 12px;
  color: var(--text);
  text-align: left;
  font-size: 0.98rem;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.option:hover,
.option:focus-visible {
  border-color: var(--gold);
  outline: none;
  background: rgba(201, 168, 76, 0.08);
}

.result-badge {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  margin-bottom: 14px;
  font-weight: 700;
}

.result-title {
  margin: 0 0 6px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.7rem, 3.8vw, 2.2rem);
}

.result-subtitle {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-weight: 600;
}

.result-next {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.07);
  padding: 14px;
  margin: 16px 0;
  color: var(--text-dim);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 20px;
}

[hidden] { display: none !important; }
