:root {
  --bg: #f7f9fd;
  --fg: #0a1733;
  --navy: #06132d;
  --navy-2: #071a38;
  --navy-3: #0e326d;
  --primary: #0759f5;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --cyan: #22d3ee;
  --cyan-600: #0891b2;
  --muted: #5e6b85;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --border: #dfe6f1;
  --input: #d8e1ef;
  --card: #fff;
  --radius: 0.875rem;
  --shadow: 0 10px 40px rgba(21, 45, 90, .06);
  --max: 1240px;
  --max-s: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a, input, select, textarea { transition: all 180ms ease; }
::selection { background: #bceef0; color: #071a38; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.hidden { display: none !important; }

.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-xl { width: 2.5rem; height: 2.5rem; }
.icon-2xl { width: 2.75rem; height: 2.75rem; }

.wrap { width: min(var(--max-s), calc(100% - 2.5rem)); margin-inline: auto; }
.wrap-lg { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }

.section-title {
  margin: 0;
  max-width: 46rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.eye {
  margin: 0 0 .75rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--blue-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 2.25rem;
  padding: .5rem 1rem;
  border: 0;
  border-radius: .75rem;
  background: var(--primary);
  color: #fafafa;
  font-size: .875rem;
  font-weight: 500;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.05); }
.btn-primary { background: var(--blue-600); color: #fff; }
.btn-primary:hover { background: #1d4ed8; }
.btn-lg { height: 3.25rem; padding: 0 1.75rem; font-size: 1rem; border-radius: .75rem; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--slate-200);
  color: var(--fg);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.btn-outline:hover { background: #e7f0ff; }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-ghost { background: transparent; color: var(--fg); }
.btn-ghost:hover { background: #e7f0ff; }
.btn-white { background: #fff; color: var(--blue-700); }
.btn-white:hover { background: #eff6ff; }
.btn-block { width: 100%; }
.btn-wide { padding-inline: 1.5rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(6, 19, 45, .95);
  backdrop-filter: blur(20px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}
.logo { display: flex; align-items: center; gap: .75rem; text-align: left; color: #fff; }
.logo-mark { position: relative; display: block; height: 2.25rem; width: 3rem; }
.logo-bar { position: absolute; border-radius: 2px; }
.logo-bar-h { bottom: .25rem; left: 0; height: 3px; width: 3rem; background: linear-gradient(to right, #22d3ee, #2563eb); }
.logo-bar-l { bottom: .25rem; left: .75rem; height: 2rem; width: 3px; transform: skewX(-12deg); background: #22d3ee; }
.logo-bar-r { bottom: .25rem; left: 2rem; height: 2.25rem; width: 3px; transform: skewX(12deg); background: #2563eb; }
.logo strong { display: block; font-size: 1.25rem; line-height: 1; font-weight: 700; }
.logo small { display: block; margin-top: .25rem; font-size: 10px; font-weight: 600; letter-spacing: .22em; color: #22d3ee; }
.main-nav { display: none; align-items: center; gap: 1.75rem; }
.main-nav a { font-size: .875rem; font-weight: 500; color: var(--slate-300); }
.main-nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.lang-switch {
  display: flex;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: .2rem;
  font-size: .75rem;
  font-weight: 700;
}
.lang-switch a { border-radius: 999px; padding: .25rem .65rem; color: var(--slate-300); }
.lang-switch a.is-active { background: #fff; color: var(--navy-2); }
.header-login { display: none; padding: 0 .75rem; font-size: .875rem; color: var(--slate-300); }
.header-join { display: none; }
.menu-toggle {
  display: inline-flex;
  background: none;
  border: 0;
  color: #fff;
  padding: .35rem;
}
.mobile-nav {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .75rem 1.25rem 1rem;
}
.mobile-nav a { display: block; padding: .5rem 0; color: #e2e8f0; }
.mobile-nav .btn { margin-top: .5rem; }

@media (min-width: 640px) {
  .header-login { display: block; }
  .header-join { display: inline-flex; }
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Home hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.hero-glow {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image:
    radial-gradient(circle at 78% 28%, #087bff 0, transparent 28%),
    radial-gradient(circle at 68% 82%, #00c8c8 0, transparent 20%);
}
.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 3rem;
  min-height: 620px;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 5rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(34, 211, 238, .25);
  background: rgba(34, 211, 238, .1);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #67e8f9;
}
.hero h1 {
  margin: 0;
  max-width: 48rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.hero-text {
  margin: 1.75rem 0 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 2rem;
  color: var(--slate-300);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.25rem; }
.hero-proof { margin: 1.5rem 0 0; font-size: .875rem; color: var(--slate-400); }
.hero-cards { display: none; position: relative; height: 430px; }
.glass-card, .white-card {
  position: absolute;
  width: 18rem;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,.25);
}
.glass-card {
  left: 3rem;
  top: 1rem;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(20px);
}
.white-card {
  right: .75rem;
  bottom: 1.25rem;
  background: #fff;
  color: #0a1733;
}
.card-top { display: flex; justify-content: space-between; }
.icon-box {
  display: inline-flex;
  padding: .75rem;
  border-radius: .75rem;
  background: rgba(37, 99, 235, .2);
  color: #93c5fd;
}
.icon-box.light { background: #ecfeff; color: #0891b2; border-radius: 1rem; }
.verified-pill {
  height: fit-content;
  border-radius: 999px;
  background: rgba(52, 211, 153, .15);
  color: #6ee7b7;
  padding: .25rem .75rem;
  font-size: .75rem;
}
.muted-xs { margin: 1.75rem 0 0; font-size: .75rem; color: var(--slate-400); }
.glass-card h3, .white-card h3 { margin: .5rem 0 0; font-size: 1.5rem; }
.chip-row { display: flex; gap: .5rem; margin-top: 1.25rem; }
.chip {
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  padding: .25rem .75rem;
  font-size: .75rem;
}
.chip.solid { background: #fff; color: var(--fg); }
.avail { margin: 2rem 0 0; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .875rem; color: #67e8f9; }
.match-row { display: flex; gap: 1rem; }
.match-row p { margin: 0; }
.match-label { font-size: .75rem; font-weight: 700; color: var(--blue-600); }
.match-meta { margin-top: .25rem; font-size: .875rem; color: var(--slate-500); }
.white-card .btn { width: 100%; margin-top: 1.5rem; }

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; padding-inline: 0; width: min(var(--max), calc(100% - 4rem)); }
  .hero-cards { display: block; }
}

.section { padding: 6rem 0; }
.section-white { background: #fff; }
.section-soft { background: #f5f8fd; }
.section-navy { background: var(--navy-2); color: #fff; }
.section-blue { background: #eef5ff; }
.grid-3 { display: grid; gap: 1.25rem; margin-top: 3rem; }
.how-card, .path-card {
  border: 1px solid var(--slate-200);
  border-radius: 1.5rem;
  padding: 1.75rem;
  background: #fff;
  box-shadow: var(--shadow);
}
.how-num { font-size: 3rem; font-weight: 600; color: #f1f5f9; }
.how-card h3, .path-card h3 { margin: 1.25rem 0 0; font-size: 1.25rem; }
.how-card p, .path-card p { margin: .75rem 0 0; line-height: 1.75rem; color: var(--slate-600); }
.path-card { padding: 2rem; }
.path-icon {
  display: inline-flex;
  padding: .75rem;
  border-radius: 1rem;
  background: #eff6ff;
  color: var(--blue-600);
}
.path-card p { min-height: 6rem; }
.link-join {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--blue-600);
  background: none;
  border: 0;
  padding: 0;
}

.projects-grid { display: grid; gap: 3rem; }
.project-list { display: grid; gap: .75rem; }
.project-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1rem;
  font-weight: 500;
}
.project-item .icon { color: var(--cyan-600); }
.why-grid { display: grid; gap: 2.5rem; }
.benefits { display: grid; gap: 1rem; margin-top: 2rem; }
.benefit { display: flex; gap: .75rem; color: #e2e8f0; }
.benefit .icon { color: #22d3ee; flex-shrink: 0; }
.privacy-box {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  border: 1px solid rgba(34, 211, 238, .2);
  background: rgba(34, 211, 238, .1);
  border-radius: 1rem;
  padding: 1.25rem;
  color: #e2e8f0;
}
.privacy-box .icon { color: #67e8f9; flex-shrink: 0; }
.verify-card {
  border-radius: 1.5rem;
  padding: 2.25rem;
  background: linear-gradient(to bottom right, var(--blue-600), var(--cyan-600));
}
.verify-card h3 { margin: 1.75rem 0 0; font-size: 1.875rem; }
.verify-card p { margin: 1rem 0 0; font-size: 1.125rem; line-height: 2rem; color: #eff6ff; }

.recruiters {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: min(1040px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5rem 0;
}
.recruiters h2 { margin: 0; font-size: 1.875rem; }
.recruiters p { margin: 1rem 0 0; font-size: 1.125rem; line-height: 2rem; color: var(--slate-600); }
.recruiters .btn { flex-shrink: 0; }

.faq-wrap { width: min(900px, calc(100% - 2.5rem)); margin: 0 auto; }
.faq-wrap .section-title { text-align: center; max-width: none; }
.faq-list { margin-top: 2.5rem; border: 1px solid var(--slate-200); border-radius: 1.5rem; padding: 0 1.5rem; }
.faq-list details { padding: 1.25rem 0; border-bottom: 1px solid var(--slate-200); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary .icon { transform: rotate(180deg); }
.faq-list p { margin: .75rem 0 0; line-height: 1.75rem; color: var(--slate-600); }

.cta-banner { padding: 0 1.25rem 6rem; background: #fff; }
.cta-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  border-radius: 2rem;
  padding: 4rem 1.75rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #1d4ed8, var(--cyan-600));
}
.cta-inner h2 { margin: 0; font-size: 2.25rem; }
.cta-inner p { margin: 1rem auto 0; max-width: 42rem; font-size: 1.125rem; color: #dbeafe; }
.cta-inner .btn { margin-top: 2rem; }

.site-footer { background: var(--navy); color: var(--slate-400); padding: 3rem 0; }
.footer-inner { display: flex; flex-direction: column; gap: 2rem; }
.footer-inner p { margin: 0; font-size: .875rem; }

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .project-list { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .recruiters { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .projects-grid { grid-template-columns: .8fr 1.2fr; align-items: start; }
  .why-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* Forms */
.label { display: block; margin-bottom: .5rem; font-size: .875rem; font-weight: 600; color: var(--slate-700); }
.input, .textarea, .select {
  width: 100%;
  height: 2.75rem;
  border: 1px solid var(--slate-200);
  border-radius: .75rem;
  background: #fff;
  padding: 0 .75rem;
  font: inherit;
  font-size: .875rem;
  color: var(--fg);
  outline: none;
}
.textarea { height: auto; min-height: 7rem; padding: .75rem; resize: vertical; }
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(7, 89, 245, .2);
}
.select-wrap { position: relative; }
.select { appearance: none; padding-right: 2.25rem; }
.select-chevron {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
  width: 1rem;
  height: 1rem;
}
.choice {
  border: 1px solid var(--slate-200);
  background: #fff;
  color: var(--slate-700);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 600;
}
.choice:hover { border-color: #60a5fa; }
.choice.is-on { border-color: var(--blue-600); background: var(--blue-600); color: #fff; }
.check-line {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--slate-700);
}
.check-line input {
  width: 1rem;
  height: 1rem;
  margin-top: .15rem;
  accent-color: var(--primary);
}
.field { display: flex; flex-direction: column; }

/* Register */
.reg-page { min-height: calc(100vh - 76px); background: #f6f8fc; padding-bottom: 3rem; }
.reg-top { border-bottom: 1px solid var(--slate-200); background: #fff; }
.reg-bar {
  display: flex;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1rem 0;
  font-size: .875rem;
  color: var(--slate-500);
}
.reg-bar a, .reg-bar button {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  padding: 0;
}
.reg-bar a:hover { color: var(--blue-600); }
.safe-note { display: none; align-items: center; gap: .5rem; }
.steps-scroll {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.steps {
  display: flex;
  min-width: 820px;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-line {
  display: flex;
  width: 100%;
  align-items: center;
}
.step-line i {
  height: 1px;
  flex: 1;
  background: var(--slate-200);
}
.step-line i.is-done { background: var(--blue-600); }
.step-line i.is-empty { background: transparent; }
.step-num {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--slate-300);
  font-size: .75rem;
  font-weight: 700;
  color: var(--slate-400);
  background: #fff;
}
.step.is-done .step-num { border-color: var(--blue-600); background: var(--blue-600); color: #fff; }
.step.is-current .step-num { border-color: var(--blue-600); color: var(--blue-600); box-shadow: 0 0 0 4px #eff6ff; }
.step small { margin-top: .5rem; color: var(--slate-500); font-size: .75rem; }
.step.is-current small { font-weight: 600; color: var(--blue-600); }

.reg-body { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; padding: 2rem 0; }
.reg-body h1 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 600; }
.reg-sub { margin: .5rem 0 0; color: var(--slate-600); }
.reg-layout { display: grid; gap: 1.5rem; margin-top: 1.75rem; align-items: start; }
.reg-card {
  border: 1px solid var(--slate-200);
  border-radius: 1.5rem;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 8px 30px rgba(20, 40, 80, .05);
}
.step-panel { display: none; }
.step-panel.is-active { display: block; }
.path-grid, .role-grid, .sen-grid { display: grid; gap: 1rem; }
.path-pick {
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  background: #fff;
  font: inherit;
  color: inherit;
}
.path-pick.is-on { border-color: var(--blue-600); background: #eff6ff; box-shadow: 0 0 0 2px #dbeafe; }
.path-pick-top { display: flex; justify-content: space-between; color: var(--blue-600); }
.path-pick h2 { margin: 1.5rem 0 0; font-size: 1.125rem; }
.path-pick p { margin: .5rem 0 0; font-size: .875rem; line-height: 1.5rem; color: var(--slate-600); }
.search-wrap { position: relative; }
.search-wrap .icon { position: absolute; left: .75rem; top: .85rem; color: var(--slate-400); }
.search-wrap .input { height: 3rem; padding-left: 2.5rem; }
.tech-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.tech-chip {
  border: 1px solid var(--slate-200);
  background: #fff;
  border-radius: 999px;
  padding: .5rem 1rem;
  font-size: .875rem;
}
.tech-chip.is-on { border-color: var(--blue-600); background: var(--blue-600); color: #fff; }
.skill-list { margin-top: 1.75rem; border: 1px solid var(--slate-200); border-radius: 1rem; overflow: hidden; }
.skill-row {
  display: grid;
  gap: .75rem;
  padding: 1rem;
  border-top: 1px solid var(--slate-200);
  align-items: center;
}
.skill-row:first-child { border-top: 0; }
.form-grid { display: grid; gap: 1.25rem; }
.span-2 { grid-column: 1 / -1; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.space-y > * + * { margin-top: 1.75rem; }
.border-top { border-top: 1px solid var(--slate-200); padding-top: 1.5rem; }
.upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px dashed #93c5fd;
  background: rgba(239, 246, 255, .4);
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: center;
  cursor: pointer;
  color: var(--blue-700);
}
.upload .icon { width: 2rem; height: 2rem; color: var(--blue-600); }
.upload small { margin-top: .25rem; color: var(--slate-500); }
.upload input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.lang-grid, .avail-grid { display: grid; gap: 1rem; }
.intl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--slate-200);
  border-radius: .75rem;
  padding: .75rem;
  margin-bottom: .75rem;
}
.intl-row span { font-size: .875rem; font-weight: 500; }
.note {
  display: flex;
  gap: .75rem;
  border-radius: .75rem;
  background: #eff6ff;
  padding: 1rem;
  font-size: .875rem;
  color: #1e40af;
}
.note .icon { flex-shrink: 0; }
.summary-list { margin-top: 1rem; border: 1px solid var(--slate-200); border-radius: 1rem; overflow: hidden; }
.summary-row {
  display: grid;
  gap: .5rem;
  padding: 1rem;
  border-top: 1px solid var(--slate-200);
  align-items: center;
}
.summary-row:first-child { border-top: 0; }
.summary-row .icon { color: #059669; }
.summary-row strong { font-size: .875rem; }
.summary-row span { font-size: .875rem; color: var(--slate-600); }
.summary-row button { background: none; border: 0; color: var(--blue-600); font-size: .875rem; font-weight: 600; padding: 0; text-align: left; }
.consent-list { margin-top: 1rem; display: grid; gap: 1rem; }
.reg-nav {
  display: flex;
  flex-direction: column-reverse;
  gap: .75rem;
  margin-top: 2rem;
  border-top: 1px solid var(--slate-200);
  padding-top: 1.25rem;
}
.reg-nav-right { display: flex; flex-direction: column; gap: .75rem; }

.profile-aside {
  display: none;
  position: sticky;
  top: 7rem;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.profile-head {
  background: linear-gradient(to bottom right, var(--navy-2), var(--navy-3));
  padding: 1.75rem;
  text-align: center;
  color: #fff;
}
.avatar {
  display: flex;
  width: 4rem;
  height: 4rem;
  margin: 1.25rem auto 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.4);
  background: var(--blue-600);
  font-size: 1.25rem;
  font-weight: 600;
}
.profile-head h3 { margin: 1.25rem 0 0; font-size: 1.25rem; }
.profile-head p { margin: .5rem 0 0; font-size: .875rem; color: var(--slate-300); }
.profile-body { padding: 1.75rem; }
.progress-row { display: flex; justify-content: space-between; align-items: center; }
.progress-row strong { font-size: 1.5rem; color: var(--blue-600); }
.progress {
  margin-top: 1rem;
  height: .5rem;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 89, 245, .2);
}
.progress > span {
  display: block;
  height: 100%;
  background: var(--primary);
  width: 12.5%;
  transition: width .2s ease;
}
.autosave {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  border-top: 1px solid var(--slate-200);
  padding-top: 1.5rem;
  font-size: .875rem;
  color: var(--slate-600);
}
.autosave .icon { color: #059669; }

@media (min-width: 640px) {
  .safe-note { display: flex; }
  .reg-card { padding: 1.75rem; }
  .role-grid { grid-template-columns: 1fr 1fr; }
  .sen-grid { grid-template-columns: repeat(4, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .lang-grid { grid-template-columns: repeat(4, 1fr); }
  .avail-grid { grid-template-columns: repeat(3, 1fr); }
  .choice-row { display: grid; gap: .75rem; }
  .choice-row-4 { grid-template-columns: repeat(4, 1fr); }
  .choice-row-3 { grid-template-columns: repeat(3, 1fr); }
  .skill-row { grid-template-columns: 1fr 180px 120px; }
  .summary-row { grid-template-columns: 24px 180px 1fr auto; }
  .proj-grid { grid-template-columns: 1fr 1fr 1fr; display: grid; gap: 1rem; }
  .finance-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .reg-nav { flex-direction: row; justify-content: space-between; }
  .reg-nav-right { flex-direction: row; }
}
@media (min-width: 1024px) {
  .path-grid { grid-template-columns: repeat(3, 1fr); }
  .role-grid { grid-template-columns: repeat(3, 1fr); }
  .reg-layout { grid-template-columns: 1fr 320px; }
  .profile-aside { display: block; }
}

/* Success */
.success-page {
  display: flex;
  min-height: calc(100vh - 76px);
  align-items: center;
  justify-content: center;
  background: #f5f8fd;
  padding: 1.25rem;
}
.success-card {
  max-width: 36rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
.success-icon {
  display: flex;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ecfdf5;
  color: #059669;
}
.success-icon .icon { width: 2.75rem; height: 2.75rem; }
.success-card h1 { margin: 1.75rem 0 0; font-size: 1.875rem; }
.success-card p { margin: 1rem 0 0; line-height: 1.75rem; color: var(--slate-600); }
.status-pill {
  margin-top: 1.5rem;
  border-radius: .75rem;
  background: #fffbeb;
  padding: 1rem;
  font-weight: 600;
  color: #92400e;
}
.success-card .btn { margin-top: 1.75rem; }

/* Dashboard */
.dash-page { min-height: calc(100vh - 76px); background: #f5f8fd; }
.dash-inner { width: min(1200px, calc(100% - 2.5rem)); margin: 0 auto; padding: 2.25rem 0; }
.dash-head { display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; }
.kicker { margin: 0; font-size: .875rem; font-weight: 600; color: var(--blue-600); }
.dash-head h1 { margin: .5rem 0 0; font-size: 1.875rem; }
.dash-head p { margin: .5rem 0 0; color: var(--slate-600); }
.stat-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.stat-card {
  border: 1px solid var(--slate-200);
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
}
.stat-card span { font-size: .875rem; color: var(--slate-500); }
.stat-card strong { display: block; margin-top: .5rem; }
.dash-grid { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.dash-card {
  border: 1px solid var(--slate-200);
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.dash-card h2 { margin: 0; font-size: 1.25rem; }
.menu-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: none;
  border-radius: .75rem;
  padding: .75rem;
  font: inherit;
  text-align: left;
}
.menu-btn:hover { background: #eff6ff; }
.menu-btn span { display: flex; align-items: center; gap: .75rem; }
.menu-btn .icon { color: var(--blue-600); }
.menu-btn .chev { color: var(--slate-400); }
.opp-head { display: flex; justify-content: space-between; align-items: flex-start; }
.badge {
  border-radius: 999px;
  background: #eff6ff;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  color: #1d4ed8;
}
.opp-card {
  margin-top: 1.5rem;
  border: 1px solid #bfdbfe;
  border-radius: 1rem;
  padding: 1.5rem;
  background: linear-gradient(to bottom right, #eff6ff, #ecfeff);
}
.opp-card h3 { margin: .5rem 0 0; font-size: 1.25rem; }
.opp-card p { margin: .5rem 0 0; color: var(--slate-600); }
.opp-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.opp-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.opp-note {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
  border-radius: 1rem;
  background: #f8fafc;
  padding: 1rem;
  font-size: .875rem;
  color: var(--slate-600);
}
.opp-note .icon { color: #059669; flex-shrink: 0; }

@media (min-width: 640px) {
  .dash-head { flex-direction: row; align-items: center; }
  .choice-row { display: grid; }
}
@media (min-width: 768px) {
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .dash-grid { grid-template-columns: .75fr 1.25fr; }
}

.choice-row { display: grid; gap: .75rem; }
.choice-row-4 { grid-template-columns: 1fr; }
.choice-row-3 { grid-template-columns: 1fr; }
.proj-grid { display: grid; gap: 1rem; }
.finance-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) {
  .choice-row-4 { grid-template-columns: repeat(4, 1fr); }
  .choice-row-3 { grid-template-columns: repeat(3, 1fr); }
}

.alert {
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin: 0 0 1.5rem;
}
.alert.error { background: #fef2f2; color: #991b1b; }
.alert.error p { margin: 0; }
.alert.error p + p { margin-top: .4rem; }
.flash {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 1rem auto 0;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  font-size: .95rem;
}
.flash-success { background: #ecfdf5; color: #065f46; }
.flash-error { background: #fef2f2; color: #991b1b; }

.login-page {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: #f5f8fd;
}
.login-card {
  width: min(28rem, 100%);
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);
}
.login-card h1 { margin: 0; font-size: 1.75rem; }
.login-card > p { color: var(--slate-600); line-height: 1.6; }
.login-form { display: grid; gap: 1rem; margin-top: 1.5rem; }
.login-alt { margin: 1.25rem 0 0; text-align: center; }
.login-alt a { color: var(--blue-600); font-weight: 600; }

.dash-head-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.muted-line { color: var(--slate-600); margin: .5rem 0 0; }
.avail-form h3 { margin: 1.5rem 0 0; font-size: 1rem; }
.doc-list { margin: .75rem 0 0; padding-left: 1.2rem; color: var(--slate-700); }
.mt-6 { margin-top: 1.5rem; }

.login-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
  background: var(--navy);
  overflow: hidden;
}
.login-glow {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image:
    radial-gradient(circle at 78% 28%, #087bff 0, transparent 28%),
    radial-gradient(circle at 22% 82%, #00c8c8 0, transparent 22%);
}
.login-wrap { position: relative; width: min(28rem, 100%); }
.login-card-brand {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 25px 60px rgba(0,0,0,.28);
}
.login-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: 0 0 1rem;
  color: var(--blue-600);
  font-size: .8rem;
  font-weight: 600;
}

.admin-filters {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}
@media (min-width: 700px) {
  .admin-filters { grid-template-columns: 1fr 220px auto; align-items: center; }
}
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--slate-200); border-radius: 1.25rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--slate-200); font-size: .9rem; }
.admin-table th { color: var(--slate-500); font-weight: 600; }
.admin-table tr:last-child td { border-bottom: 0; }
.status-form { background: #fff; border: 1px solid var(--slate-200); border-radius: 1.25rem; padding: 1.25rem; margin-top: 1.5rem; }
.status-row { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.status-row .select { width: min(20rem, 100%); }
.profile-grid { display: grid; gap: 1.5rem; }
@media (min-width: 900px) {
  .profile-grid { grid-template-columns: 1fr 1fr; }
}
.facts { display: grid; gap: 1rem; margin: 1rem 0 0; }
.facts div { margin: 0; }
.facts dt { font-size: .75rem; color: var(--slate-500); font-weight: 600; }
.facts dd { margin: .2rem 0 0; }
.profile-form h3 { margin: 0; }

