:root {
  --surface-a-100: #FFFFFF;
  --surface-a-200: #FFFFFF;
  --surface-a-500: #FFFFFF;
  --surface-a-600: #D9D9D9;
  --surface-a-700: #B2B2B2;
  --brand-b-100: #E9DFF9;
  --brand-b-200: #CCB4F2;
  --brand-b-500: #6D28D9;
  --brand-b-600: #5D22B8;
  --brand-b-700: #4C1C98;
  --text-900: #1F1F1F;
  --text-700: #3B3B3B;
  --shadow-1: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-2: 0 8px 24px rgba(0,0,0,0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  color: var(--text-900);
  background: var(--surface-a-100);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; }

a { color: var(--brand-b-600); text-decoration: none; }
a:hover, a:focus { color: var(--brand-b-700); }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section { padding: clamp(40px, 6vw, 96px) 0; }
.section-tight { padding: clamp(32px, 5vw, 72px) 0; }

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-b-100);
  color: var(--brand-b-700);
  font-weight: 600;
  font-size: 0.9rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--surface-a-600);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--brand-b-700);
  font-size: 1.1rem;
}

.brand img { width: 48px; }

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: var(--text-700);
  font-weight: 600;
}

.nav a:hover { color: var(--brand-b-700); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  color: var(--text-700);
  font-weight: 600;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus {
  color: var(--brand-b-700);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  padding: 10px;
  border: 1px solid var(--surface-a-600);
  border-radius: 16px;
  background: var(--surface-a-100);
  box-shadow: var(--shadow-1);
  display: grid;
  gap: 4px;
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus {
  background: var(--brand-b-100);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-b-500);
  color: var(--surface-a-100);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--surface-a-500);
  color: var(--brand-b-700);
  border-color: var(--brand-b-200);
}

.btn-danger-pill {
  background: #b42318;
  color: #ffffff;
  border-color: #b42318;
  box-shadow: 0 14px 30px rgba(180, 35, 24, 0.22);
}

.btn-danger-pill:hover,
.btn-danger-pill:focus {
  background: #8f1c13;
  color: #ffffff;
  border-color: #8f1c13;
}

.hero {
  background: linear-gradient(135deg, var(--surface-a-100), var(--brand-b-100));
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4.5vw, 54px);
  box-shadow: var(--shadow-2);
}

.hero-home {
  padding: clamp(15px, 2.9vw, 35px);
}

.section-gap-tight-bottom {
  padding-bottom: clamp(14px, 1.8vw, 28px);
}

.section-gap-tight-top {
  padding-top: clamp(14px, 1.8vw, 28px);
}

.hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 12px 0;
}

.hero p { font-size: 1.1rem; color: var(--text-700); }

.card {
  background: var(--surface-a-100);
  border: 1px solid var(--surface-a-600);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-side-card {
  min-height: 210px;
  justify-content: center;
}

.gradient-card {
  background: linear-gradient(135deg, var(--surface-a-100), var(--brand-b-100));
  border-color: var(--brand-b-200);
}

.gradient-card-utility {
  background: linear-gradient(145deg, #ffffff, #f2e4fb 70%, #ead7fb);
  border-color: #dcc1f5;
}

.gradient-card-testimonial {
  background: linear-gradient(145deg, #ffffff, #f8effd 72%, #f0ddfb);
  border-color: #e5cbf7;
}

.gradient-card p {
  color: var(--text-700);
}

.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.contact-card__logo {
  align-self: flex-end;
  width: min(180px, 52%);
  margin-top: auto;
  opacity: 0.95;
}

.policy-hero-image {
  display: block;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  object-fit: contain;
}

.dashboard-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(109, 40, 217, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf8ff 0%, #f4edf8 100%);
}

.dashboard-shell {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  padding: 24px 0 64px;
}

.dashboard-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  align-items: start;
}

.dashboard-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
  padding: 22px 18px;
  border: 1px solid #eadcf3;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f1fd 100%);
  box-shadow: 0 18px 40px rgba(88, 49, 112, 0.08);
}

.dashboard-sidebar-brand h2 {
  margin: 10px 0 8px;
  font-size: 1.3rem;
}

.dashboard-sidebar-brand p {
  margin: 0;
  color: var(--text-700);
  font-size: 0.97rem;
}

.dashboard-sidebar-nav {
  display: grid;
  gap: 8px;
}

.dashboard-sidebar-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text-900);
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dashboard-sidebar-nav .is-disabled {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f0edf4;
  color: #8b8193;
  font-weight: 700;
  cursor: not-allowed;
}

.dashboard-sidebar-nav a:hover,
.dashboard-sidebar-nav a:focus,
.dashboard-sidebar-nav a.is-active {
  background: #6d28d9;
  color: #ffffff;
  transform: translateX(2px);
}
.dashboard-sidebar-nav--no-dashboard-active a:first-child,
.dashboard-sidebar-nav--no-dashboard-active a:first-child.is-active {
  background: transparent;
  color: var(--text-900);
  transform: none;
}
.dashboard-sidebar-nav--no-dashboard-active a:first-child:hover,
.dashboard-sidebar-nav--no-dashboard-active a:first-child:focus {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-900);
}

.dashboard-main {
  min-width: 0;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--brand-b-700);
}

.dashboard-brand img {
  width: 48px;
}

.dashboard-account-menu {
  position: relative;
}

.dashboard-account-pill {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #6d28d9;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(109, 40, 217, 0.26);
}

.dashboard-account-pill::-webkit-details-marker {
  display: none;
}

.dashboard-account-pill::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.dashboard-account-menu[open] .dashboard-account-pill::after {
  transform: rotate(-135deg) translateY(-1px);
}

.dashboard-account-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  padding: 10px;
  border: 1px solid #e8dcef;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(88, 49, 112, 0.14);
  display: grid;
  gap: 4px;
  z-index: 20;
}

.dashboard-account-panel a {
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(109, 40, 217, 0.2);
  background: #ffffff;
  color: #6d28d9;
  font-weight: 700;
  text-align: center;
}

.dashboard-account-panel a:hover,
.dashboard-account-panel a:focus {
  background: #f8f3ff;
  border-color: rgba(109, 40, 217, 0.35);
  color: #5b21b6;
}

.dashboard-hero {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.9fr);
  align-items: stretch;
  margin-bottom: 24px;
}

.dashboard-hero > :first-child,
.dashboard-panel {
  border: 1px solid #eadcf3;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(88, 49, 112, 0.08);
}

.dashboard-hero > :first-child {
  padding: 28px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f3e5fb 78%, #eddafa 100%);
}

.dashboard-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.dashboard-hero p {
  color: var(--text-700);
  max-width: 62ch;
}

.dashboard-panel {
  padding: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #faf5ff 72%, #f2e6fb 100%);
}

.dashboard-panel-accent {
  background: linear-gradient(160deg, #6d28d9 0%, #7f46df 100%);
  color: #ffffff;
}

.dashboard-panel-accent p,
.dashboard-panel-accent h3,
.dashboard-panel-accent a {
  color: #ffffff;
}

.dashboard-grid {
  display: grid;
  gap: 20px;
}

.dashboard-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-module-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dashboard-module-card {
  height: 100%;
}

.dashboard-module-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(109, 40, 217, 0.12);
  color: #6d28d9;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.dashboard-module-card h3 {
  margin: 0 0 10px;
}

.dashboard-module-card p {
  color: var(--text-700);
}

.dashboard-module-footer {
  margin-top: auto;
  padding-top: 18px;
}

.dashboard-toggle-list {
  display: grid;
  gap: 14px;
}

.dashboard-toggle-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid #eadcf3;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.dashboard-toggle-copy h3,
.dashboard-toggle-copy p {
  margin: 0;
}

.dashboard-toggle-copy p {
  color: var(--text-700);
  font-size: 0.95rem;
}

.dashboard-section-stack {
  display: grid;
  gap: 24px;
}

.dashboard-table-wrap {
  overflow-x: auto;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #eadcf3;
  text-align: left;
  vertical-align: top;
}

.dashboard-table th {
  color: #7f6c8c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-table tbody tr:last-child td {
  border-bottom: 0;
}

.dashboard-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  background: #efe5fb;
  color: #6d28d9;
}

.dashboard-status-pill.is-success {
  background: #e6f7ef;
  color: #146c43;
}

.dashboard-status-pill.is-warning {
  background: #fff4df;
  color: #9a6700;
}

.dashboard-status-pill.is-muted {
  background: #f0edf4;
  color: #6c5f77;
}

.dashboard-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.dashboard-empty-state {
  margin: 0;
  color: var(--text-700);
}

.dashboard-stat {
  padding: 22px 24px;
}

.dashboard-stat-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.dashboard-stat-link:hover,
.dashboard-stat-link:focus {
  color: inherit;
  text-decoration: none;
  transform: translateY(-1px);
}

.dashboard-stat-value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #6d28d9;
  line-height: 1;
  margin-bottom: 10px;
}

.dashboard-definition-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.dashboard-definition-list div {
  display: grid;
  gap: 4px;
}

.dashboard-definition-list dt {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7f6c8c;
}

.dashboard-definition-list dd {
  margin: 0;
  color: var(--text-900);
  font-weight: 600;
}

.dashboard-action-list {
  display: grid;
  gap: 12px;
}

.dashboard-action-list .btn {
  width: 100%;
  justify-content: space-between;
}

.locum-skill-help {
  margin: 0 0 12px;
  color: var(--text-700);
  font-size: 0.95rem;
}

.locum-skill-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.locum-skill-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #ddcdee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-900);
  font-weight: 600;
}

.locum-skill-option:hover {
  border-color: #c3a8e6;
  background: #fbf7ff;
}

.locum-skill-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #6d28d9;
}

.locum-skill-option span {
  line-height: 1.35;
}

.shortlist-search-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid #e0d0f1;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.shortlist-search-copy h3,
.shortlist-search-copy p {
  margin: 0;
}

.shortlist-search-copy p {
  margin-top: 6px;
  color: var(--text-700);
  max-width: 68ch;
}

.shortlist-search-form {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: end;
}

.shortlist-search-field {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--text-900);
  font-weight: 700;
  position: relative;
}

.shortlist-search-meta,
.shortlist-search-hint {
  margin: 0;
}

.shortlist-search-meta {
  color: #6d28d9;
  font-weight: 700;
}

.shortlist-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0;
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid #dfcff1;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(70, 31, 98, 0.16);
}

.shortlist-suggestion-row {
  width: 100%;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #efe5fb;
  background: transparent;
  text-align: left;
}

.shortlist-suggestion-row:last-child {
  border-bottom: 0;
}

.shortlist-suggestion-row:hover,
.shortlist-suggestion-row:focus {
  background: #f9f3ff;
}

.shortlist-suggestion-main,
.shortlist-suggestion-side {
  display: grid;
  gap: 4px;
}

.shortlist-suggestion-main strong {
  color: var(--text-900);
}

.shortlist-suggestion-main span,
.shortlist-suggestion-side span,
.shortlist-suggestion-side small,
.shortlist-suggestion-empty {
  color: var(--text-700);
}

.shortlist-suggestion-action {
  color: #6d28d9 !important;
  font-weight: 800;
}

.shortlist-suggestion-badge {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e6f7ef;
  color: #146c43;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shortlist-suggestion-empty {
  padding: 14px 16px;
}

.shortlist-results-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.shortlist-result-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #e7daf4;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ff 100%);
  box-shadow: 0 12px 28px rgba(88, 49, 112, 0.06);
}

.shortlist-result-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.shortlist-result-top h3 {
  margin: 0;
  font-size: 1rem;
}

.shortlist-result-email {
  margin: 6px 0 0;
  color: var(--text-700);
}

.shortlist-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shortlist-result-skills {
  margin: 0;
  color: var(--text-800);
  line-height: 1.55;
}

.shortlist-result-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-700);
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .shortlist-search-form {
    grid-template-columns: 1fr;
  }

  .shortlist-suggestion-row {
    grid-template-columns: 1fr;
  }

  .shortlist-result-footer,
  .shortlist-result-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .shortlist-result-footer .btn {
    width: 100%;
  }
}

.dashboard-section-heading {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.dashboard-collapsible {
  padding: 0;
  overflow: hidden;
}

.dashboard-collapsible summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  cursor: pointer;
}

.dashboard-collapsible summary::-webkit-details-marker {
  display: none;
}

.dashboard-collapsible-copy p:last-child,
.dashboard-collapsible-copy h2:last-child {
  margin-bottom: 0;
}

.dashboard-collapsible-chevron {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(109, 40, 217, 0.12);
  color: #6d28d9;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.dashboard-collapsible[open] .dashboard-collapsible-chevron {
  transform: rotate(180deg);
  background: rgba(109, 40, 217, 0.18);
}

.dashboard-collapsible-body {
  padding: 0 24px 24px;
}

@media (max-width: 900px) {
  .dashboard-layout,
  .dashboard-hero,
  .dashboard-grid-2,
  .dashboard-grid-3 {
    grid-template-columns: 1fr;
  }

  .dashboard-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-account-panel {
    left: 0;
    right: auto;
  }

  .dashboard-sidebar {
    position: static;
  }

  .dashboard-toggle-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

.grid { display: grid; gap: 24px; align-items: stretch; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

@media (min-width: 980px) {
  .desktop-row-limit-4 > :nth-child(n + 5) {
    display: none;
  }

  .desktop-row-limit-3 > :nth-child(n + 4) {
    display: none;
  }
}

.split {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-b-700);
  font-weight: 700;
}

.stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--brand-b-100);
}

.stat .value { font-size: 1.6rem; font-weight: 800; color: var(--brand-b-700); }

.logo-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: center;
  opacity: 0.7;
}

.faq details {
  background: var(--surface-a-100);
  border: 1px solid var(--surface-a-600);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}

.faq summary { cursor: pointer; font-weight: 700; }

.cta-band {
  background: linear-gradient(120deg, var(--brand-b-100), var(--brand-b-200));
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
}

.footer {
  background: var(--surface-a-500);
  border-top: 1px solid var(--surface-a-600);
  padding: 28px 0 78px;
}

.footer a { color: var(--brand-b-700); }

.footer p,
.footer h3,
.footer h4 {
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.25;
}

.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface-a-100);
  border-top: 1px solid var(--surface-a-600);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px 12px;
  z-index: 90;
}

.mobile-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-radius: 999px;
  background: var(--brand-b-100);
  color: var(--brand-b-700);
  font-weight: 700;
}

.mobile-bar a.primary {
  background: var(--brand-b-500);
  color: var(--surface-a-100);
}

.form {
  display: grid;
  gap: 16px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--surface-a-600);
  padding: 12px 14px;
  font: inherit;
}

.form button { border: none; }

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid__full {
  grid-column: 1 / -1;
}

.compact-list li {
  margin-bottom: 10px;
}

.register-cards {
  align-items: stretch;
}

.register-card {
  gap: 18px;
}

.login-form {
  margin-top: auto;
}

.registration-panel {
  gap: 24px;
}

.registration-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.type-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.type-switch__option {
  position: relative;
}

.type-switch__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.type-switch__option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--surface-a-600);
  background: var(--surface-a-100);
  color: var(--text-700);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.type-switch__option input:checked + span {
  background: var(--brand-b-500);
  color: var(--surface-a-100);
  border-color: var(--brand-b-500);
  transform: translateY(-1px);
}

.registration-form {
  position: relative;
}

.registration-form.is-locked [data-registration-section] {
  opacity: 0.5;
}

.registration-lock-note,
.status-message {
  min-height: 24px;
  margin: 0;
  color: var(--text-700);
  font-size: 0.95rem;
}

.status-message {
  color: var(--brand-b-700);
}

.registration-form.is-locked .registration-lock-note {
  color: var(--brand-b-700);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-row input {
  width: auto;
  margin-top: 4px;
}

.registration-submit {
  justify-self: start;
}

.register-cta {
  margin-top: 18px;
}

.notice {
  background: var(--brand-b-100);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.hamburger {
  display: none;
  border: 1px solid var(--surface-a-600);
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--surface-a-100);
}

@media (max-width: 940px) {
  .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--surface-a-100); padding: 16px; flex-direction: column; border-bottom: 1px solid var(--surface-a-600); }
  .nav.open { display: flex; }
  .hamburger { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown summary { width: 100%; }
  .nav-dropdown__menu { position: static; min-width: 0; margin-top: 10px; box-shadow: none; }
  .registration-panel__header { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (min-width: 941px) {
  .mobile-bar { display: none; }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--brand-b-500);
  color: var(--surface-a-100);
  border-radius: 8px;
  z-index: 999;
}
