:root {
  --navy: #0a1628;
  --gold: #d4a853;
  --blue: #3b82f6;
  --navy-light: #111d33;
  --navy-mid: #162240;
}
* { box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--navy); color: #e2e8f0; margin: 0; min-height: 100vh; }
.mono { font-family: 'JetBrains Mono', monospace; }
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.glass-hover:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,168,83,0.3);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8912e);
  color: var(--navy);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,83,0.3); }
.btn-outline {
  border: 1px solid rgba(212,168,83,0.4);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { background: rgba(212,168,83,0.1); border-color: var(--gold); }
.nav-link { color: #94a3b8; text-decoration: none; padding: 8px 16px; border-radius: 8px; transition: all 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(212,168,83,0.08); }
.score-bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 4px; transition: width 1s ease-out; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--gold); }
select.form-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a853' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
select.form-input option { background: #111d33; color: #e2e8f0; padding: 8px; }
.custom-dropdown { position: relative; }
.custom-dropdown-trigger { user-select: none; }
.custom-dropdown-menu { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #111d33; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; z-index: 50; max-height: 240px; overflow-y: auto; }
.custom-dropdown-item { padding: 10px 16px; color: #e2e8f0; font-size: 0.95rem; cursor: pointer; transition: background 0.15s, color 0.15s; }
.custom-dropdown-item:hover { background: rgba(212,168,83,0.15); color: #d4a853; }
.custom-dropdown-item.active { background: rgba(212,168,83,0.1); color: #d4a853; }
.custom-dropdown-arrow.open { transform: rotate(180deg); }
.radio-card {
  display: block;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 8px;
}
.radio-card:hover { border-color: rgba(212,168,83,0.3); background: rgba(212,168,83,0.05); }
.radio-card input:checked + span { color: var(--gold); }
.radio-card:has(input:checked) { border-color: var(--gold); background: rgba(212,168,83,0.1); }
.step { display: none; }
.step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.5s ease-out; }
@keyframes countUp { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }
.count-up { animation: countUp 0.8s ease-out; }
