:root {
  --navy: #0B2545;
  --navy-700: #13315C;
  --navy-900: #071A31;
  --gold: #C9A227;
  --gold-600: #A8861C;
  --gold-700: #8A660E;
  --gold-soft: #F6EFD6;
  --ink: #1B2430;
  --muted: #5B6573;
  --line: #E2E6EC;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FB;
  --ok: #1E7F4F;
  --warn: #B7791F;
  --err: #B42318;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow: 0 8px 30px rgba(11, 37, 69, .08);
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, .05), 0 2px 8px rgba(11, 37, 69, .04);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, .16), 0 8px 20px rgba(11, 37, 69, .08);
  --maxw: 1180px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .28s;
  --header-h: 72px;
  --focus: 0 0 0 3px rgba(201, 162, 39, .55);
  --gold-glow: radial-gradient(60% 70% at 85% 0%, rgba(201, 162, 39, .28), transparent 60%);
  --navy-grad: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%);
  --ok-soft: #E4F5EC;
  --warn-soft: #FBF1DC;
  --err-soft: #FBE7E4;
  --info-soft: #E7EEF8;
}
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { flex: 1 0 auto; }
main:focus { outline: none; }
img, svg, video { max-width: 100%; height: auto; display: block; }
img { color: var(--muted); font-size: .85rem; }
a { color: var(--navy-700); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .18em; transition: color var(--dur) var(--ease); }
a:hover { color: var(--navy); text-decoration-thickness: 2px; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
address { font-style: normal; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
strong { font-weight: 650; }
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold-soft); color: var(--navy-900); }
h1, h2, h3, h4 {
  margin: 0 0 .5em;
  color: var(--navy);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.45rem + 2.1vw, 3.3rem); line-height: 1.06; letter-spacing: -.028em; }
h2 { font-size: clamp(1.6rem, 1.3rem + 1.15vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.1rem + .4vw, 1.5rem); letter-spacing: -.012em; }
h4 { font-size: 1.05rem; letter-spacing: 0; }
.display { font-size: clamp(2.2rem, 1.4rem + 3.1vw, 4.4rem); line-height: 1.05; letter-spacing: -.032em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  margin: 0 0 1rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-700);
}
.eyebrow::before { content: ""; width: 1.75rem; height: 2px; background: var(--gold); border-radius: 2px; }
.section-dark .eyebrow, .hero-dark .eyebrow, .cta-band .eyebrow { color: var(--gold); }
.lead { font-size: clamp(1.1rem, 1.02rem + .35vw, 1.3rem); line-height: 1.55; color: var(--muted); max-width: 62ch; }
.section-dark .lead, .hero-dark .lead, .cta-band .lead { color: rgba(255, 255, 255, .8); }
.kicker { font-size: .95rem; font-weight: 600; color: var(--navy-700); margin: 0 0 .5rem; }
.muted { color: var(--muted); }
.gold { color: var(--gold-700); }
.small { font-size: .9rem; }
.text-center { text-align: center; }
.placeholder {
  color: var(--muted);
  border-bottom: 1px dashed var(--gold-600);
  padding-bottom: .05em;
}
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { margin-bottom: 1.2em; }
.prose li + li { margin-top: .35em; }
.prose a { word-break: break-word; }
.divider-gold { width: 3.5rem; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-600)); margin: 1.25rem 0; }
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, 820px); margin-inline: auto; }
.container-wide { width: min(100% - 2.5rem, 1380px); margin-inline: auto; }
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid { gap: 1.75rem; }
}
@media (min-width: 640px) and (max-width: 899px) {
  .cols-4 > :nth-child(odd):last-child { grid-column: span 2; }
}
.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 2rem; }
.cluster { display: flex; flex-wrap: wrap; gap: .75rem 1rem; align-items: center; }
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.sidebar-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: start; }
.sidebar-main { min-width: 0; }
@media (min-width: 1180px) { .sidebar-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 3rem; } }
.sidebar-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); }
@media (max-width: 1179px) { .sidebar-aside { position: static; order: -1; } }
.aside-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.aside-card h2, .aside-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.section { padding: clamp(3.5rem, 5vw + 1.5rem, 6.5rem) 0; position: relative; }
.section-tight { padding: clamp(2.5rem, 3vw + 1rem, 4rem) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark {
  color: #fff;
  background: var(--gold-glow), radial-gradient(45% 60% at 5% 100%, rgba(19, 49, 92, .95), transparent 70%), var(--navy-grad);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark a:not(.btn) { color: #fff; text-decoration-color: rgba(201, 162, 39, .7); }
.section-dark a:not(.btn):hover { color: var(--gold-soft); }
.section-dark .muted { color: rgba(255, 255, 255, .72); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 3vw, 3.5rem); }
.section-head-center { margin-inline: auto; text-align: center; }
.section-head-center .eyebrow { justify-content: center; }
.section-head-center .lead { margin-inline: auto; }
.section-head h2 { margin-bottom: .6em; }
.section-head .lead { margin-bottom: 0; }
.icon {
  width: 1.25em; height: 1.25em;
  flex: none;
  display: inline-block;
  vertical-align: -.22em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sm { width: 1em; height: 1em; }
.icon-lg { width: 1.75rem; height: 1.75rem; }
.icon-xl { width: 2.5rem; height: 2.5rem; }
.icon-box {
  width: 3.25rem; height: 3.25rem;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  color: var(--navy);
  border: 1px solid rgba(201, 162, 39, .35);
  box-shadow: inset 0 1px 0 #fff;
}
.icon-box .icon { width: 1.6rem; height: 1.6rem; }
.icon-box-lg { width: 4rem; height: 4rem; border-radius: 18px; }
.icon-box-lg .icon { width: 2rem; height: 2rem; }
.section-dark .icon-box, .card-dark .icon-box { background: rgba(255, 255, 255, .08); color: var(--gold); border-color: rgba(255, 255, 255, .14); box-shadow: none; }
.skip-link {
  position: absolute; left: 1rem; top: -100px;
  z-index: 1000;
  padding: .75rem 1.1rem;
  background: var(--gold); color: var(--navy-900);
  font-weight: 700; border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 1rem; outline-offset: 2px; }
.preview-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0 .6rem;
  padding: .5rem 1rem;
  background: repeating-linear-gradient(-45deg, #FBE9A8 0 12px, #F6DE7E 12px 24px);
  color: var(--navy-900);
  font-size: .95rem; font-weight: 650;
  text-align: center;
}
.draft-banner {
  display: flex; align-items: flex-start; gap: .75rem;
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--warn-soft);
  border: 1px solid rgba(183, 121, 31, .35);
  border-left: 4px solid var(--warn);
  color: #6E4A0F;
  font-weight: 600;
}
.draft-banner .icon { margin-top: .2em; color: var(--warn); }
.draft-banner p { margin: 0; }
.lang-hint {
  background: var(--gold-soft);
  color: var(--navy);
  border-bottom: 1px solid rgba(201, 162, 39, .38);
}
.lang-hint-inner {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .2rem 1rem;
  min-height: 48px;
  padding-block: .25rem;
}
.lang-hint-text { margin: 0; font-size: .95rem; font-weight: 560; }
.lang-hint-action {
  display: inline-flex; align-items: center;
  min-height: 44px;
  color: var(--navy); font-size: .95rem; font-weight: 700;
  text-decoration-thickness: 2px; text-underline-offset: .2em;
}
.lang-hint-action:hover { color: var(--navy-900); }
.lang-hint-close {
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  margin-left: auto; margin-right: -.55rem;
  width: 44px; height: 44px;
  border: 0; border-radius: 999px;
  background: none; color: var(--navy-700);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang-hint-close:hover { background: rgba(11, 37, 69, .08); color: var(--navy-900); }
.lang-hint-close .icon { width: 1.15rem; height: 1.15rem; }
@media (prefers-reduced-motion: no-preference) {
  .lang-hint { animation: langHintIn .3s var(--ease) both; }
}
@keyframes langHintIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: saturate(170%) blur(14px);
  backdrop-filter: saturate(170%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: rgba(255, 255, 255, .97); }
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(11, 37, 69, .08);
  background: rgba(255, 255, 255, .9);
}
.header-inner {
  position: relative;
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; flex: none; align-items: center; text-decoration: none; margin-right: auto; padding: .35rem 0; }
.brand-logo { height: 40px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  display: inline-flex; align-items: center;
  padding: .55rem .7rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 560;
  font-size: .93rem;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-list a:hover { background: var(--bg-soft); color: var(--navy); }
.nav-list a[aria-current] { color: var(--navy); font-weight: 700; }
.nav-list a[aria-current]::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .25rem;
  height: 2px; border-radius: 2px; background: var(--gold);
}
.nav-tools { display: flex; align-items: center; gap: .85rem; }
.header-cta { white-space: nowrap; flex: none; }
.nav-login {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem .6rem;
  color: var(--navy-700); font-weight: 600; font-size: .95rem;
  text-decoration: none; border-radius: var(--radius-sm);
}
.nav-login:hover { background: var(--bg-soft); }
.nav-toggle {
  display: none;
  align-items: center; gap: .5rem;
  min-height: 44px; padding: .5rem .8rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--navy);
  font-weight: 650; font-size: .95rem;
  cursor: pointer;
}
.nav-toggle .nav-icon-close { display: none; }
.js .nav-toggle-label { display: none !important; }
@media (min-width: 1280px) {
  .site-header .container, .site-header .header-inner { width: min(100% - 2.5rem, 1320px); }
  .site-nav { gap: 1rem; }
  .nav-list a { padding: .55rem .5rem; font-size: .9rem; }
  .nav-list a[aria-current]::after { left: .6rem; right: .6rem; }
  .nav-tools { gap: .6rem; }
  .nav-login { padding: .55rem .45rem; font-size: .9rem; }
  .header-cta { padding-inline: .85rem; }
  .site-header .lang-switch-nav { display: none; }
  .site-header .lang-menu { display: block; }
}
@media (min-width: 1280px) and (max-width: 1379px) {
  .site-nav { gap: .6rem; }
  .nav-list a { padding-inline: .25rem; font-size: .88rem; }
  .nav-list a[aria-current]::after { left: .3rem; right: .3rem; }
  .nav-tools { gap: .4rem; }
  .nav-login { padding-inline: .35rem; }
}
@media (max-width: 1279px) {
  .header-inner { gap: .75rem; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 1rem;
    padding: 1rem 1.25rem 1.5rem;
    max-height: calc(100vh - var(--header-h) - 1rem);
    max-height: calc(100dvh - var(--header-h) - 1rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  body:has(> .preview-bar) .site-nav,
  body:has(> .lang-hint-slot > .lang-hint) .site-nav { max-height: calc(100dvh - var(--header-h) - 3.5rem); }
  .nav-toggle-input:checked ~ .site-nav, .site-header.nav-open .site-nav { display: flex; animation: navDown .25s var(--ease); }
  .nav-toggle-input:checked ~ .nav-toggle .nav-icon-open, .site-header.nav-open .nav-toggle .nav-icon-open { display: none; }
  .nav-toggle-input:checked ~ .nav-toggle .nav-icon-close, .site-header.nav-open .nav-toggle .nav-icon-close { display: inline-block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav-list a { padding: .85rem .9rem; font-size: 1.05rem; min-height: 48px; }
  .nav-list a[aria-current]::after { left: .9rem; right: auto; width: 2rem; bottom: .45rem; }
  .nav-tools { flex-wrap: wrap; justify-content: space-between; padding-top: .75rem; border-top: 1px solid var(--line); }
  .nav-tools .lang-switch a { min-width: 2.75rem; min-height: 2.75rem; }
  .nav-login { min-height: 44px; font-size: 1rem; }
  .header-cta { display: inline-flex; width: 100%; justify-content: center; order: 3; }
}
@keyframes navDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.lang-switch {
  display: inline-flex; align-items: center;
  padding: .2rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: #fff;
}
.lang-switch a {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-width: 2.35rem; min-height: 2.1rem; padding: 0 .6rem 0 .45rem;
  border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  color: var(--muted); text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang-switch a:hover { color: var(--navy); }
.lang-switch a[aria-current] { background: var(--navy); color: #fff; }
.site-footer .lang-switch { border-color: rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .06); }
.site-footer .lang-switch a { color: rgba(255, 255, 255, .7); }
.site-footer .lang-switch a[aria-current] { background: var(--gold); color: var(--navy-900); }
.lang-flag {
  position: relative; display: inline-block; flex: none;
  width: 1.25rem; height: .8334rem;
  border-radius: 2px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(11, 37, 69, .14);
}
.lang-flag svg { display: block; width: 100%; height: 100%; }
.lang-flag::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}
.lang-switch a[aria-current] .lang-flag { box-shadow: 0 0 0 1px rgba(255, 255, 255, .35); }
.lang-switch a:hover .lang-flag { box-shadow: 0 0 0 1px rgba(11, 37, 69, .3); }
.lang-hint-action .lang-flag { width: 1.375rem; height: .9167rem; margin-right: .5rem; }
.lang-menu { display: none; position: relative; }
.lang-menu-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  min-height: 2.5rem; padding: 0 .5rem 0 .55rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--navy);
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  list-style: none; cursor: pointer; white-space: nowrap;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.lang-menu-toggle::-webkit-details-marker { display: none; }
.lang-menu-toggle::marker { content: ""; }
.lang-menu-toggle:hover, .lang-menu[open] > .lang-menu-toggle { border-color: var(--navy); background: var(--bg-soft); }
.lang-menu-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.lang-menu-chevron { width: .9rem; height: .9rem; transition: transform var(--dur) var(--ease); }
.lang-menu[open] .lang-menu-chevron { transform: rotate(180deg); }
.lang-menu-list {
  position: absolute; right: 0; top: calc(100% + .5rem); z-index: 40;
  min-width: 12.5rem; margin: 0; padding: .35rem; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 44px rgba(11, 37, 69, .16);
}
@media (prefers-reduced-motion: no-preference) {
  .lang-menu[open] .lang-menu-list { animation: navDown .18s var(--ease); }
}
.lang-menu-list a {
  display: flex; align-items: center; gap: .65rem;
  min-height: 2.6rem; padding: .35rem .7rem .35rem .6rem;
  border-radius: 10px;
  color: var(--ink); font-size: .95rem; font-weight: 600; text-decoration: none; white-space: nowrap;
}
.lang-menu-list a:hover { background: var(--bg-soft); color: var(--navy); }
.lang-menu-list a[aria-current] { background: var(--navy); color: #fff; }
.lang-menu-list a[aria-current] .lang-flag { box-shadow: 0 0 0 1px rgba(255, 255, 255, .35); }
.lang-menu-name { flex: 1 1 auto; }
.lang-menu-code { font-size: .72rem; font-weight: 700; letter-spacing: .08em; opacity: .55; }
.lang-menu-list a[aria-current] .lang-menu-code { opacity: .8; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .75rem 1.4rem;
  border: 1.5px solid transparent; border-radius: 12px;
  font-weight: 650; font-size: 1rem; line-height: 1.2;
  text-decoration: none; text-align: center;
  text-wrap: balance;
  cursor: pointer; user-select: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn .icon { width: 1.15em; height: 1.15em; transition: transform var(--dur) var(--ease); }
.btn:hover .icon:last-child:not(:first-child) { transform: translateX(3px); }
.btn:hover .icon:first-child:not(:last-child) { transform: translateX(-3px); }
.btn:focus-visible { outline: none; box-shadow: var(--focus); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 6px 18px rgba(11, 37, 69, .22); }
.btn-primary:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11, 37, 69, .26); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(11, 37, 69, .2); }
.btn-gold, .section-dark .btn-primary, .hero-dark .btn-primary, .cta-band .btn-primary, .card-dark .btn-primary {
  background: linear-gradient(135deg, #D8B441, var(--gold) 55%, var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(201, 162, 39, .32);
}
.btn-gold:hover, .section-dark .btn-primary:hover, .hero-dark .btn-primary:hover, .cta-band .btn-primary:hover, .card-dark .btn-primary:hover {
  background: linear-gradient(135deg, #E1C15A, #D0AA2E 55%, var(--gold));
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 162, 39, .4);
}
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.section-dark .btn-secondary, .hero-dark .btn-secondary, .cta-band .btn-secondary, .card-dark .btn-secondary {
  background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55);
}
.section-dark .btn-secondary:hover, .hero-dark .btn-secondary:hover, .cta-band .btn-secondary:hover, .card-dark .btn-secondary:hover {
  background: rgba(255, 255, 255, .1); border-color: #fff; color: #fff; box-shadow: none;
}
.btn-ghost { background: transparent; color: var(--navy-700); }
.btn-ghost:hover { background: var(--bg-soft); color: var(--navy); }
.section-dark .btn-ghost, .cta-band .btn-ghost { color: #fff; }
.section-dark .btn-ghost:hover, .cta-band .btn-ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.btn-sm { min-height: 40px; padding: .5rem 1rem; font-size: .92rem; border-radius: 10px; }
.btn-lg { min-height: 56px; padding: .95rem 1.9rem; font-size: 1.07rem; border-radius: 14px; }
.btn-block { width: 100%; }
.btn-icon { padding: .6rem; min-width: 44px; }
.btn-icon .icon { width: 1.3em; height: 1.3em; }
.btn-group { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
@media (max-width: 639px) { .btn-group .btn { flex: 1 1 100%; } }
.card {
  position: relative;
  display: flex; flex-direction: column; gap: .75rem;
  padding: clamp(1.4rem, 2vw, 1.9rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201, 162, 39, .45); }
.card > :last-child { margin-bottom: 0; }
.card-title { font-size: 1.15rem; margin: 0; }
.card-text { color: var(--muted); margin: 0; }
.card-icon { margin-bottom: .25rem; }
.card-compact { padding: 1.1rem 1.25rem; gap: .5rem; }
.card-footer { margin-top: auto; padding-top: .75rem; display: flex; align-items: center; gap: .6rem; color: var(--navy-700); font-weight: 650; }
.card-soft { background: var(--bg-soft); box-shadow: none; }
.card-dark { background: var(--gold-glow), var(--navy-grad); color: #fff; border-color: rgba(255, 255, 255, .1); }
.card-dark .card-title, .card-dark h3, .card-dark h2 { color: #fff; }
.card-dark .card-text, .card-dark .muted { color: rgba(255, 255, 255, .75); }
.card-gradient {
  border: 1px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, var(--gold), rgba(201, 162, 39, .15) 45%, var(--navy-700)) border-box;
}
.card-gradient:hover { border-color: transparent; }
.card-link { text-decoration: none; color: inherit; }
.card-link:hover { color: inherit; }
.card-link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.card-link .card-footer { position: relative; z-index: 1; }
.card-link:hover .card-footer .icon { transform: translateX(3px); }
.card-link .card-footer .icon { transition: transform var(--dur) var(--ease); }
.card-link:focus-visible { outline: none; box-shadow: var(--focus), var(--shadow); }
.feature { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature .icon-box { flex: none; }
.feature-title { font-size: 1.1rem; margin: .15rem 0 .35rem; }
.feature-text { color: var(--muted); margin: 0; }
.section-dark .feature-text { color: rgba(255, 255, 255, .75); }
.industry-tile { align-items: flex-start; }
.industry-tile .card-title { margin-top: .25rem; }
.industry-roles { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; }
.industry-roles li { font-size: .82rem; color: var(--muted); padding: .15rem .55rem; background: var(--bg-soft); border-radius: 999px; border: 1px solid var(--line); }
.hero {
  position: relative;
  padding: clamp(3rem, 5vw + 1rem, 6rem) 0 clamp(3rem, 4vw + 1rem, 5rem);
  overflow: hidden;
  background:
    radial-gradient(55% 60% at 100% 0%, rgba(201, 162, 39, .16), transparent 60%),
    radial-gradient(45% 55% at 0% 100%, rgba(19, 49, 92, .09), transparent 65%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(11, 37, 69, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 37, 69, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(70% 70% at 70% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 70% at 70% 30%, #000 30%, transparent 100%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 3.5rem; } }
.hero-copy { max-width: 640px; min-width: 0; }
.hero-title { margin-bottom: 1.1rem; overflow-wrap: anywhere; }
@media (max-width: 639px) { .hero-title { hyphens: auto; } }
.hero-lead { margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
@media (max-width: 639px) { .hero-actions .btn { flex: 1 1 100%; } }
.hero-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; }
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; font-size: .93rem; font-weight: 600; color: var(--navy-700); }
.hero-trust .icon { color: var(--gold-600); width: 1.3em; height: 1.3em; }
.hero-art { position: relative; }
.hero-art img, .hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(11, 37, 69, .14)); }
.hero-note { font-size: .95rem; color: rgba(27, 36, 48, .92); margin-top: 1rem; }
.hero-compact { padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(2rem, 3vw, 3rem); }
.hero-compact .hero-inner { grid-template-columns: minmax(0, 1fr); }
.hero-compact .hero-copy { max-width: 780px; }
.hero-dark { color: #fff; background: var(--gold-glow), radial-gradient(45% 60% at 5% 100%, rgba(19, 49, 92, .95), transparent 70%), var(--navy-grad); }
.hero-dark::before { background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px); }
.hero-dark h1, .hero-dark h2 { color: #fff; }
.hero-dark .hero-trust li { color: rgba(255, 255, 255, .85); }
.hero-dark .hero-trust .icon { color: var(--gold); }
.hero-dark .hero-note { color: rgba(255, 255, 255, .88); }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step {
  position: relative;
  display: grid; grid-template-columns: 3.25rem minmax(0, 1fr); gap: 1.1rem;
  padding-bottom: 2.25rem;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute; left: calc(1.625rem - 1px); top: 3.4rem; bottom: .4rem;
  width: 2px; border-radius: 2px;
  background: linear-gradient(180deg, rgba(201, 162, 39, .6), var(--line));
}
.step:last-child::before { display: none; }
.step-num {
  counter-increment: step;
  width: 3.25rem; height: 3.25rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #E1C15A, var(--gold) 60%, var(--gold-600));
  color: var(--navy-900);
  font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 0 0 6px var(--gold-soft), 0 8px 18px rgba(201, 162, 39, .3);
}
.step-num:empty::before { content: counter(step); }
.step-body { padding-top: .35rem; }
.step-title { font-size: 1.15rem; margin: 0 0 .35rem; display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; }
.step-text { color: var(--muted); margin: 0; }
.step-who { margin-left: auto; }
.section-dark .step-text { color: rgba(255, 255, 255, .75); }
.section-dark .step-num { box-shadow: 0 0 0 6px rgba(201, 162, 39, .18); }
.section-dark .step::before { background: linear-gradient(180deg, rgba(201, 162, 39, .7), rgba(255, 255, 255, .12)); }
.steps-compact .step { padding-bottom: 1.4rem; grid-template-columns: 2.5rem 1fr; gap: .9rem; }
.steps-compact .step-num { width: 2.5rem; height: 2.5rem; font-size: .95rem; box-shadow: 0 0 0 4px var(--gold-soft); }
.steps-compact .step::before { left: calc(1.25rem - 1px); top: 2.7rem; }
.steps-compact .step-title { font-size: 1.02rem; }
.steps-compact .step-text { font-size: .95rem; }
@media (min-width: 900px) {
  .steps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 3rem; }
}
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--bg-soft); color: var(--navy-700);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.badge-gold, .badge-regalis { background: var(--gold-soft); color: #7A5C08; border-color: rgba(201, 162, 39, .45); }
.badge-navy, .badge-employer { background: var(--navy); color: #fff; border-color: var(--navy); }
.badge-candidate { background: #CCFBF1; color: #0F766E; border-color: rgba(15, 118, 110, .3); }
.badge-joint { background: #EDE9FE; color: #5B21B6; border-color: rgba(91, 33, 182, .3); }
.section-dark .badge { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .2); }
.section-dark .badge-gold, .section-dark .badge-regalis { background: rgba(201, 162, 39, .2); color: var(--gold); border-color: rgba(201, 162, 39, .5); }
.pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .28rem .75rem .28rem .6rem;
  border-radius: 999px;
  font-size: .8rem; font-weight: 650; line-height: 1.4;
  white-space: nowrap;
  --pill-fg: #475569; --pill-bg: #F1F5F9;
  color: var(--pill-fg); background: var(--pill-bg);
}
.pill::before { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: currentColor; opacity: .9; }
.pill-slate { --pill-fg: #475569; --pill-bg: #F1F5F9; }
.pill-blue { --pill-fg: #1D4ED8; --pill-bg: #DBEAFE; }
.pill-indigo { --pill-fg: #4338CA; --pill-bg: #E0E7FF; }
.pill-violet { --pill-fg: #6D28D9; --pill-bg: #EDE9FE; }
.pill-gold { --pill-fg: #7A5C08; --pill-bg: #F6EFD6; }
.pill-amber { --pill-fg: #92400E; --pill-bg: #FEF3C7; }
.pill-green { --pill-fg: #166534; --pill-bg: #DCFCE7; }
.pill-teal { --pill-fg: #0F766E; --pill-bg: #CCFBF1; }
.pill-red { --pill-fg: #991B1B; --pill-bg: #FEE2E2; }
.pill-gray { --pill-fg: #374151; --pill-bg: #F3F4F6; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.tag { display: inline-flex; align-items: center; gap: .35rem; padding: .3rem .7rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .85rem; color: var(--ink); }
.check-list, .icon-list, .link-list, .fact-list { list-style: none; margin: 0; padding: 0; }
.check-list li, .icon-list li { position: relative; padding-left: 2rem; margin-bottom: .6rem; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: .2em;
  width: 1.35rem; height: 1.35rem;
  border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B2545' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 12.5l4 4 8-9'/></svg>") center / 70% no-repeat;
}
.section-dark .check-list li::before, .card-dark .check-list li::before {
  background-color: rgba(201, 162, 39, .18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 12.5l4 4 8-9'/></svg>");
}
.icon-list li .icon { position: absolute; left: 0; top: .15em; color: var(--gold-600); }
.link-list li { margin-bottom: .5rem; }
.link-list a { display: inline-flex; align-items: center; gap: .4rem; }
.fact-list { display: grid; gap: .75rem 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .fact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.fact-list div { padding: .9rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.fact-list dt { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.fact-list dd { margin: 0; font-weight: 600; color: var(--navy); }
.numbered { counter-reset: n; list-style: none; padding: 0; margin: 0; }
.numbered li { counter-increment: n; position: relative; padding-left: 2.6rem; margin-bottom: .9rem; }
.numbered li::before {
  content: counter(n);
  position: absolute; left: 0; top: .05em;
  width: 1.9rem; height: 1.9rem;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--navy); color: #fff;
  font-size: .85rem; font-weight: 700;
}
.breadcrumb { margin: 0; padding: 1rem 0 0; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: .25rem .5rem; font-size: .9rem; color: var(--muted); }
.breadcrumb li { display: inline-flex; align-items: center; gap: .5rem; }
.breadcrumb li + li::before { content: ""; width: .35rem; height: .35rem; border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted); transform: rotate(-45deg); opacity: .7; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--navy); font-weight: 600; }
.cta-band {
  position: relative; overflow: hidden;
  padding: clamp(2.25rem, 4vw, 3.75rem);
  border-radius: var(--radius-lg);
  color: #fff;
  background: radial-gradient(60% 90% at 90% 10%, rgba(201, 162, 39, .32), transparent 60%), radial-gradient(40% 60% at 5% 100%, rgba(19, 49, 92, 1), transparent 70%), var(--navy-grad);
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ""; position: absolute; right: -8%; top: -40%;
  width: 45%; aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, .28);
  box-shadow: inset 0 0 0 40px rgba(201, 162, 39, .05);
  pointer-events: none;
}
.cta-band h2, .cta-band h3 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .8); }
.cta-band-inner { position: relative; display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 900px) { .cta-band-inner { grid-template-columns: minmax(0, 1.4fr) auto; } }
.cta-band-inner p:last-child { margin: 0; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
@media (max-width: 639px) { .cta-band-actions .btn { flex: 1 1 100%; } }
.faq-cat + .faq-cat { margin-top: 2.5rem; }
.faq-cat-title { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.faq-audience { font-size: .75rem; }
.faq-item, .faq details {
  margin: 0 0 .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq-item[open], .faq details[open] { border-color: rgba(201, 162, 39, .55); box-shadow: var(--shadow-sm); }
.faq-q, .faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.25rem;
  min-height: 48px;
  cursor: pointer;
  font-weight: 650; color: var(--navy);
  list-style: none;
  border-radius: var(--radius-sm);
}
.faq-q::-webkit-details-marker, .faq summary::-webkit-details-marker { display: none; }
.faq-q::marker, .faq summary::marker { content: ""; }
.faq-q:hover, .faq summary:hover { background: var(--bg-soft); }
.faq-q .icon, .faq summary .icon { flex: none; color: var(--gold-600); transition: transform .35s var(--ease); }
details[open] > .faq-q .icon, .faq details[open] > summary .icon { transform: rotate(180deg); }
.faq-a { padding: 0 1.25rem 1.25rem; color: var(--ink); animation: fadeDown .35s var(--ease); }
.faq-a p:last-child { margin-bottom: 0; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.form-shell { position: relative; min-width: 0; }
.form {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.required-hint { font-size: .85rem; color: var(--muted); margin: 0 0 1.25rem; }
.req { color: var(--err); margin-left: .2rem; font-weight: 700; }
.stepper { display: flex; gap: .4rem; list-style: none; margin: 0 0 1rem; padding: 0; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.stepper::-webkit-scrollbar { display: none; }
.stepper-item {
  flex: 1 1 0; min-width: 2.25rem;
  display: flex; align-items: center; gap: .55rem;
  color: var(--muted); font-size: .84rem; font-weight: 600;
  position: relative;
}
.stepper-num {
  flex: none;
  width: 2.1rem; height: 2.1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
  font-size: .85rem; font-weight: 700;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.stepper-label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stepper-item.is-current { color: var(--navy); }
.stepper-item.is-current .stepper-num { border-color: var(--navy); background: var(--navy); color: #fff; box-shadow: 0 0 0 4px rgba(11, 37, 69, .12); }
.stepper-item.is-done .stepper-num { border-color: var(--gold); background: var(--gold); color: var(--navy-900); }
.stepper-item.is-done .stepper-label { color: var(--ink); }
.stepper-item.is-clickable { cursor: pointer; }
.stepper-item:not(.is-current) .stepper-label { display: none; }
.stepper-item:not(.is-current) { flex: 0 0 auto; }
.stepper-item.is-current { flex: 1 1 auto; min-width: 0; }
@media (max-width: 639px) {
  .stepper { gap: .3rem; justify-content: space-between; margin-bottom: .75rem; }
  .stepper-item, .stepper-item.is-current { flex: 0 0 auto; min-width: 0; min-height: 44px; }
  .stepper-label { display: none; }
  .stepper-num { width: 1.8rem; height: 1.8rem; font-size: .78rem; border-width: 1.5px; }
  .stepper-item.is-current .stepper-num { box-shadow: 0 0 0 3px rgba(11, 37, 69, .12); }
}
.progress { height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; }
.progress-bar { height: 100%; width: var(--p, 0%); border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--gold-600)); transition: width .55s var(--ease); }
.progress-text { font-size: .85rem; color: var(--muted); margin: .5rem 0 1.5rem; }
.form-shell:not(.is-enhanced) .stepper, .form-shell:not(.is-enhanced) .progress, .form-shell:not(.is-enhanced) .progress-text,
.form-shell:not(.is-enhanced) .form-step-summary, .form-shell:not(.is-enhanced) .form-save-hint { display: none; }
.form-single .stepper, .form-single .progress, .form-single .progress-text { display: none; }
.form-step { border: 0; padding: 0; margin: 0 0 2rem; min-width: 0; }
.form-step-title {
  display: flex; align-items: center; gap: .75rem;
  padding: 0; margin: 0 0 .5rem;
  font-size: 1.35rem; font-weight: 750; color: var(--navy); letter-spacing: -.015em;
  width: 100%;
}
.form-step-title:focus { outline: none; }
.form-step-num {
  flex: none; width: 2.1rem; height: 2.1rem;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--gold-soft); color: var(--navy);
  font-size: .95rem; font-weight: 800;
}
.form-step-intro { color: var(--muted); margin: 0 0 1.5rem; max-width: 62ch; }
.form-shell:not(.is-enhanced) .form-step { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.form-shell:not(.is-enhanced) .form-step:first-of-type { border-top: 0; padding-top: 0; }
.form-grid { display: grid; gap: 1.25rem 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field { grid-column: 1 / -1; }
  .field-half { grid-column: auto; }
}
.field { min-width: 0; position: relative; }
.field-label {
  display: block;
  margin: 0 0 .45rem;
  font-weight: 650; font-size: .95rem; color: var(--navy);
}
.field-help { margin: -.2rem 0 .55rem; font-size: .88rem; color: var(--muted); line-height: 1.5; }
.input, .select, .textarea {
  display: block; width: 100%;
  min-height: 3rem;
  padding: .75rem 1rem;
  border: 1.5px solid #CBD2DB;
  border-radius: var(--radius-sm);
  background: #fff; color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  appearance: none;
}
.input::placeholder, .textarea::placeholder { color: #8B95A3; }
.input:hover, .select:hover, .textarea:hover { border-color: #A9B3C0; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--navy-700); box-shadow: 0 0 0 4px rgba(19, 49, 92, .13); }
.textarea { min-height: 7.5rem; resize: vertical; line-height: 1.55; }
.select {
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B2545' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right .9rem center; background-size: 1.1rem;
  cursor: pointer;
}
.input[type="date"] { min-height: 3rem; }
.input[type="number"] { -moz-appearance: textfield; }
.input[type="number"]::-webkit-inner-spin-button, .input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.money { display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(7.5rem, auto); align-items: stretch; }
.money-symbol {
  display: grid; place-items: center;
  padding: 0 .9rem;
  border: 1.5px solid #CBD2DB; border-right: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: var(--bg-soft); color: var(--muted); font-weight: 650;
}
.money-input { border-radius: 0; }
.money-unit { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; border-left: 0; }
.money-input:focus, .money-unit:focus { position: relative; z-index: 1; }
.choice-group { border: 0; padding: 0; margin: 0; min-width: 0; }
.choice-group legend { padding: 0; }
.choices { display: grid; gap: .6rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .choices-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .choices-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.choice {
  display: flex; align-items: flex-start; gap: .75rem;
  min-height: 3rem; padding: .7rem .95rem;
  border: 1.5px solid #CBD2DB; border-radius: var(--radius-sm);
  background: #fff; cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.choice:hover { border-color: #A9B3C0; background: var(--bg-soft); }
.choice input { flex: none; width: 1.25rem; height: 1.25rem; margin: .1rem 0 0; accent-color: var(--navy); cursor: pointer; }
.choice:has(input:checked) { border-color: var(--navy); background: #F2F5FA; box-shadow: inset 0 0 0 1px var(--navy); }
.choice:has(input:focus-visible) { box-shadow: var(--focus); }
.choice-text { line-height: 1.4; padding-top: .05rem; }
.check { display: flex; align-items: flex-start; gap: .8rem; cursor: pointer; padding: .25rem 0; line-height: 1.5; }
.check input { flex: none; width: 1.35rem; height: 1.35rem; margin: .15rem 0 0; accent-color: var(--navy); cursor: pointer; }
.check-text { color: var(--ink); }
.dropzone {
  position: relative;
  border: 2px dashed #C3CBD6;
  border-radius: var(--radius);
  background: var(--bg-soft);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.dropzone:hover { border-color: var(--navy-700); }
.dropzone.is-dragover { border-color: var(--gold); background: var(--gold-soft); box-shadow: 0 0 0 4px rgba(201, 162, 39, .18); }
.dropzone:focus-within { border-color: var(--navy-700); box-shadow: 0 0 0 4px rgba(19, 49, 92, .13); }
.dropzone-input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 1; }
.dropzone.has-files .dropzone-input { height: auto; bottom: auto; }
.dropzone-label {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem;
  padding: 1.75rem 1.25rem;
  text-align: center; color: var(--muted);
  pointer-events: none;
}
.dropzone-icon { width: 2rem; height: 2rem; color: var(--navy-700); margin-bottom: .25rem; }
.dropzone-cta { font-weight: 650; color: var(--navy); }
.dropzone-meta { font-size: .85rem; }
.file-list { list-style: none; margin: 0; padding: 0 1rem; position: relative; z-index: 2; }
.file-list:empty { display: none; }
.file-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem .85rem; margin-bottom: .6rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  animation: fadeDown .3s var(--ease);
}
.file-list .file-item:last-child { margin-bottom: 1rem; }
.file-item .icon { color: var(--navy-700); }
.file-name { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; font-size: .95rem; }
.file-size { flex: none; font-size: .82rem; color: var(--muted); }
.file-remove {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border: 0; border-radius: 50%; background: transparent; color: var(--muted);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.file-remove:hover { background: var(--err-soft); color: var(--err); }
.field-error {
  display: flex; align-items: flex-start; gap: .4rem;
  margin: .45rem 0 0;
  font-size: .88rem; font-weight: 600; color: var(--err);
}
.field-error:empty { display: none; }
.field-error::before { content: "!"; flex: none; width: 1.1rem; height: 1.1rem; margin-top: .1rem; display: grid; place-items: center; border-radius: 50%; background: var(--err); color: #fff; font-size: .72rem; font-weight: 800; }
.field.has-error .input, .field.has-error .select, .field.has-error .textarea, .field.has-error .choice, .field.has-error .dropzone, .field.has-error .money-symbol { border-color: var(--err); }
.field.has-error .input:focus, .field.has-error .select:focus, .field.has-error .textarea:focus { box-shadow: 0 0 0 4px rgba(180, 35, 24, .14); }
.field.has-error .field-label { color: var(--err); }
.hp { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .85rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.form-actions .btn-submit { margin-left: auto; }
.form-actions .btn-step-next { margin-left: auto; }
@media (max-width: 639px) {
  .form-actions .btn { flex: 1 1 100%; }
  .form-actions .btn-step-prev { order: 2; }
}
.btn-submit.is-busy .btn-label { opacity: .85; }
.btn-submit.is-busy .icon { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-save-hint { font-size: .82rem; color: var(--muted); margin: .9rem 0 0; }
.form-error { margin-top: 1.5rem; }
.form-noscript { margin-top: 1rem; }
.form-summary { display: grid; gap: 1.25rem; }
.summary-group { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.summary-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1.2rem; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.summary-head h2, .summary-head h3 { margin: 0; font-size: 1.02rem; }
.summary-edit { display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .7rem; border: 0; border-radius: var(--radius-sm); background: transparent; color: var(--navy-700); font-weight: 650; font-size: .9rem; cursor: pointer; }
.summary-edit:hover { background: #fff; }
.summary-list { margin: 0; padding: .5rem 1.2rem; display: grid; grid-template-columns: 1fr; gap: 0; }
.summary-list > div { display: grid; gap: .15rem .75rem; padding: .65rem 0; border-bottom: 1px solid var(--line); }
.summary-list > div:last-child { border-bottom: 0; }
@media (min-width: 640px) { .summary-list > div { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); } }
.summary-list dt { font-size: .88rem; color: var(--muted); }
.summary-list dd { margin: 0; font-weight: 600; word-break: break-word; }
.summary-empty { color: var(--muted); font-style: italic; }
.form-success {
  display: none;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(30, 127, 79, .3);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-success:target, .form-success.is-visible { display: block; animation: fadeDown .4s var(--ease); }
.form-shell:has(.form-success:target) .form, .form-shell.is-sent .form { display: none; }
.form-success:focus { outline: none; }
.success-mark { display: grid; place-items: center; margin-bottom: 1.25rem; }
.success-svg { width: 5.5rem; height: 5.5rem; }
.success-circle { fill: var(--ok-soft); stroke: var(--ok); stroke-width: 3; stroke-dasharray: 185; stroke-dashoffset: 185; animation: draw .8s var(--ease) forwards; }
.success-check { fill: none; stroke: var(--ok); stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .5s .55s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.success-title { margin-bottom: .5rem; }
.success-text { max-width: 58ch; margin: 0 auto 1.25rem; color: var(--ink); font-size: 1.05rem; }
.form-ref { display: inline-block; padding: .1rem .55rem; border-radius: 6px; background: var(--gold-soft); color: var(--navy-900); font-variant-numeric: tabular-nums; letter-spacing: .03em; }
.ref-copy .icon-copied { display: none; }
.ref-copy.is-copied .icon-copy { display: none; }
.ref-copy.is-copied .icon-copied { display: inline-block; color: var(--ok); }
.ref-copy.is-copied { border-color: var(--ok); color: var(--ok); }
.auth-card { max-width: 480px; margin-inline: auto; }
.auth-card .form { padding: clamp(1.5rem, 3vw, 2.25rem); }
.portal { display: grid; gap: 1.5rem; }
.portal-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.portal-head h2 { margin: 0; }
.portal-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.25rem, 2.5vw, 1.75rem); box-shadow: var(--shadow-sm); }
.portal-card h2, .portal-card h3 { font-size: 1.1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.portal-grid { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .portal-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: start; } }
.status-row { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem; padding: .9rem 1.1rem; background: var(--bg-soft); border-radius: var(--radius-sm); font-size: .95rem; }
.status-row .ref { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--navy); }
.doc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.doc-item { display: flex; align-items: center; gap: .85rem; padding: .75rem .95rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.doc-item .icon { color: var(--navy-700); flex: none; }
.doc-body { flex: 1 1 auto; min-width: 0; }
.doc-name { display: block; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.doc-meta { display: block; font-size: .82rem; color: var(--muted); }
.doc-actions { display: flex; gap: .35rem; flex: none; }
.portal-passkeys { display: grid; gap: .75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.portal-passkeys h3 { margin-bottom: 0; }
.upload-box { display: grid; gap: .85rem; }
.upload-progress { height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.upload-progress > div { height: 100%; width: var(--p, 0%); background: linear-gradient(90deg, var(--gold), var(--gold-600)); transition: width .2s ease; }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline-item { position: relative; display: grid; grid-template-columns: 1.5rem minmax(0, 1fr); gap: .75rem; padding-bottom: 1.1rem; }
.timeline-item::before { content: ""; position: absolute; left: calc(.75rem - 1px); top: 1.3rem; bottom: 0; width: 2px; background: var(--line); }
.timeline-item:last-child::before { display: none; }
.timeline-dot { width: 1.5rem; height: 1.5rem; border-radius: 50%; border: 2px solid var(--gold); background: #fff; display: grid; place-items: center; margin-top: .1rem; }
.timeline-dot::after { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--gold); }
.timeline-item.is-current .timeline-dot { background: var(--gold); }
.timeline-item.is-current .timeline-dot::after { background: var(--navy-900); }
.timeline-body { font-size: .95rem; }
.timeline-body strong { display: block; color: var(--navy); }
.timeline-body time, .timeline-body .muted { font-size: .84rem; }
.skeleton { position: relative; overflow: hidden; background: var(--bg-soft); border-radius: var(--radius-sm); min-height: 1.1rem; color: transparent; }
.skeleton::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .8), transparent); animation: shimmer 1.4s infinite; }
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.toast { position: fixed; left: 50%; bottom: 1.5rem; z-index: 1200; transform: translateX(-50%); padding: .8rem 1.25rem; background: var(--navy-900); color: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); font-weight: 600; animation: fadeDown .3s var(--ease); }
.portal > *, .portal-grid > *, .doc-list > *, .case-card > *, .candidate-card > *, .feedback-form > *, .interview-card > *,
.interview-card-list > *, .video-box > *, .doc-requirements-body > *, .checklist-text > *, .progress-ring-body > *, .stack > *,
.portal-passkeys > * { min-width: 0; }
.progress-ring-card { display: grid; gap: 1.25rem; align-items: start; }
@media (min-width: 640px) { .progress-ring-card { grid-template-columns: auto minmax(0, 1fr); gap: 1.75rem; } }
.progress-ring { position: relative; width: 8.5rem; height: 8.5rem; margin-inline: auto; display: grid; place-items: center; }
.progress-ring-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.progress-ring-track { fill: none; stroke: var(--line); stroke-width: 10; }
.progress-ring-bar { fill: none; stroke: var(--gold); stroke-width: 10; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .9s var(--ease); }
.progress-ring.is-complete .progress-ring-bar { stroke: var(--ok); }
.progress-ring-value { position: relative; display: flex; align-items: baseline; gap: .1rem; color: var(--navy); font-weight: 800; letter-spacing: -.03em; }
.progress-ring-value strong { font-size: 2.1rem; line-height: 1; font-variant-numeric: tabular-nums; }
.progress-ring-value small { font-size: 1rem; font-weight: 700; color: var(--muted); }
.progress-ring-body { min-width: 0; }
.progress-ring-body h2 { margin-bottom: .35rem; }
.progress-ring-hint { color: var(--muted); margin: 0 0 .5rem; }
.progress-ring-subtitle { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 1.1rem 0 .5rem; }
.progress-ring-missing, .progress-ring-hints { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.progress-ring-missing-item { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .75rem; padding: .5rem .5rem .5rem .85rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-soft); }
.progress-ring-missing-label { flex: 1 1 10rem; min-width: 0; font-weight: 600; }
.progress-ring-missing-item .btn { margin-left: auto; }
.progress-ring-hints li { display: flex; gap: .6rem; align-items: flex-start; line-height: 1.5; }
.progress-ring-hints .icon { flex: none; color: var(--gold-600); margin-top: .15rem; }
.checklist-intro { color: var(--muted); }
.checklist-progress { font-size: .9rem; font-weight: 600; color: var(--navy); margin: 0 0 1rem; }
.checklist-support { padding: 1rem 1.2rem; border-radius: var(--radius-sm); background: var(--gold-soft); border: 1px solid rgba(201, 162, 39, .4); margin-bottom: 1.25rem; }
.checklist-support h3 { display: flex; align-items: center; gap: .5rem; font-size: 1rem; margin: 0 0 .5rem; color: var(--navy-900); }
.checklist-support-head { margin: 0 0 .5rem; font-weight: 600; }
.checklist-support-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.checklist-support-list li { display: flex; gap: .5rem; align-items: flex-start; line-height: 1.45; }
.checklist-support-list .icon { flex: none; color: var(--gold-600); margin-top: .2rem; }
.checklist-stage { padding: 1rem 0 .35rem; border-top: 1px solid var(--line); }
.checklist-stage.is-current { margin: .5rem 0 0; padding: 1rem .9rem .6rem; border: 1px solid rgba(201, 162, 39, .5); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); background: #FFFDF6; }
.checklist-stage-title { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .75rem; font-size: 1rem; margin: 0 0 .5rem; color: var(--navy); }
.checklist-stage:not(.is-current) .checklist-stage-title { color: var(--muted); }
.checklist-items { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; }
.checklist-label { display: flex; gap: .8rem; align-items: flex-start; padding: .5rem .6rem; border-radius: var(--radius-sm); cursor: pointer; min-height: 44px; }
.checklist-label:hover { background: var(--bg-soft); }
.checklist-label input { flex: none; width: 1.35rem; height: 1.35rem; margin: .2rem 0 0; accent-color: var(--navy); cursor: pointer; }
.checklist-label:has(input:focus-visible) { box-shadow: var(--focus); }
.checklist-text { display: grid; gap: .15rem; min-width: 0; }
.checklist-item-title { font-weight: 600; }
.checklist-item-note { font-size: .9rem; color: var(--muted); line-height: 1.5; }
.checklist-item.is-done .checklist-item-title { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(91, 101, 115, .5); }
.checklist-source { justify-self: start; margin-top: .2rem; }
.checklist-source.is-employer { background: var(--navy); color: #fff; border-color: var(--navy); }
.checklist-source.is-regalis { background: var(--gold-soft); color: #7A5C08; border-color: rgba(201, 162, 39, .45); }
.checklist-source.is-candidate { background: #CCFBF1; color: #0F766E; border-color: rgba(15, 118, 110, .3); }
.case-card { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1rem, 2vw, 1.4rem); background: var(--bg-soft); display: grid; gap: 1rem; }
.case-card-head { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1rem; }
.case-card-title { display: flex; align-items: center; gap: .5rem; font-size: .95rem; margin: .25rem 0 0; color: var(--navy); }
.case-card-docs { display: grid; gap: .75rem; }
.case-card-docs .upload-box { padding: 1rem 1.1rem; border: 1px dashed #A9B3C0; border-radius: var(--radius-sm); background: #fff; }
.case-card-docs .upload-box h4, .video-box-upload h4 { display: flex; align-items: center; gap: .5rem; font-size: .95rem; margin: 0; color: var(--navy); }
.case-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: .15rem; }
.case-steps-item { display: grid; grid-template-columns: 1.6rem minmax(0, 1fr); gap: .65rem; align-items: center; position: relative; padding: .3rem 0; color: var(--muted); }
.case-steps-item::before { content: ""; position: absolute; left: calc(.8rem - 1px); top: 1.7rem; bottom: -.3rem; width: 2px; background: var(--line); }
.case-steps-item:last-child::before { display: none; }
.case-steps-dot { width: 1.6rem; height: 1.6rem; border-radius: 50%; border: 2px solid var(--line); background: #fff; display: grid; place-items: center; color: #fff; }
.case-steps-dot .icon { width: .95rem; height: .95rem; }
.case-steps-item.is-done { color: var(--ink); }
.case-steps-item.is-done .case-steps-dot { background: var(--ok); border-color: var(--ok); }
.case-steps-item.is-done::before { background: var(--ok); }
.case-steps-item.is-current { color: var(--navy); font-weight: 700; }
.case-steps-item.is-current .case-steps-dot { border-color: var(--gold); background: var(--gold); box-shadow: 0 0 0 4px rgba(201, 162, 39, .25); }
.case-steps-item.is-current .case-steps-dot::after { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--navy-900); }
.case-steps-label { min-width: 0; }
@media (min-width: 900px) {
  .case-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .25rem 1.25rem; }
  .case-steps-item::before { display: none; }
}
.candidate-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; display: grid; gap: .9rem; box-shadow: var(--shadow-sm); }
.candidate-card-head { display: flex; gap: .9rem; align-items: center; }
.candidate-card-avatar { flex: none; width: 3rem; height: 3rem; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: #fff; }
.candidate-card-avatar .icon { width: 1.5rem; height: 1.5rem; }
.candidate-card-ident { display: grid; gap: .1rem; min-width: 0; }
.candidate-card-title { font-size: 1.1rem; color: var(--navy); }
.candidate-card-sub { font-size: .9rem; }
.candidate-card-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.candidate-card-pill-label { font-weight: 500; opacity: .85; }
.candidate-card-facts { margin: 0; padding: 0; display: grid; gap: .5rem .9rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .candidate-card-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.candidate-card-facts > div { display: grid; gap: .1rem; padding: .5rem .7rem; border-radius: var(--radius-sm); background: var(--bg-soft); }
.candidate-card-facts dt { font-size: .8rem; color: var(--muted); }
.candidate-card-facts dd { margin: 0; font-weight: 600; word-break: break-word; }
.candidate-card-video h4 { font-size: .92rem; margin: 0 0 .5rem; color: var(--navy); }
.candidate-card-video video, .video-box-player { display: block; width: 100%; max-width: 420px; max-height: 60vh; border-radius: var(--radius-sm); background: var(--navy-900); }
.candidate-card-note { font-size: .88rem; margin: 0; }
.feedback-form-wrap { display: grid; }
.feedback-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; display: grid; gap: .9rem; }
.feedback-form-title { display: flex; align-items: center; gap: .5rem; font-size: 1rem; margin: 0; color: var(--navy); }
.feedback-form-choice { grid-template-columns: 1fr; }
@media (min-width: 640px) { .feedback-form-choice { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.feedback-form-option .choice-text { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.feedback-form-option.is-interested .icon { color: var(--ok); }
.feedback-form-option.is-declined .icon { color: var(--err); }
.feedback-form-option.is-interested:has(input:checked) { border-color: var(--ok); background: var(--ok-soft); box-shadow: inset 0 0 0 1px var(--ok); }
.feedback-form-option.is-declined:has(input:checked) { border-color: var(--err); background: var(--err-soft); box-shadow: inset 0 0 0 1px var(--err); }
.feedback-form .form-actions { margin-top: 0; }
.feedback-form.is-given { border-left: 4px solid var(--ok); }
.feedback-form.is-given.is-declined { border-left-color: var(--err); }
.feedback-form.is-given .feedback-form-title .icon { color: var(--ok); }
.feedback-form.is-given.is-declined .feedback-form-title .icon { color: var(--err); }
.feedback-form-decision { margin: 0; }
.feedback-form-comment { margin: 0; padding: .7rem .9rem; border-radius: var(--radius-sm); background: var(--bg-soft); white-space: pre-line; }
.feedback-form.is-given > .btn { justify-self: start; }
.interview-card-list { display: grid; gap: .9rem; }
.interview-card-list > .btn { justify-self: start; }
.interview-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; display: grid; gap: .75rem; }
.interview-card + .interview-card { margin-top: .75rem; }
.interview-card.is-confirmed { border-left: 4px solid var(--ok); }
.interview-card.is-declined, .interview-card.is-cancelled { border-left: 4px solid var(--line); }
.interview-card-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .5rem 1rem; }
.interview-card-head > div { display: grid; gap: .1rem; min-width: 0; }
.interview-card-title { color: var(--navy); }
.interview-card-meta { font-size: .9rem; }
.interview-card-tz { margin: 0; font-size: .85rem; color: var(--muted); }
.interview-card-slots { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.interview-card-slots > li { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-soft); }
.interview-card-slots > li.is-chosen { border-color: var(--ok); background: var(--ok-soft); }
.interview-card-time { display: grid; gap: .1rem; font-variant-numeric: tabular-nums; }
.interview-card-time time { font-weight: 600; color: var(--navy); }
.interview-card-time-alt { font-size: .88rem; color: var(--muted); }
.interview-card-chosen { margin: 0; display: grid; gap: .25rem; }
.interview-card-actions { gap: .5rem; }
.interview-card-buttons { margin-top: 0; }
.interview-card-note { margin: 0; padding: .7rem .9rem; border-radius: var(--radius-sm); background: var(--bg-soft); white-space: pre-line; }
.interview-card-decline { display: grid; gap: .75rem; padding-top: .75rem; border-top: 1px solid var(--line); }
.interview-card-decline .btn { justify-self: start; }
.interview-card-form { gap: 1rem; }
.interview-card-form .form-actions { margin-top: 0; }
.interview-card-slotset { border: 0; padding: 0; margin: 0; min-width: 0; display: grid; gap: .6rem; }
.interview-card-slotset legend { padding: 0; margin-bottom: .25rem; }
.interview-card-slotset > .btn { justify-self: start; }
.interview-card-slot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.interview-card-slot { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .6rem; align-items: end; padding: .6rem .7rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-soft); }
.interview-card-slot > .field { grid-column: auto; }
.interview-card-slot > .field:first-child { grid-column: 1 / -1; }
.interview-card-slot .field-label { margin-bottom: .3rem; }
.interview-card-slot .btn-icon { min-height: 48px; }
@media (min-width: 640px) {
  .interview-card-slot { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; }
  .interview-card-slot > .field, .interview-card-slot > .field:first-child { grid-column: auto; }
}
.doc-requirements-intro { font-size: .9rem; }
.doc-requirements-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.doc-requirements-item { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .5rem .8rem; align-items: start; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.doc-requirements-item.is-present { border-color: rgba(30, 127, 79, .35); background: var(--ok-soft); }
.doc-requirements-item.is-missing { border-color: rgba(183, 121, 31, .4); background: var(--warn-soft); }
.doc-requirements-state { display: grid; place-items: center; width: 1.6rem; height: 1.6rem; margin-top: .1rem; color: var(--muted); }
.doc-requirements-item.is-present .doc-requirements-state { color: var(--ok); }
.doc-requirements-item.is-missing .doc-requirements-state { color: var(--warn); }
.doc-requirements-body { display: grid; gap: .25rem; min-width: 0; }
.doc-requirements-title { font-weight: 600; }
.doc-requirements-note { font-size: .88rem; color: var(--muted); line-height: 1.5; }
.doc-requirements-meta { display: flex; flex-wrap: wrap; gap: .4rem .75rem; align-items: center; font-size: .85rem; }
.doc-requirements-status { font-weight: 600; }
.doc-requirements-item > .btn { grid-column: 2; justify-self: start; }
.video-box { display: grid; gap: .9rem; }
.video-box h2 { margin-bottom: 0; }
.video-box-frame { display: grid; justify-items: start; }
.video-box-empty { margin: 0; padding: 1rem 1.1rem; border: 1px dashed #A9B3C0; border-radius: var(--radius-sm); background: var(--bg-soft); }
.video-box-note { margin: 0; font-size: .88rem; }
.video-box-upload { display: grid; gap: .85rem; padding-top: .75rem; border-top: 1px solid var(--line); }
.video-box-upload > .btn { justify-self: start; }
.video-box-actions { gap: .5rem; }
.form-prefill { margin: 0 0 1.25rem; }
@media (max-width: 1279px) {
  .checklist-item-note, .doc-requirements-note, .interview-card-time-alt, .interview-card-tz, .candidate-card-note, .candidate-card-sub, .doc-requirements-meta, .video-box-note, .interview-card-meta, .doc-requirements-intro, .checklist-progress, .candidate-card-facts dt { font-size: .95rem; }
  .checklist-label, .progress-ring-missing-item .btn, .doc-requirements-item > .btn, .video-box-actions .btn, .interview-card-actions .btn { min-height: 44px; }
}
@media (forced-colors: active) {
  .progress-ring-bar, .progress-ring-track, .case-steps-dot { forced-color-adjust: none; }
}
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.table th, .table td { padding: .85rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.table th { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--bg-soft); white-space: nowrap; }
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: #FAFBFD; }
.table-compact th, .table-compact td { padding: .55rem .75rem; }
.table .num { text-align: right; font-variant-numeric: tabular-nums; }
.alert {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  border-left-width: 4px;
  background: var(--bg-soft);
  color: var(--ink);
}
.alert .icon { flex: none; margin-top: .15rem; }
.alert > div { min-width: 0; }
.alert a { overflow-wrap: anywhere; }
.alert p:last-child { margin: 0; }
.alert.ok { background: var(--ok-soft); border-color: rgba(30, 127, 79, .35); border-left-color: var(--ok); color: #135335; }
.alert.warn { background: var(--warn-soft); border-color: rgba(183, 121, 31, .35); border-left-color: var(--warn); color: #6E4A0F; }
.alert.err { background: var(--err-soft); border-color: rgba(180, 35, 24, .3); border-left-color: var(--err); color: #7F1A12; }
.alert.info { background: var(--info-soft); border-color: rgba(19, 49, 92, .25); border-left-color: var(--navy-700); color: var(--navy-900); }
.alert a { color: inherit; font-weight: 650; }
.notice { padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); background: var(--gold-soft); border: 1px solid rgba(201, 162, 39, .4); color: var(--navy-900); }
.site-footer {
  margin-top: auto;
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem;
  color: rgba(255, 255, 255, .8);
  background: radial-gradient(50% 60% at 100% 0%, rgba(201, 162, 39, .14), transparent 60%), linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%);
}
.site-footer a { color: rgba(255, 255, 255, .86); text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201, 162, 39, .6); }
.footer-grid { display: grid; gap: 2.25rem 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr)) 1.3fr; } .footer-brand { grid-column: auto; } }
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo img { height: 40px; width: auto; }
.footer-claim { color: var(--gold); font-weight: 650; margin-bottom: .75rem; }
.footer-about { color: rgba(255, 255, 255, .72); max-width: 36ch; margin: 0; }
.footer-title { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { display: inline-block; padding: .15rem 0; }
.footer-contact address { line-height: 1.7; }
.footer-contact strong { color: #fff; }
.footer-contact .placeholder { border-bottom-color: var(--gold); color: rgba(255, 255, 255, .7); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .12); display: grid; gap: 1rem; font-size: .88rem; color: rgba(255, 255, 255, .66); }
.footer-disclaimer { margin: 0; max-width: 70ch; }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem 1.5rem; }
.footer-legal p, .footer-copy { margin: 0; }
.footer-legal ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.not-found { text-align: center; padding: clamp(4rem, 8vw, 8rem) 0; }
.not-found h1 { margin-bottom: 1rem; }
.not-found .lead { margin: 0 auto 2rem; }
.not-found-code { font-size: clamp(4rem, 10vw, 7rem); font-weight: 800; line-height: 1; letter-spacing: -.05em; color: transparent; background: linear-gradient(135deg, var(--gold), var(--navy-700)); -webkit-background-clip: text; background-clip: text; margin-bottom: 1rem; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); will-change: opacity, transform; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal.is-visible.reveal-done { will-change: auto; }
@media (max-width: 1279px) {
  .small, .breadcrumb ol, .preview-bar,
  .field-help, .field-error, .required-hint, .progress-text, .form-save-hint,
  .dropzone-meta, .summary-list dt, .summary-edit,
  .tag, .industry-roles li, .doc-meta, .file-size,
  .timeline-body time, .timeline-body .muted,
  .footer-bottom, .hero-trust li, .stepper-item { font-size: .95rem; }
  .steps-compact .step-text { font-size: 1rem; }
  .status-row, .timeline-body, .table { font-size: 1rem; }
  .eyebrow { font-size: .85rem; letter-spacing: .1em; }
  .breadcrumb ol { gap: .1rem .6rem; }
  .breadcrumb a, .breadcrumb [aria-current] { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
  .lang-switch a { min-width: 2.75rem; min-height: 2.75rem; }
  .btn-sm { min-height: 44px; font-size: .95rem; }
  .brand { min-height: 44px; }
  .file-remove { width: 2.75rem; height: 2.75rem; }
  .summary-edit { min-width: 44px; min-height: 44px; padding: .35rem .6rem; }
  .footer-logo { display: inline-flex; align-items: center; min-height: 44px; }
  .footer-col li { margin-bottom: 0; }
  .footer-col a { display: inline-flex; align-items: center; min-height: 44px; padding: 0; }
  .footer-legal ul { gap: 0 .75rem; }
  .footer-legal ul a { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
}
@media (max-width: 639px) {
  .btn { gap: .45rem; padding-inline: 1rem; }
  .btn-icon { padding-inline: .6rem; }
  .btn-lg { padding: .9rem 1.1rem; }
  .cta-band { padding: 1.9rem 1.35rem; }
}
@media print {
  .site-header, .site-footer, .skip-link, .preview-bar, .lang-hint, .cta-band, .form-actions, .stepper, .progress, .progress-text, .hero-art, .nav-toggle { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  a { color: #000; text-decoration: underline; }
  .section, .hero { padding: 1rem 0; background: none; }
  .card, .form, .portal-card { box-shadow: none; break-inside: avoid; }
  .section-dark, .card-dark, .hero-dark { color: #000; background: none; }
  .section-dark h2, .section-dark h3, .card-dark h3 { color: #000; }
  .form-step { display: block !important; }
  .faq details { break-inside: avoid; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .success-circle, .success-check { stroke-dashoffset: 0; animation: none; }
  .progress-bar { transition: none; }
}
@media (prefers-contrast: more) {
  :root { --line: #9AA5B4; --muted: #3E4854; }
  .btn-primary { border-color: #000; }
  .btn-secondary { border-width: 2px; }
  .input, .select, .textarea, .choice, .card { border-color: #5B6573; }
  .site-header { background: #fff; }
  .nav-list a[aria-current]::after { height: 3px; }
  .pill, .badge { border: 1px solid currentColor; }
}
@media (forced-colors: active) {
  .btn, .card, .pill, .badge, .choice, .input, .select, .textarea { border: 1px solid CanvasText; }
  .progress-bar, .step-num, .stepper-item.is-current .stepper-num { forced-color-adjust: none; }
}
