/* FullTimeDigi — Path Advisor (standalone). Dark-premium theme: blue + gold. */
:root {
  --bg: #0b1020;
  --surface: #141a30;
  --surface-2: #1d2540;
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.20);
  --text: #f2f4fa;
  --muted: #97a0bd;
  --primary: #2f7ee6;
  --primary-dark: #1f5fbf;
  --primary-tint: rgba(47,126,230,0.14);
  --accent: #f0b429;
  --accent-tint: rgba(240,180,41,0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --maxw: 680px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: radial-gradient(1200px 600px at 50% -10%, #131a33 0%, var(--bg) 60%);
  color: var(--text);
  font-family: 'Cairo', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
#app { max-width: var(--maxw); margin: 0 auto; padding: 40px 20px 80px; }

.muted { color: var(--muted); }
.center { text-align: center; }

/* Buttons */
.btn {
  font-family: inherit; font-size: 1rem; font-weight: 700; cursor: pointer;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  padding: 14px 28px; transition: all .2s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 18px var(--primary-tint); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--muted); border-color: var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--border-strong); }
.btn-block { display: block; width: 100%; text-align: center; }
a.btn { text-decoration: none; display: inline-block; }

/* Hero */
.hero { text-align: center; padding: 32px 0; animation: fade .4s ease; }
.hero-eyebrow { color: var(--primary); font-weight: 700; font-size: .9rem; letter-spacing: .02em; }
.hero h1 { font-size: 2.2rem; font-weight: 800; margin: 14px 0 12px; line-height: 1.25; }
.hero h1 .accent { color: var(--accent); }
.hero-sub { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.chip { background: var(--surface); border: 1px solid var(--border); color: var(--muted);
  border-radius: 999px; padding: 7px 16px; font-size: .85rem; }

/* Progress */
.progress { margin-bottom: 24px; }
.progress-track { height: 6px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary); border-radius: 999px; transition: width .3s ease; }
.progress-label { color: var(--muted); font-size: .8rem; margin-top: 8px; }

/* Question */
.q { animation: fade .35s ease; }
.q-step { color: var(--primary); font-weight: 700; font-size: .85rem; }
.q h2 { font-size: 1.5rem; font-weight: 800; margin: 6px 0 4px; }
.q-hint { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.options { display: grid; gap: 12px; margin-bottom: 22px; }
.option {
  display: flex; align-items: center; gap: 14px; text-align: start;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px; cursor: pointer;
  transition: all .18s ease; color: var(--text); font: inherit; width: 100%;
}
.option:hover { border-color: var(--border-strong); background: var(--surface-2); }
.option.selected { border-color: var(--primary); background: var(--primary-tint); }
.option-icon { font-size: 1.6rem; line-height: 1; }
.option-label { font-weight: 600; flex: 1; }
.option-check { color: var(--primary); font-weight: 800; opacity: 0; }
.option.selected .option-check { opacity: 1; }
.nav { display: flex; justify-content: space-between; gap: 12px; }

/* Lead form */
.lead { animation: fade .35s ease; }
.lead h2 { font-size: 1.4rem; font-weight: 800; margin: 0 0 6px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 6px; }
.field input {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1.5px solid var(--border); color: var(--text);
  font: inherit;
}
.field input:focus { outline: none; border-color: var(--primary); }
.lead-note { color: var(--muted); font-size: .8rem; margin: 10px 0 18px; }

/* Result */
.result { animation: fade .4s ease; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px; margin-bottom: 18px; }
.result-hero { text-align: center; }
.result-logo { height: 40px; margin: 0 auto 14px; display: block; }
.result-eyebrow { color: var(--muted); font-size: .85rem; }
.result-name { font-size: 1.9rem; font-weight: 800; margin: 6px 0 10px; }
.result-blend { color: var(--muted); font-size: .9rem; margin-bottom: 12px; }
.result-desc { color: var(--text); }
.traits { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.trait { font-size: .8rem; padding: 6px 12px; border-radius: 999px;
  background: var(--accent-tint); color: var(--accent); border: 1px solid rgba(240,180,41,.25); }
.rec { background: var(--primary-tint); border: 1px solid rgba(47,126,230,.3); border-radius: var(--radius);
  padding: 20px; margin-bottom: 18px; }
.rec-label { color: var(--primary); font-weight: 700; font-size: .85rem; }
.rec-name { font-size: 1.25rem; font-weight: 800; margin: 4px 0 4px; }
.rec-price { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin: 0 0 8px; }
.rec-because { color: var(--text); opacity: .92; }
.section h3 { font-size: 1rem; font-weight: 800; margin: 0 0 10px; }
.section ul { margin: 0 0 16px; padding-inline-start: 20px; }
.section li { margin-bottom: 6px; }
.tip { background: var(--accent-tint); border-inline-start: 3px solid var(--accent);
  border-radius: 8px; padding: 12px 14px; color: var(--text); font-size: .92rem; }
.result-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }

@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 520px) {
  .hero h1 { font-size: 1.7rem; }
  #app { padding: 24px 16px 60px; }
}
