:root {
  --color-bg: #0a0b12;
  --color-text: #f2f1ea;
  --color-muted: rgba(242, 241, 234, 0.62);
  --color-surface: rgba(255, 255, 255, 0.04);
  --color-surface-solid: #13141d;
  --color-border: rgba(255, 255, 255, 0.1);
  --gold-1: #cdb684;
  --gold-2: #a9895a;
  --gold-3: #7f6640;
  --gold-text: #1c150a;
  --radius: 14px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  --max-width: 720px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  min-height: 100vh;
}

.topbar {
  padding: 24px 32px;
  display: flex;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: var(--gold-1);
}

.logo-icon {
  height: 28px;
  width: 28px;
  object-fit: contain;
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  color: var(--color-text);
}

.lead {
  font-size: 16.5px;
  color: var(--color-text);
  margin: 0 0 16px;
}

.cta {
  background: linear-gradient(160deg, var(--gold-1) 0%, var(--gold-2) 100%);
  color: var(--gold-text);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 16px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  transition: filter 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.cta:hover {
  filter: brightness(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}
.cta:active { transform: scale(0.98); }

.social-proof {
  margin-top: 64px;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-carousel {
  margin-top: 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.proof-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: proof-scroll 24s linear infinite;
}

.proof-carousel:hover .proof-track {
  animation-play-state: paused;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  padding: 14px 22px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
}

.proof-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 4px;
}

.proof-handle {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.proof-followers {
  font-size: 11px;
  color: var(--gold-1);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@keyframes proof-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Quiz */
.quiz {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}

.hidden { display: none; }

.quiz-card {
  background: var(--color-surface-solid);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 520px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
}

.quiz-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: none;
  font-size: 24px;
  color: var(--color-muted);
  cursor: pointer;
  line-height: 1;
}

.quiz-close:hover { color: var(--color-text); }

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

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

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

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-text);
}

.step-subtitle {
  color: var(--color-muted);
  font-size: 14px;
  margin: 0 0 24px;
}

.step-note {
  font-size: 12.5px;
  color: var(--color-text);
  background: rgba(169, 137, 90, 0.1);
  border-left: 3px solid var(--gold-2);
  padding: 10px 12px;
  border-radius: 6px;
  margin: -12px 0 20px;
}

.option-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  margin-bottom: 10px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.option-btn:hover { border-color: var(--gold-2); }

.option-btn.selected {
  border-color: var(--gold-2);
  background: rgba(169, 137, 90, 0.14);
  font-weight: 600;
}

.text-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 8px;
}

.text-input::placeholder {
  color: rgba(242, 241, 234, 0.4);
}

.text-input:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(169, 137, 90, 0.15);
}

.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.btn-back {
  border: 1.5px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 16px;
}

.btn-back:hover { border-color: var(--gold-2); }

.btn-continue {
  background: linear-gradient(160deg, var(--gold-1) 0%, var(--gold-2) 100%);
  color: var(--gold-text);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 14px 28px;
  font-family: inherit;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  flex: 1;
  margin-left: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.btn-continue:hover:not(:disabled) {
  filter: brightness(1.03);
}

.btn-continue:disabled {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(242, 241, 234, 0.35);
  border-color: var(--color-border);
  box-shadow: none;
  cursor: not-allowed;
}

.footer {
  text-align: center;
  color: var(--color-muted);
  font-size: 13px;
  padding: 32px 16px 48px;
}
