:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #181818;
  --gold: #C8A96E;
  --gold-light: #DFC089;
  --white: #F2F2ED;
  --muted: #888880;
  --border: #222220;
  --radius: 12px;
  --sp1: 8px;
  --sp2: 16px;
  --sp3: 24px;
  --sp4: 32px;
  --sp5: 48px;
  --sp6: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.form-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px var(--sp3);
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.step-label {
  font-size: 13px;
  color: var(--muted);
}
.step-label strong { color: var(--white); }

.progress-bar {
  height: 2px;
  background: var(--border);
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.35s ease;
}

/* ── Screens ── */
.screen {
  display: none;
  min-height: 100vh;
  padding: var(--sp5) var(--sp3) var(--sp6);
  align-items: flex-start;
  justify-content: center;
}
.screen.active { display: flex; }
.screen.question-screen { min-height: calc(100vh - 53px); }

.stage {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Typography ── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp3);
}

.pre-headline {
  font-size: clamp(15px, 3.5vw, 20px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin-bottom: var(--sp2);
}

h1 {
  font-size: clamp(28px, 7.5vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp3);
}

h2 {
  font-size: clamp(22px, 5.5vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp2);
}

.question-title {
  font-size: clamp(18px, 4.5vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: var(--sp4);
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(242,242,237,0.95);
  margin-bottom: var(--sp4);
}

.lead a { color: var(--gold); text-decoration: none; }
.lead a:hover { text-decoration: underline; }

.microcopy {
  font-size: 13px;
  color: var(--muted);
  margin-top: var(--sp2);
  text-align: center;
}

/* ── Buttons ── */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp1);
  width: 100%;
  padding: 17px var(--sp4);
  background: var(--gold);
  color: #080808;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-primary:active { transform: scale(0.98); }

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: var(--sp1);
  margin-top: var(--sp4);
  padding: 15px 28px;
  background: var(--gold);
  color: #080808;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.18s, transform 0.12s, opacity 0.18s;
}
.btn-next:hover:not(:disabled) { background: var(--gold-light); }
.btn-next:active:not(:disabled) { transform: scale(0.98); }
.btn-next:disabled { opacity: 0.35; cursor: not-allowed; }

/* ── Choice cards ── */
.choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.choice {
  display: flex;
  align-items: center;
  gap: var(--sp2);
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  user-select: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.choice:hover {
  border-color: rgba(200,169,110,0.45);
  background: rgba(200,169,110,0.06);
}

.choice.selected {
  border-color: var(--gold);
  background: rgba(200,169,110,0.12);
  color: var(--gold-light);
}

.indicator {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.15s;
  background: transparent;
}

.choice.selected .indicator {
  background: var(--gold);
  border-color: var(--gold);
  color: #080808;
}

.choice.multi .indicator {
  border-radius: 5px;
}

/* ── Inputs ── */
.input-field {
  width: 100%;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.input-field::placeholder { color: var(--muted); }
.input-field:focus { border-color: var(--gold); }

.input-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
}

.conditional-wrap {
  display: none;
  margin-top: var(--sp3);
}
.conditional-wrap.visible { display: block; }

/* ── Success ── */
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(200,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: var(--sp3);
}

/* ── Arrow ── */
.arrow { display: inline-block; margin-left: 2px; }
