:root {
  --blue-950: #0a3266;
  --blue-800: #1454a3;
  --blue-700: #1769d2;
  --blue-600: #2474e5;
  --blue-500: #3688f4;
  --blue-200: #bcdcff;
  --blue-100: #e3f1ff;
  --blue-50: #f3f9ff;
  --ink: #172b46;
  --muted: #71839a;
  --line: #dfeaf5;
  --danger: #e34958;
  --white: #fff;
  --shadow: 0 24px 70px rgba(50, 107, 167, .15);
  --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font);
  background: #f7fbff;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button, label, select { -webkit-tap-highlight-color: transparent; }
button { border: 0; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
fieldset { margin: 0; padding: 0; border: 0; }

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -12%, rgba(185, 221, 255, .58), transparent 34%),
    linear-gradient(145deg, #fbfdff 0%, #f3f9ff 50%, #fbfdff 100%);
}

.ambient::before,
.ambient::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(52, 132, 227, .08);
  border-radius: 50%;
}

.ambient::before { width: 420px; height: 420px; left: -220px; top: 12%; }
.ambient::after { width: 520px; height: 520px; right: -260px; bottom: 0; }

.orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(2px);
  animation: float 12s ease-in-out infinite;
}

.orb-one { width: 18px; height: 18px; top: 17%; left: 13%; background: rgba(49, 133, 239, .19); }
.orb-two { width: 8px; height: 8px; top: 29%; right: 18%; background: rgba(49, 133, 239, .28); animation-delay: -4s; }
.orb-three { width: 13px; height: 13px; bottom: 18%; left: 20%; border: 2px solid rgba(49, 133, 239, .19); animation-delay: -7s; }

.grid-glow {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: linear-gradient(rgba(66, 135, 216, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(66, 135, 216, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black, transparent 72%);
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -22px, 0); }
}

.page-wrap { min-height: 100vh; }
.is-hidden { display: none !important; }

.glass-card {
  border: 1px solid rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .91);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.welcome-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 40px 20px 24px;
  animation: screenIn .7s ease both;
}

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

.welcome-card {
  position: relative;
  width: min(100%, 600px);
  overflow: hidden;
  padding: 56px 64px 38px;
  border-radius: 32px;
  text-align: center;
}

.welcome-card::before {
  content: "";
  position: absolute;
  top: -165px;
  left: 50%;
  width: 430px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(120deg, rgba(86, 162, 247, .19), rgba(196, 228, 255, .2));
  transform: translateX(-50%);
}

.brand-mark {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto 28px;
  color: var(--blue-600);
}

.hero-mark {
  animation: markEnter .8s cubic-bezier(.2, .9, .2, 1.2) both;
}

@keyframes markEnter {
  from { opacity: 0; transform: scale(.7) rotate(-14deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.atom-orbit {
  position: absolute;
  inset: 23px 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.orbit-a { transform: rotate(0deg); }
.orbit-b { transform: rotate(60deg); }
.orbit-c { transform: rotate(120deg); }
.atom-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--blue-500);
  transform: translateY(-50%);
}
.atom-core { position: absolute; top: 50%; left: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--blue-600); box-shadow: 0 0 0 7px rgba(36, 116, 229, .1); transform: translate(-50%, -50%); }

.eyebrow {
  margin: 0 0 11px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.welcome-card h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.38;
  letter-spacing: -.035em;
}

.welcome-card h1 span { color: var(--blue-700); }

.department-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 8px 18px;
  border: 1px solid var(--blue-200);
  border-radius: 99px;
  color: var(--blue-700);
  background: var(--blue-50);
  font-size: 14px;
  font-weight: 600;
}
.department-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-500); box-shadow: 0 0 0 5px rgba(54, 136, 244, .1); }

.welcome-copy {
  max-width: 430px;
  margin: 27px auto 31px;
  padding: 18px 20px;
  border: 1px solid #cfe5fb;
  border-radius: 16px;
  color: #577493;
  background: linear-gradient(135deg, rgba(234, 245, 255, .92), rgba(248, 252, 255, .96));
  box-shadow: 0 10px 25px rgba(45, 115, 193, .08);
  font-size: 14px;
  line-height: 1.75;
}
.welcome-copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-800);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .02em;
}
.welcome-copy span {
  display: block;
}

.primary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  overflow: hidden;
  padding: 0 29px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 12px 28px rgba(36, 116, 229, .26);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.primary-btn::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 65%); transform: translateX(-120%); transition: transform .7s ease; }
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 34px rgba(36, 116, 229, .33); }
.primary-btn:hover::before { transform: translateX(120%); }
.primary-btn:active { transform: translateY(0) scale(.98); }
.primary-btn:disabled { opacity: .65; cursor: wait; transform: none; }
.primary-btn svg { width: 20px; height: 20px; transition: transform .25s ease; }
.primary-btn:hover svg { transform: translateX(3px); }
.start-btn { width: min(100%, 270px); font-weight: 700; }

.welcome-meta { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 28px; color: #8b9bad; font-size: 12px; }
.welcome-meta span { display: inline-flex; align-items: center; gap: 6px; }
.welcome-meta svg { width: 15px; height: 15px; color: var(--blue-500); }
.copyright { margin: 26px 0 0; color: #a4b1c0; font-size: 11px; letter-spacing: .08em; }

.form-app { width: min(100% - 32px, 880px); margin: 0 auto; padding: 25px 0 35px; animation: screenIn .55s ease both; }
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 0 5px; }
.mini-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.mini-logo { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 12px; color: #fff; background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); box-shadow: 0 7px 18px rgba(36,116,229,.2); font-size: 12px; font-weight: 800; letter-spacing: -.04em; }
.mini-brand > span:last-child { display: flex; flex-direction: column; }
.mini-brand strong { font-size: 14px; line-height: 1.25; }
.mini-brand small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.save-state { display: inline-flex; align-items: center; gap: 6px; color: #8b9bad; font-size: 11px; }
.save-state i { width: 6px; height: 6px; border-radius: 50%; background: #46bf89; box-shadow: 0 0 0 4px rgba(70,191,137,.1); }
.save-state.saving i { animation: pulse 1s ease infinite; background: var(--blue-500); }
@keyframes pulse { 50% { transform: scale(1.5); opacity: .45; } }

.progress-zone { margin: 28px 5px 22px; }
.progress-copy { display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; }
.progress-copy strong { color: var(--blue-600); font-size: 12px; }
.progress-track { height: 6px; overflow: hidden; margin-top: 10px; border-radius: 99px; background: #deebf7; }
.progress-track span { display: block; width: 20%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue-700), #54a1fa); box-shadow: 0 0 10px rgba(54,136,244,.35); transition: width .5s cubic-bezier(.2,.8,.2,1); }
.step-labels { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 9px; color: #a2afbf; font-size: 10px; }
.step-labels span { text-align: center; transition: color .25s ease; }
.step-labels span:first-child { text-align: left; }
.step-labels span:last-child { text-align: right; }
.step-labels span.active, .step-labels span.done { color: var(--blue-700); font-weight: 600; }

.form-card { overflow: hidden; padding: 42px 48px 0; border-radius: 26px; }
.step-panel { display: none; min-height: 450px; animation: stepIn .42s cubic-bezier(.2,.8,.2,1) both; }
.step-panel.active { display: block; }
.step-panel.slide-back { animation-name: stepBack; }
@keyframes stepIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
@keyframes stepBack { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: none; } }

.step-heading { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 35px; }
.step-icon { flex: 0 0 auto; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; color: var(--blue-600); background: linear-gradient(145deg, #edf6ff, #deeeff); box-shadow: inset 0 0 0 1px rgba(75,145,226,.1); }
.step-icon svg { width: 25px; height: 25px; }
.step-icon.sparkle { color: #327ee0; }
.step-heading p { margin: 0 0 3px; color: var(--blue-500); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.step-heading h2 { margin: 0; font-size: 23px; letter-spacing: -.02em; }
.step-heading div > span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }

.field-group { margin-bottom: 26px; }
.field-group label, .field-group legend { display: block; margin-bottom: 9px; color: #38516e; font-size: 13px; font-weight: 600; }
.field-group em { color: var(--danger); font-style: normal; }
.input-wrap, .select-wrap { position: relative; }
.input-wrap > svg, .input-wrap > .text-icon { position: absolute; z-index: 1; top: 50%; left: 16px; width: 19px; height: 19px; color: #8cabcc; transform: translateY(-50%); }
.input-wrap > .text-icon { display: grid; place-items: center; border: 1.7px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 800; }
input[type="text"], input:not([type]), .input-wrap input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  outline: none;
  color: var(--ink);
  background: #fbfdff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.input-wrap input { height: 52px; padding: 0 16px 0 47px; border-radius: 13px; }
input::placeholder, textarea::placeholder { color: #aab7c6; }
.input-wrap input:focus, select:focus, textarea:focus { border-color: #7bb3ef; background: #fff; box-shadow: 0 0 0 4px rgba(54,136,244,.1); }
.input-wrap.has-error input { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(227,73,88,.08); }
.field-error { min-height: 0; margin: 6px 0 0; color: var(--danger); font-size: 11px; }
.field-error:not(:empty) { min-height: 16px; animation: errorIn .25s ease; }
.visible-space { min-height: 8px; }
@keyframes errorIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.major-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.option-card { position: relative; display: flex !important; align-items: center; gap: 12px; min-height: 67px; margin: 0 !important; padding: 11px 15px; border: 1px solid var(--line); border-radius: 14px; background: #fbfdff; cursor: pointer; transition: border-color .2s, background .2s, transform .2s, box-shadow .2s; }
.option-card:hover { border-color: #a9d0f8; transform: translateY(-1px); }
.option-card:has(input:checked) { border-color: var(--blue-500); background: var(--blue-50); box-shadow: 0 7px 18px rgba(51,126,216,.1); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-dot { flex: 0 0 auto; display: grid; place-items: center; width: 19px; height: 19px; border: 1.5px solid #b6c6d7; border-radius: 50%; background: #fff; transition: border-color .2s; }
.option-dot::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--blue-600); transform: scale(0); transition: transform .2s cubic-bezier(.2,.9,.2,1.3); }
.option-card input:checked + .option-dot { border-color: var(--blue-600); }
.option-card input:checked + .option-dot::after { transform: scale(1); }
.option-card strong { display: block; color: #314a67; font-size: 13px; }
.option-card small { display: block; margin-top: 2px; color: #99a9bb; font-size: 9px; font-weight: 400; }

.contact-illustration { position: absolute; right: 52px; top: 35px; display: grid; place-items: center; width: 80px; height: 80px; color: rgba(54,136,244,.17); }
.contact-illustration svg { width: 39px; height: 39px; color: var(--blue-500); stroke-width: 1.4; }
.signal-ring { position: absolute; border: 1px solid currentColor; border-radius: 50%; animation: signal 2.2s ease-out infinite; }
.ring-one { width: 60px; height: 60px; }
.ring-two { width: 78px; height: 78px; animation-delay: .8s; }
@keyframes signal { 0% { opacity: .7; transform: scale(.65); } 85%,100% { opacity: 0; transform: scale(1.15); } }
.two-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.privacy-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 9px; padding: 15px 17px; border: 1px solid #dcecfb; border-radius: 13px; color: #7890aa; background: #f6fbff; font-size: 11px; line-height: 1.65; }
.privacy-note svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; color: var(--blue-500); }
.privacy-note strong { display: block; color: #527393; font-size: 11px; }

.talent-counter { display: flex; justify-content: space-between; align-items: center; margin: -15px 0 13px; color: var(--muted); font-size: 11px; }
.talent-counter strong { color: var(--blue-600); font-size: 15px; }
.talent-counter small { color: #9baabd; }
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.category-card { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 77px; padding: 9px 5px; border: 1px solid var(--line); border-radius: 14px; color: #52708f; background: #fbfdff; cursor: pointer; transition: all .22s ease; }
.category-card:hover { border-color: #a8cff8; color: var(--blue-600); transform: translateY(-2px); }
.category-card.selected { border-color: var(--blue-500); color: var(--blue-700); background: linear-gradient(145deg, #f4f9ff, #eaf4ff); box-shadow: 0 7px 18px rgba(54,136,244,.1); }
.category-card .category-icon { display: grid; place-items: center; width: 29px; height: 29px; margin-bottom: 5px; border-radius: 9px; background: var(--blue-50); font-size: 15px; transition: transform .2s ease; }
.category-card:hover .category-icon, .category-card.selected .category-icon { transform: scale(1.09) rotate(-3deg); }
.category-card strong { font-size: 11px; font-weight: 600; }
.category-card small { position: absolute; top: 5px; right: 7px; display: none; color: var(--blue-500); font-size: 9px; }
.category-card.selected small { display: block; }
.talent-detail { margin-top: 16px; }
.empty-talent { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 126px; border: 1px dashed #cadaeb; border-radius: 15px; color: #9aabbd; background: rgba(248,251,255,.55); text-align: center; }
.empty-talent span { color: #9fc5ed; font-size: 22px; }
.empty-talent p { margin: 7px 0 0; font-size: 11px; line-height: 1.6; }
.talent-section { padding: 15px 0 2px; border-top: 1px solid #edf2f7; animation: stepIn .3s ease both; }
.talent-section:first-child { padding-top: 0; border-top: 0; }
.talent-title { display: flex; align-items: center; gap: 7px; margin: 0 0 11px; color: #3b5774; font-size: 12px; font-weight: 700; }
.talent-title span { color: var(--blue-500); }
.talent-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.talent-chip { position: relative; }
.talent-chip input { position: absolute; opacity: 0; }
.talent-chip span { display: block; padding: 8px 13px; border: 1px solid var(--line); border-radius: 99px; color: #617994; background: #fff; font-size: 11px; cursor: pointer; transition: all .2s ease; }
.talent-chip span:hover { border-color: #9ac7f4; color: var(--blue-600); }
.talent-chip input:checked + span { border-color: var(--blue-500); color: var(--blue-700); background: var(--blue-50); box-shadow: inset 0 0 0 1px rgba(36,116,229,.05); }
.talent-chip input:checked + span::before { content: "✓ "; font-weight: 700; }
.custom-talent-field { margin-top: 18px; }

.category-step-panel .step-heading { margin-bottom: 25px; }
.category-focus-banner { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; padding: 13px 15px; border: 1px solid #d8e9fa; border-radius: 14px; color: #66809a; background: linear-gradient(135deg, #f5faff, #edf6ff); font-size: 11px; }
.category-focus-banner strong { color: var(--blue-700); font-size: 12px; }
.category-focus-banner span { padding: 4px 9px; border-radius: 99px; color: var(--blue-700); background: #fff; box-shadow: 0 3px 9px rgba(45,105,171,.08); font-size: 9px; }
.category-talent-counter { margin-bottom: 10px; color: #8799ad; font-size: 10px; }
.category-talent-counter strong { color: var(--blue-600); font-size: 13px; }
.category-experience-fields { margin-top: 23px; padding: 18px 18px 0; border: 1px solid #e0ebf7; border-radius: 16px; background: #fbfdff; }
.category-experience-fields .field-group { margin-bottom: 18px; }
.category-certificate-block { margin-top: 29px; padding: 20px; border: 1px solid #dbeaf8; border-radius: 16px; background: #f8fbff; }
.certificate-question-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.certificate-question-head > span { flex: 0 0 auto; display: grid; place-items: center; width: 35px; height: 35px; border-radius: 11px; color: var(--blue-600); background: #e6f2ff; font-size: 16px; }
.certificate-question-head strong { display: block; color: #3e5874; font-size: 12px; }
.certificate-question-head small { display: block; margin-top: 2px; color: #91a2b4; font-size: 9px; }
.category-certificate-block .certificate-area { margin: 14px 0 0; }
.category-certificate-block .certificate-area.is-collapsed { margin: 0; }
.category-certificate-error { margin-top: 8px; }

.segmented { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 5px; border: 1px solid var(--line); border-radius: 14px; background: #f5f9fd; }
.segmented label { position: relative; margin: 0 !important; }
.segmented input { position: absolute; opacity: 0; }
.segmented span { display: grid; place-items: center; min-height: 40px; border-radius: 10px; color: #7890a8; cursor: pointer; transition: all .2s ease; }
.segmented input:checked + span { color: var(--blue-700); background: #fff; box-shadow: 0 4px 13px rgba(56,103,154,.1); }
.certificate-area { overflow: hidden; max-height: 700px; margin: -7px 0 24px; opacity: 1; transition: max-height .4s ease, opacity .3s ease, margin .4s ease; }
.certificate-area.is-collapsed { max-height: 0; margin: 0; opacity: 0; }
.certificate-row { position: relative; display: grid; grid-template-columns: 1.1fr .8fr 1fr auto; gap: 9px; margin-bottom: 10px; padding: 14px; border: 1px solid #dceaf7; border-radius: 14px; background: var(--blue-50); animation: stepIn .3s ease both; }
.certificate-row input { width: 100%; height: 41px; padding: 0 11px; border: 1px solid var(--line); border-radius: 10px; outline: none; color: var(--ink); background: #fff; font-size: 11px; }
.remove-certificate { width: 38px; height: 38px; border-radius: 10px; color: #9aabbc; background: #fff; cursor: pointer; transition: color .2s, background .2s; }
.remove-certificate:hover { color: var(--danger); background: #fff3f4; }
.ghost-btn { min-height: 43px; padding: 0 18px; border: 1px solid var(--blue-200); border-radius: 12px; color: var(--blue-700); background: var(--blue-50); font-size: 12px; font-weight: 600; cursor: pointer; transition: all .2s ease; }
.ghost-btn:hover { border-color: var(--blue-500); background: #eaf4ff; transform: translateY(-1px); }
.add-certificate { width: 100%; border-style: dashed; }
.add-certificate span { font-size: 17px; vertical-align: -1px; }
.compact-fields .field-group { margin-bottom: 20px; }
.select-wrap select { height: 50px; padding: 0 42px 0 14px; border-radius: 13px; appearance: none; cursor: pointer; }
.select-wrap svg { position: absolute; top: 50%; right: 15px; width: 17px; height: 17px; color: #8ca4be; pointer-events: none; transform: translateY(-50%); }
.textarea-wrap { position: relative; }
textarea { min-height: 102px; resize: vertical; padding: 14px 16px 30px; border-radius: 13px; line-height: 1.7; }
.textarea-wrap > span { position: absolute; right: 13px; bottom: 10px; color: #a5b2c2; font-size: 10px; }
.textarea-wrap b { font-weight: 500; }

.review-heading { margin-bottom: 24px; }
.review-list { display: grid; gap: 11px; }
.review-card { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: start; padding: 15px 16px; border: 1px solid var(--line); border-radius: 14px; background: #fbfdff; cursor: pointer; transition: all .2s ease; }
.review-card:hover { border-color: #add2f6; background: var(--blue-50); transform: translateX(2px); }
.review-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: var(--blue-600); background: #eaf4ff; font-size: 15px; }
.review-card h3 { margin: 0 0 5px; color: #526b86; font-size: 11px; font-weight: 500; }
.review-card p { margin: 0; color: #263e59; font-size: 12px; line-height: 1.65; }
.review-card .review-meta { margin-top: 8px; color: #7890a8; font-size: 10px; }
.review-card > svg { width: 17px; height: 17px; margin-top: 10px; color: #adc0d3; }
.review-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.review-tags span { padding: 4px 8px; border-radius: 99px; color: var(--blue-700); background: #eaf4ff; font-size: 10px; }
.agreement { display: flex; align-items: flex-start; gap: 10px; margin: 18px 1px 0; color: #71849a; font-size: 11px; line-height: 1.6; cursor: pointer; }
.agreement input { position: absolute; opacity: 0; }
.checkmark { flex: 0 0 auto; display: grid; place-items: center; width: 19px; height: 19px; margin-top: 1px; border: 1px solid #b9c9da; border-radius: 6px; color: #fff; background: #fff; transition: all .2s ease; }
.checkmark svg { width: 13px; height: 13px; stroke-width: 2.5; transform: scale(0); transition: transform .2s ease; }
.agreement input:checked + .checkmark { border-color: var(--blue-600); background: var(--blue-600); }
.agreement input:checked + .checkmark svg { transform: scale(1); }

.form-actions { display: flex; align-items: center; justify-content: space-between; margin: 36px -48px 0; padding: 21px 48px; border-top: 1px solid #edf2f7; background: rgba(250,252,255,.78); }
.back-btn { display: inline-flex; align-items: center; gap: 8px; min-height: 45px; padding: 0 12px; color: #8496aa; background: transparent; cursor: pointer; transition: color .2s ease; }
.back-btn:hover { color: var(--blue-600); }
.back-btn svg { width: 19px; height: 19px; transition: transform .2s; }
.back-btn:hover svg { transform: translateX(-3px); }
.back-btn.invisible { visibility: hidden; }
.next-btn { min-width: 138px; min-height: 46px; font-size: 13px; font-weight: 700; }
.next-btn.loading span { font-size: 0; }
.next-btn.loading span::after { content: "提交中…"; font-size: 13px; }
.next-btn.loading svg { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-app footer { display: flex; justify-content: center; padding: 20px 7px 0; color: #a1aebe; font-size: 10px; }

.success-screen { min-height: 100vh; display: grid; place-items: center; padding: 30px 20px; animation: screenIn .6s ease both; }
.success-card { width: min(100%, 540px); padding: 58px 50px 43px; border-radius: 30px; text-align: center; }
.success-orbit { position: relative; display: grid; place-items: center; width: 112px; height: 112px; margin: 0 auto 26px; }
.success-orbit::before, .success-orbit::after { content: ""; position: absolute; border: 1px solid #cae4ff; border-radius: 50%; animation: successRing 2s ease infinite; }
.success-orbit::before { inset: 10px; }
.success-orbit::after { inset: 0; animation-delay: .4s; }
@keyframes successRing { 0%,100% { transform: scale(.92); opacity: .5; } 50% { transform: scale(1.06); opacity: 1; } }
.check-circle { z-index: 2; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #3dca92, #27a978); box-shadow: 0 12px 25px rgba(42,177,127,.25); animation: checkPop .6s cubic-bezier(.2,.9,.2,1.3) both; }
.check-circle svg { width: 30px; height: 30px; stroke-width: 2.3; }
@keyframes checkPop { from { transform: scale(.2); } to { transform: scale(1); } }
.success-orbit i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-400, #61a9f7); }
.success-orbit i:nth-child(2) { top: 6px; right: 17px; }
.success-orbit i:nth-child(3) { left: 4px; bottom: 24px; width: 5px; height: 5px; }
.success-orbit i:nth-child(4) { right: 2px; bottom: 27px; width: 4px; height: 4px; }
.success-card h2 { margin: 5px 0 12px; font-size: 28px; }
.success-card > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.success-quote { position: relative; display: flex; align-items: flex-start; justify-content: center; gap: 8px; margin: 30px 0; padding: 24px 18px; overflow: hidden; border: 1px solid #c8e2fc; border-radius: 18px; color: var(--blue-800); background: linear-gradient(135deg, #edf7ff, #f7fbff 55%, #e8f4ff); box-shadow: 0 12px 30px rgba(42, 112, 191, .11); font-family: serif; line-height: 1.75; }
.success-quote::before { content: ""; position: absolute; top: -38px; right: -30px; width: 100px; height: 100px; border: 1px solid rgba(54,136,244,.15); border-radius: 50%; }
.success-quote strong { position: relative; font-family: var(--font); font-size: 17px; font-weight: 800; letter-spacing: .04em; }
.success-quote span { position: relative; color: var(--blue-400, #61a9f7); font-size: 28px; font-weight: 700; line-height: 1; }
.success-quote span:last-child { align-self: flex-end; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 28px; max-width: calc(100% - 32px); padding: 12px 19px; border-radius: 12px; color: #fff; background: #243c58; box-shadow: 0 10px 30px rgba(25,48,74,.25); font-size: 12px; opacity: 0; pointer-events: none; transform: translate(-50%, 18px); transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.error { background: #c6424f; }
.confetti { position: fixed; z-index: 99; top: -12px; width: 7px; height: 12px; border-radius: 2px; pointer-events: none; animation: confettiFall 2.8s ease-in forwards; }
@keyframes confettiFall { to { transform: translate3d(var(--drift), 110vh, 0) rotate(680deg); opacity: .4; } }

@media (max-width: 700px) {
  .welcome-screen { padding: max(25px, env(safe-area-inset-top)) 16px max(20px, env(safe-area-inset-bottom)); }
  .welcome-card { padding: 43px 23px 30px; border-radius: 25px; }
  .brand-mark { margin-bottom: 22px; }
  .welcome-copy { padding: 16px 15px; font-size: 12px; }
  .welcome-copy strong { font-size: 16px; }
  .welcome-meta { gap: 15px; }
  .form-app { width: min(100% - 20px, 880px); padding-top: max(16px, env(safe-area-inset-top)); }
  .progress-zone { margin-top: 22px; }
  .step-labels { display: none; }
  .form-card { padding: 30px 19px 0; border-radius: 21px; }
  .step-panel { min-height: 470px; }
  .step-heading { gap: 12px; margin-bottom: 28px; }
  .step-icon { width: 43px; height: 43px; border-radius: 13px; }
  .step-icon svg { width: 22px; height: 22px; }
  .step-heading h2 { font-size: 20px; }
  .step-heading div > span { font-size: 11px; line-height: 1.5; }
  .major-grid, .two-columns { grid-template-columns: 1fr; gap: 0; }
  .major-grid { gap: 9px; }
  .option-card { min-height: 60px; }
  .contact-illustration { display: none; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .category-card { min-height: 71px; }
  .talent-chip span { padding: 8px 11px; }
  .category-experience-fields { padding: 16px 13px 0; }
  .category-certificate-block { padding: 16px 13px; }
  .certificate-row { grid-template-columns: 1fr 1fr; }
  .certificate-row input:nth-child(3) { grid-column: span 2; }
  .remove-certificate { position: absolute; top: -8px; right: -7px; width: 27px; height: 27px; border: 1px solid #e6edf5; border-radius: 50%; }
  .review-card { grid-template-columns: 38px 1fr auto; padding: 13px; }
  .form-actions { position: sticky; z-index: 5; bottom: 0; margin: 28px -19px 0; padding: 15px 19px max(15px, env(safe-area-inset-bottom)); backdrop-filter: blur(12px); }
  .next-btn { min-width: 128px; }
  .form-app footer { padding-bottom: env(safe-area-inset-bottom); }
  .success-card { padding: 48px 24px 36px; }
}

@media (max-width: 390px) {
  .mini-brand small { display: none; }
  .welcome-meta { flex-direction: column; gap: 8px; }
  .category-grid { gap: 7px; }
  .category-card strong { font-size: 10px; }
  .form-actions .back-btn { padding-left: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
