/* ── Lion's Roar Quiz Styles ─────────────────────────────────────────────── */

.lrq-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Screens */
.lrq-screen { display: none; }
.lrq-screen.active { display: block; }

/* ── Intro / Name screen ─────────────────────────────────────────────────── */
.lrq-intro { text-align: center; padding: 2rem 0 3rem; }

.lrq-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #999;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}

.lrq-intro-title {
  font-size: 28px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 1.25rem;
}

.lrq-intro-sub {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 0.5rem;
}

.lrq-intro-note {
  font-size: 13px;
  color: #aaa;
  font-style: italic;
  margin: 0 0 2.5rem;
  line-height: 1.6;
}

.lrq-name-form {
  max-width: 380px;
  margin: 0 auto;
  text-align: left;
}

.lrq-field-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  margin: 0 0 8px;
}

.lrq-text-input {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  margin-bottom: 12px;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.lrq-text-input:focus { border-color: #1a1a1a; }
.lrq-text-input::placeholder { color: #bbb; }

.lrq-field-error {
  font-size: 13px;
  color: #c0392b;
  margin: -8px 0 8px;
}

.lrq-field-privacy {
  font-size: 12px;
  color: #bbb;
  margin: -8px 0 16px;
  font-style: italic;
}

/* Primary button */
.lrq-btn-primary {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.15s;
}
.lrq-btn-primary:hover { opacity: 0.85; color: #fff; }

/* ── Progress ────────────────────────────────────────────────────────────── */
.lrq-progress { margin-bottom: 2rem; }
.lrq-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #aaa;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.lrq-progress-bar {
  height: 2px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}
.lrq-progress-fill {
  height: 100%;
  background: #1a1a1a;
  border-radius: 2px;
  transition: width 0.5s ease;
}

/* ── Mood indicators ─────────────────────────────────────────────────────── */
.lrq-mood {
  font-size: 13px;
  color: #aaa;
  font-style: italic;
  margin: 0 0 1rem;
  min-height: 20px;
  line-height: 1.6;
}
.lrq-mood--signal {
  color: #666;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
}
.lrq-mood--warm {
  color: #666;
  font-style: normal;
  font-size: 13px;
}
.lrq-mood-break {
  border-left: 2px solid #eee;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.75rem;
}
.lrq-mood-break p {
  margin: 0;
  font-size: 13px;
  color: #aaa;
  line-height: 1.65;
  font-style: italic;
}

/* ── Question ────────────────────────────────────────────────────────────── */
.lrq-question-text {
  font-size: 21px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.45;
  margin: 0 0 2.25rem;
}

/* ── Options ─────────────────────────────────────────────────────────────── */
.lrq-options { display: flex; flex-direction: column; gap: 10px; }

.lrq-opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 10px;
  border: 0.5px solid #ddd;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  line-height: 1.55;
  background: #fff;
  text-align: left;
  transition: all 0.15s;
  width: 100%;
}
.lrq-opt:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
  background: #fafafa;
}
.lrq-opt.selected {
  border-color: #1a1a1a;
  background: #f5f5f5;
  color: #1a1a1a;
}
.lrq-opt-letter {
  font-size: 11px;
  color: #bbb;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.05em;
  min-width: 16px;
}

/* Next button */
.lrq-btn-next {
  margin-top: 1.75rem;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
  background: transparent;
  color: #aaa;
  letter-spacing: 0.02em;
  transition: all 0.15s;
}
.lrq-btn-next:hover {
  background: #f5f5f5;
  color: #1a1a1a;
  border-color: #999;
}

/* ── Email gate ──────────────────────────────────────────────────────────── */
.lrq-email-gate {
  max-width: 420px;
  padding: 2rem 0;
}
.lrq-gate-title {
  font-size: 26px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.lrq-gate-sub {
  font-size: 16px;
  color: #666;
  margin: 0 0 1.75rem;
  line-height: 1.6;
}

/* Submitting state */
.lrq-submitting {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aaa;
  font-size: 14px;
  padding: 14px 0;
}
.lrq-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #eee;
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: lrq-spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes lrq-spin { to { transform: rotate(360deg); } }

/* ── Result screen ───────────────────────────────────────────────────────── */
.lrq-result-accent {
  height: 3px;
  width: 100%;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.lrq-result-title {
  font-size: 30px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 0.625rem;
}
.lrq-result-title2 {
  font-weight: 400;
  color: #777;
  font-size: 26px;
}

.lrq-result-tag {
  font-size: 13px;
  color: #aaa;
  margin: 0 0 2rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

.lrq-result-rule {
  height: 1px;
  width: 48px;
  background: #ddd;
  margin-bottom: 2rem;
}

.lrq-result-body {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin: 0 0 1.125rem;
}

.lrq-result-challenge {
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.65;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid #1a1a1a;
  margin: 2rem 0;
  background: #fafafa;
  border-radius: 0;
}

.lrq-result-email-note {
  font-size: 13px;
  color: #aaa;
  margin: 1.25rem 0 0;
  font-style: italic;
}

.lrq-btn-reset {
  display: block;
  background: transparent;
  border: none;
  font-size: 12px;
  color: #ccc;
  margin-top: 1.5rem;
  cursor: pointer;
  letter-spacing: 0.03em;
  padding: 0;
}
.lrq-btn-reset:hover { color: #888; }

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .lrq-wrap { padding: 1.5rem 1rem 3rem; }
  .lrq-intro-title { font-size: 22px; }
  .lrq-question-text { font-size: 18px; }
  .lrq-result-title { font-size: 24px; }
  .lrq-result-title2 { font-size: 20px; }
  .lrq-btn-primary { width: 100%; text-align: center; }
}
