 :root {
  --ink: #101828;
  --text: #263244;
  --muted: #667085;
  --line: rgba(216, 225, 238, .82);
  --paper: rgba(255, 255, 255, .86);
  --brand: #2457d6;
  --brand-deep: #172554;
  --teal: #0f766e;
  --mint: #2f9f8f;
  --violet: #6d5dfc;
  --amber: #c9822a;
  --shadow: 0 28px 80px rgba(16, 24, 40, .16);
  --shadow-soft: 0 12px 34px rgba(16, 24, 40, .08);
}
* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font: 14px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background:
    linear-gradient(120deg, rgba(36, 87, 214, .16), transparent 30%),
    linear-gradient(240deg, rgba(47, 159, 143, .14), transparent 32%),
    conic-gradient(from 220deg at 54% 38%, #f8fbff, #edf4ff, #f4f1ff, #fff8ed, #eefaf6, #f8fbff);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 24, 40, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.14));
}
.choice-page::after {
  content: "";
  position: fixed;
  inset: -25% -10%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(36,87,214,.15), rgba(109,93,252,.10), rgba(47,159,143,.13), rgba(201,130,42,.10));
  filter: blur(42px) saturate(1.2);
  animation: colorShift 16s ease-in-out infinite alternate;
}
@keyframes colorShift {
  from { transform: translate3d(-2%, -1%, 0) rotate(0deg); opacity: .72; }
  to { transform: translate3d(2%, 1%, 0) rotate(4deg); opacity: .94; }
}
.site-header {
  width: min(1180px, calc(100% - 34px));
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 12px 0;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 10px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}
.brand-symbol img { width: 100%; height: 100%; object-fit: cover; }
.site-brand strong { display: block; font-size: 22px; line-height: 1; font-weight: 950; }
.site-brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; font-weight: 900; }
.header-note {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 999px;
  color: #475467;
  background: rgba(255,255,255,.66);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(16px) saturate(1.2);
}
.choice-shell {
  width: min(1180px, calc(100% - 34px));
  min-height: calc(100vh - 170px);
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: 22px 0 42px;
}
.choice-hero {
  display: grid;
  gap: 26px;
}
.choice-copy {
  max-width: 850px;
  display: grid;
  gap: 14px;
}
.eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.choice-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}
.choice-copy p {
  max-width: 780px;
  margin: 0;
  color: #526071;
  font-size: 17px;
  line-height: 1.82;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.choice-card {
  position: relative;
  min-height: 408px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(1.2);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.34), transparent 42%, rgba(255,255,255,.22));
}
.choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21,94,239,.34);
  box-shadow: var(--shadow);
}
.candidate-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16,24,40,.97), rgba(36,87,214,.90) 54%, rgba(47,159,143,.88)),
    rgba(16,24,40,.88);
}
.recruiter-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(244,241,255,.78) 44%, rgba(255,248,237,.82) 72%, rgba(236,253,246,.82)),
    rgba(255,255,255,.84);
}
.card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #475467;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.candidate-card .card-topline { color: #dbeafe; }
.card-topline em { font-style: normal; opacity: .72; }
.choice-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.02;
  letter-spacing: 0;
}
.choice-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: #526071;
  font-size: 15px;
  line-height: 1.78;
}
.candidate-card p { color: #e6f0ff; }
.feature-line {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-line span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(201,211,225,.82);
  border-radius: 999px;
  color: #475467;
  background: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 900;
}
.candidate-card .feature-line span {
  color: #eff6ff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.13);
}
.choice-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 10px;
  margin-top: auto;
}
.choice-actions.single-action { grid-template-columns: 1fr; }
.choice-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 950;
  transition: transform .18s ease, box-shadow .18s ease;
}
.choice-button:hover { transform: translateY(-2px); }
.choice-button.primary {
  color: #fff;
  border-color: rgba(255,255,255,.58);
  background: linear-gradient(180deg, #3b76ff, #2457d6);
  box-shadow: 0 18px 36px rgba(36,87,214,.28), inset 0 1px 0 rgba(255,255,255,.28);
}
.choice-button.primary.dark {
  border-color: rgba(16,24,40,.18);
  background: linear-gradient(180deg, #172554, #344054);
  box-shadow: 0 18px 36px rgba(16,24,40,.22), inset 0 1px 0 rgba(255,255,255,.18);
}
.choice-button.secondary {
  color: #111827;
  border-color: rgba(16,24,40,.12);
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 26px rgba(16,24,40,.11), inset 0 1px 0 rgba(255,255,255,.7);
}

.compact-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.compact-intro article {
  display: grid;
  gap: 5px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 14px;
  color: #526071;
  background: rgba(255,255,255,.64);
  backdrop-filter: blur(16px) saturate(1.2);
}
.compact-intro strong {
  color: #1d2939;
  font-size: 15px;
  font-weight: 950;
}
.compact-intro span {
  font-size: 13px;
  line-height: 1.68;
}

.boundary-note {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 14px;
  color: #526071;
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(18px) saturate(1.2);
}
.boundary-note strong { color: #1d2939; font-weight: 950; }
.site-footer {
  width: min(1180px, calc(100% - 34px));
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 18px 0 24px;
  color: #667085;
}
.site-footer div { display: grid; gap: 4px; }
.site-footer strong { color: #344054; }
.site-footer span { font-size: 12px; }
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 850;
}
.site-footer a { color: #475467; }
.site-footer a:hover { color: var(--brand); }
@media (max-width: 900px) {
  .site-header,
  .site-footer { align-items: flex-start; flex-direction: column; }
  .choice-grid,
  .compact-intro { grid-template-columns: 1fr; }
  .choice-card { min-height: 360px; }
  .boundary-note { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .choice-shell { width: calc(100% - 20px); padding-top: 8px; }
  .site-header,
  .site-footer { width: calc(100% - 20px); }
  .choice-copy h1 { font-size: 40px; }
  .choice-copy p { font-size: 15px; }
  .choice-card { padding: 20px; border-radius: 18px; }
  .choice-actions { grid-template-columns: 1fr; }
  .header-note { display: none; }
}


/* 20260529: simplified role-choice cover */
.choice-hero { gap: 22px; }
.choice-copy { max-width: 980px; }
.choice-copy h1 {
  max-width: 980px;
  font-size: clamp(48px, 7.2vw, 86px);
  line-height: 1;
}
.choice-card {
  min-height: 376px;
  gap: 24px;
  border-radius: 20px;
}
.choice-card h2 {
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1;
}
.feature-line {
  gap: 12px;
  margin-top: 4px;
}
.feature-line span {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
  letter-spacing: 0;
}
.choice-actions { gap: 12px; }
.choice-button {
  min-height: 64px;
  border-width: 2px;
  font-size: 16px;
}
.choice-button.secondary { border-color: rgba(16,24,40,.18); }
@media (max-width: 900px) {
  .choice-card { min-height: 328px; }
  .choice-copy h1 { font-size: clamp(42px, 11vw, 68px); }
}
@media (max-width: 560px) {
  .choice-copy h1 { font-size: 38px; }
  .choice-card h2 { font-size: 38px; }
  .feature-line { gap: 8px; }
  .feature-line span { min-height: 36px; padding: 0 12px; }
  .choice-button { min-height: 58px; font-size: 15px; }
}
