/* ==========================================================================
   AgedToAlpha — Quiz Page Styles
   Landing, questions, email gate
   ========================================================================== */

/* ========== SCREENS ========== */
.screen {
  display: none;
  min-height: 100vh;
}

.screen.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* ========== LANDING ========== */
.landing-content { text-align: center; }

.landing-sub {
  font-size: 18px;
  color: var(--silver);
  margin-bottom: 40px;
  line-height: 1.5;
}

.quick-info {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  color: var(--silver);
  font-size: 14px;
  flex-wrap: wrap;
}

.quick-info-item { display: flex; align-items: center; gap: 6px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 600px;
  margin: 50px auto 0;
}

.stat-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.stat-icon { color: var(--gold); font-size: 18px; margin-bottom: 8px; }
.stat-num { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.stat-label { color: var(--silver); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

/* ========== QUESTIONS ========== */
.question-counter {
  text-align: center;
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.question-icon { text-align: center; font-size: 36px; margin-bottom: 16px; }

.be-honest {
  text-align: center;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.question-text {
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.3;
}

.answers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.answer-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.answer-btn:hover { border-color: var(--gold); background: rgba(245,166,35,0.05); }
.answer-btn.selected { border-color: var(--gold); background: rgba(245,166,35,0.08); }

.age-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 16px;
}

.age-input:focus { outline: none; border-color: var(--gold-bright); }
.age-input::placeholder { color: rgba(255,255,255,0.3); }

.continue-btn {
  background: rgba(245,166,35,0.5);
  color: var(--black);
  padding: 16px 24px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  font-family: inherit;
}

.continue-btn.active { background: var(--gold); }
.continue-btn.active:hover { background: var(--gold-bright); }

/* ========== EMAIL GATE / SCORE PREVIEW ========== */
.complete-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
}

.complete-badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.score-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
}

.score-label {
  text-align: center;
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.score-bar {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #FF4444 0%, #F5A623 50%, #4ADE80 100%);
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
}

.score-marker {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: -4px;
  transition: left 0.5s ease;
  box-shadow: 0 0 15px rgba(245,166,35,0.6);
}

.score-bar-labels {
  display: flex;
  justify-content: space-between;
  color: var(--silver);
  font-size: 11px;
  margin-bottom: 24px;
}

.score-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.score-metric:last-child { border-bottom: none; }
.score-metric-label { color: var(--white); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.score-metric-icon { color: var(--gold); font-size: 14px; }

.score-metric-value {
  color: var(--silver);
  font-size: 13px;
  background: rgba(255,255,255,0.05);
  padding: 4px 12px;
  border-radius: 6px;
  filter: blur(4px);
  user-select: none;
}

.unlock-headline {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.unlock-headline .accent { color: var(--gold); }

.unlock-sub {
  text-align: center;
  color: var(--silver);
  font-size: 14px;
  margin-bottom: 24px;
}

.email-form { max-width: 480px; margin: 0 auto; }

.email-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 12px;
}

.email-input:focus { outline: none; border-color: var(--gold-bright); }
.email-input::placeholder { color: rgba(255,255,255,0.3); }

.email-disclaimer {
  text-align: center;
  color: var(--silver);
  font-size: 12px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.social-proof {
  text-align: center;
  color: var(--silver);
  font-size: 13px;
  margin-top: 16px;
}

.social-proof strong { color: var(--gold); font-weight: 700; }

@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr; }
}
