
/* ============================================================
   AUTH PAGES — Login / Register
   ============================================================ */

.auth-page { background: #f0f4f8; }

.auth-hero {
	position: relative;
	height: 280px;
	display: flex;
	align-items: center;
	background: var(--color-navy-dark) center/cover no-repeat;
}
.auth-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(135deg, rgba(5,14,43,.88) 0%, rgba(5,14,43,.6) 100%);
}
.auth-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
}
.auth-hero-content h1 { font-size: 3rem; margin-bottom: .5rem; }
.auth-hero-content p  { font-size: 1.1rem; opacity: .85; }

.auth-section { padding: 3.5rem 0 5rem; }

.auth-card {
	max-width: 600px;
	margin: 0 auto;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 8px 40px rgba(5,14,43,.12);
	overflow: hidden;
}

/* Tabs */
.auth-tabs {
	display: flex;
	position: relative;
	border-bottom: 2px solid #e9edf3;
	background: #f7f9fc;
}
.auth-tab {
	flex: 1;
	padding: 1.1rem;
	background: none;
	border: none;
	font-size: .95rem;
	font-weight: 600;
	color: #6b7a9a;
	cursor: pointer;
	transition: color .25s;
	position: relative;
}
.auth-tab.is-active { color: var(--color-navy-dark); }
.auth-tab-indicator {
	position: absolute;
	bottom: -2px; left: 0;
	width: 50%;
	height: 2px;
	background: var(--color-yellow);
	transition: left .3s cubic-bezier(.4,0,.2,1);
}

/* Tab panels */
.auth-tab-panel {
	display: none;
	padding: 2rem 2.5rem 2.5rem;
}
.auth-tab-panel.is-active { display: block; }

/* Form fields */
.auth-form { display: flex; flex-direction: column; gap: 1.2rem; }

.auth-field { display: flex; flex-direction: column; gap: .4rem; }
.auth-field label { font-size: .875rem; font-weight: 600; color: var(--color-navy-dark); }
.auth-field small  { font-size: .78rem; color: #8492a6; }
.auth-optional     { font-weight: 400; color: #8492a6; }

.auth-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.auth-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.auth-input-wrap > svg:first-child {
	position: absolute;
	left: 14px;
	width: 16px; height: 16px;
	color: #8492a6;
	pointer-events: none;
}
.auth-input-wrap input {
	width: 100%;
	padding: .75rem 2.8rem .75rem 2.8rem;
	border: 1.5px solid #dce3ee;
	border-radius: 10px;
	font-size: .95rem;
	color: var(--color-navy-dark);
	background: #fff;
	transition: border-color .2s, box-shadow .2s;
	outline: none;
}
.auth-input-wrap input:focus {
	border-color: var(--color-yellow);
	box-shadow: 0 0 0 3px rgba(253,183,47,.15);
}
.auth-input-wrap input.input-disabled {
	background: #f5f7fa;
	color: #8492a6;
	cursor: not-allowed;
}
.auth-toggle-pw {
	position: absolute; right: 12px;
	background: none; border: none;
	padding: 4px; cursor: pointer;
	color: #8492a6;
	display: flex; align-items: center;
}
.auth-toggle-pw svg { width: 16px; height: 16px; }
.auth-toggle-pw:hover { color: var(--color-navy-dark); }

/* Override .dash-field input padding when inside an auth-input-wrap
   (password fields on the dashboard — prevents icon from overlapping text) */
.dash-field .auth-input-wrap input {
	padding: .75rem 2.8rem .75rem 2.8rem;
}

.auth-field--row { display: flex !important; flex-direction: row !important; align-items: center; justify-content: space-between; }

.auth-checkbox { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .875rem; color: #4a5568; }
.auth-checkbox input { width: auto; margin: 0; accent-color: var(--color-yellow); }
.auth-checkbox a { color: var(--color-yellow); }

.auth-forgot-link { font-size: .85rem; color: var(--color-yellow); text-decoration: none; white-space: nowrap; }
.auth-forgot-link:hover { text-decoration: underline; }

.auth-submit { width: 100%; padding: .9rem; font-size: 1rem; margin-top: .4rem; }

.auth-switch-note { text-align: center; font-size: .875rem; color: #6b7a9a; margin-top: 1.2rem; }
.auth-switch-note a { color: var(--color-yellow); font-weight: 600; text-decoration: none; }
.auth-switch-note a:hover { text-decoration: underline; }

/* Alerts */
.auth-alert {
	display: flex; align-items: flex-start; gap: .75rem;
	padding: .9rem 1.2rem;
	border-radius: 10px;
	font-size: .9rem;
	margin: 1.5rem 2.5rem 0;
}
.auth-alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.auth-alert--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.auth-alert--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Password strength */
.pw-strength-bar {
	height: 4px;
	background: #e9edf3;
	border-radius: 4px;
	margin-top: 6px;
	overflow: hidden;
}
.pw-strength-fill {
	height: 100%;
	width: 0;
	border-radius: 4px;
	transition: width .3s, background .3s;
}
.pw-strength-label { font-size: .78rem; font-weight: 600; }

/* ============================================================
   DASHBOARD PAGES
   ============================================================ */

.dashboard-page { min-height: 100vh; background: #f0f4f8; }

.dashboard-wrap {
	display: grid;
	grid-template-columns: 260px 1fr;
	min-height: 100vh;
}

/* Sidebar */
.dashboard-sidebar {
	background: var(--color-navy-dark);
	min-height: 100vh;
	padding: 2rem 0 3rem;
	position: sticky;
	top: 0;
	height: 100vh;
	overflow-y: auto;
}

.dashboard-profile-card {
	text-align: center;
	padding: 2rem 1.5rem 1.5rem;
	border-bottom: 1px solid rgba(255,255,255,.08);
	margin-bottom: 1rem;
}
.dashboard-avatar {
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--color-yellow);
	color: var(--color-navy-dark);
	font-size: 1.4rem;
	font-weight: 700;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 1rem;
}
.dashboard-avatar--employer { background: #3b82f6; color: #fff; }
.dashboard-user-name { color: #fff; font-weight: 600; font-size: 1rem; margin: 0; }
.dashboard-user-role { color: rgba(255,255,255,.5); font-size: .8rem; margin: .2rem 0 .6rem; }
.dashboard-verified-badge {
	display: inline-flex; align-items: center; gap: 4px;
	background: rgba(16,185,129,.15);
	color: #34d399;
	font-size: .72rem; font-weight: 600;
	padding: 3px 8px;
	border-radius: 20px;
	border: 1px solid rgba(52,211,153,.3);
}

.dashboard-nav { display: flex; flex-direction: column; padding: 0 .75rem; gap: 2px; }
.dashboard-nav-item {
	display: flex; align-items: center; gap: .75rem;
	padding: .75rem 1rem;
	border-radius: 10px;
	color: rgba(255,255,255,.65);
	font-size: .9rem;
	font-weight: 500;
	text-decoration: none;
	transition: background .2s, color .2s;
	position: relative;
}
.dashboard-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.dashboard-nav-item:hover { background: rgba(255,255,255,.07); color: #fff; }
.dashboard-nav-item.is-active { background: rgba(253,183,47,.12); color: var(--color-yellow); }
.dashboard-nav-item.is-active::before {
	content: '';
	position: absolute; left: 0; top: 20%; bottom: 20%;
	width: 3px;
	background: var(--color-yellow);
	border-radius: 0 3px 3px 0;
}
.dashboard-nav-item--logout { margin-top: 1.5rem; color: rgba(255,255,255,.4); }
.dashboard-nav-item--logout:hover { background: rgba(239,68,68,.1); color: #f87171; }

.nav-badge {
	margin-left: auto;
	background: var(--color-yellow);
	color: var(--color-navy-dark);
	font-size: .7rem; font-weight: 700;
	padding: 2px 7px;
	border-radius: 20px;
}
.nav-badge--neutral {
	background: rgba(255,255,255,.15);
	color: rgba(255,255,255,.8);
}

/* Dashboard main */
.dashboard-main {
	padding: 2.5rem;
	min-width: 0;
}

.dash-alert {
	display: flex; align-items: center; gap: .75rem;
	padding: .9rem 1.2rem;
	border-radius: 10px;
	font-size: .9rem;
	margin-bottom: 1.5rem;
}
.dash-alert--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.dash-alert--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.dash-panel {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 16px rgba(5,14,43,.07);
	padding: 2rem 2.5rem 2.5rem;
}
.dash-panel-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin: 0 0 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #f0f4f8;
}
.dash-panel-desc  { color: #6b7a9a; font-size: .9rem; margin: -.75rem 0 1.5rem; }
.dash-panel-header-row {
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: 1rem;
	margin-bottom: 1.5rem; padding-bottom: 1rem;
	border-bottom: 2px solid #f0f4f8;
}
.dash-panel-header-row .dash-panel-title { margin: 0; padding: 0; border: none; }
.dash-back-link {
	display: flex; align-items: center; gap: 5px;
	font-size: .875rem; font-weight: 600;
	color: #6b7a9a; text-decoration: none;
}
.dash-back-link:hover { color: var(--color-navy-dark); }

/* Form */
.dash-form { display: flex; flex-direction: column; gap: 1.2rem; }
.dash-form--narrow { max-width: 480px; }

.dash-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.dash-field { display: flex; flex-direction: column; gap: .4rem; }
.dash-field label { font-size: .875rem; font-weight: 600; color: var(--color-navy-dark); }
.dash-field small  { font-size: .78rem; color: #8492a6; }

.dash-field input,
.dash-field select,
.dash-field textarea {
	padding: .7rem 1rem;
	border: 1.5px solid #dce3ee;
	border-radius: 10px;
	font-size: .95rem;
	color: var(--color-navy-dark);
	background: #fff;
	outline: none;
	transition: border-color .2s, box-shadow .2s;
	font-family: inherit;
}
.dash-field input:focus,
.dash-field select:focus,
.dash-field textarea:focus {
	border-color: var(--color-yellow);
	box-shadow: 0 0 0 3px rgba(253,183,47,.12);
}
.dash-field textarea { resize: vertical; }
.dash-field input.input-disabled { background: #f5f7fa; color: #8492a6; cursor: not-allowed; }

.dash-divider { border: none; border-top: 2px solid #f0f4f8; margin: 2rem 0 1.5rem; }
.dash-sub-title { font-size: 1.1rem; font-weight: 700; color: var(--color-navy-dark); margin: 0 0 1.2rem; }
.dash-note { color: #6b7a9a; font-size: .875rem; margin-top: 1rem; }

/* File drop zone */
.dash-file-drop {
	border: 2px dashed #dce3ee;
	border-radius: 12px;
	padding: 2rem 1.5rem;
	text-align: center;
	cursor: pointer;
	transition: border-color .2s, background .2s;
}
.dash-file-drop:hover,
.dash-file-drop.drag-over {
	border-color: var(--color-yellow);
	background: rgba(253,183,47,.04);
}
.dash-file-drop svg { width: 36px; height: 36px; color: #8492a6; margin-bottom: .75rem; }
.dash-file-drop p { font-size: .9rem; color: #4a5568; margin: 0 0 .25rem; }
.dash-file-drop small { font-size: .8rem; color: #8492a6; }
.dash-browse-link { color: var(--color-yellow); font-weight: 600; cursor: pointer; }
.dash-file-selected { font-size: .875rem; color: #065f46; font-weight: 500; margin-top: .5rem; }

/* Current resume */
.dash-resume-current {
	display: flex; align-items: center; gap: 1rem;
	padding: 1rem 1.25rem;
	background: #f7f9fc;
	border-radius: 10px;
	border: 1.5px solid #dce3ee;
	margin-bottom: 1.5rem;
}
.dash-resume-icon svg { width: 32px; height: 32px; color: var(--color-yellow); }
.dash-resume-name { font-weight: 600; color: var(--color-navy-dark); font-size: .9rem; margin: 0; }
.dash-resume-link { font-size: .85rem; color: var(--color-yellow); text-decoration: none; font-weight: 600; }
.dash-resume-link:hover { text-decoration: underline; }

/* Empty state */
.dash-empty-state {
	text-align: center; padding: 3rem 1rem;
	color: #8492a6;
}
.dash-empty-state svg { color: #c5d0e0; margin-bottom: 1rem; }
.dash-empty-state p { margin: 0; font-size: .95rem; }
.dash-empty-state a { color: var(--color-yellow); font-weight: 600; }

/* Tables */
.dash-table-wrap { overflow-x: auto; }
.dash-table {
	width: 100%; border-collapse: collapse;
	font-size: .875rem; color: var(--color-navy-dark);
}
.dash-table th {
	text-align: left; padding: .75rem 1rem;
	background: #f7f9fc;
	font-size: .8rem; font-weight: 700; text-transform: uppercase;
	letter-spacing: .04em; color: #6b7a9a;
	border-bottom: 2px solid #e9edf3;
}
.dash-table td {
	padding: .9rem 1rem;
	border-bottom: 1px solid #f0f4f8;
	vertical-align: middle;
}
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover td { background: #fafcff; }

/* Status badges */
.status-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: .75rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .04em;
}
.badge--pending     { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.badge--reviewed    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.badge--shortlisted { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.badge--rejected    { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Utility */
.dash-link       { color: var(--color-yellow); font-weight: 600; text-decoration: none; font-size: .875rem; }
.dash-link:hover { text-decoration: underline; }
.dash-muted      { color: #c5d0e0; font-size: .875rem; }

.dash-btn-view {
	display: inline-flex; align-items: center;
	padding: 4px 12px;
	background: #eff6ff; color: #1e40af;
	border-radius: 6px;
	font-size: .8rem; font-weight: 600;
	text-decoration: none;
	border: 1px solid #bfdbfe;
	cursor: pointer;
	transition: background .2s;
}
.dash-btn-view:hover { background: #dbeafe; }

.dash-btn-danger {
	display: inline-flex; align-items: center;
	padding: 4px 12px;
	background: #fef2f2; color: #991b1b;
	border-radius: 6px;
	font-size: .8rem; font-weight: 600;
	border: 1px solid #fecaca;
	cursor: pointer;
	transition: background .2s;
}
.dash-btn-danger:hover { background: #fee2e2; }

.dash-actions-cell { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }

.btn-sm { padding: .45rem .9rem !important; font-size: .85rem !important; }

/* Applicant cards */
.dash-applicants-list { display: flex; flex-direction: column; gap: 1.5rem; }

.applicant-card {
	background: #f7f9fc;
	border: 1.5px solid #e9edf3;
	border-radius: 12px;
	padding: 1.5rem;
}
.applicant-card-header {
	display: flex; align-items: flex-start; gap: 1rem; flex-wrap: wrap;
	margin-bottom: 1rem;
}
.applicant-avatar {
	width: 48px; height: 48px; flex-shrink: 0;
	border-radius: 50%;
	background: var(--color-navy-dark);
	color: var(--color-yellow);
	font-size: 1rem; font-weight: 700;
	display: flex; align-items: center; justify-content: center;
}
.applicant-info { flex: 1; min-width: 0; }
.applicant-info h3 { font-size: 1rem; font-weight: 700; color: var(--color-navy-dark); margin: 0 0 .4rem; }
.applicant-meta { display: flex; flex-wrap: wrap; gap: .5rem .75rem; font-size: .8rem; color: #6b7a9a; }
.applicant-meta span { padding-left: .75rem; position: relative; }
.applicant-meta span:first-child { padding-left: 0; }
.applicant-meta span::before { content: "•"; position: absolute; left: .2rem; color: #c5d0e0; }
.applicant-meta span:first-child::before { content: ""; }
.applicant-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; flex-wrap: wrap; }

.applicant-cover {
	background: #fff;
	border-radius: 8px;
	padding: 1rem;
	font-size: .875rem; color: #4a5568;
	border: 1px solid #e9edf3;
	margin-bottom: 1rem;
}
.applicant-cover strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: #8492a6; margin-bottom: .4rem; }
.applicant-cover p { margin: 0; line-height: 1.6; }

.applicant-status-label { display: block; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: #8492a6; margin-bottom: .4rem; }
.applicant-status-row { display: flex; gap: .75rem; align-items: center; }
.applicant-status-row select {
	padding: .5rem .75rem;
	border: 1.5px solid #dce3ee;
	border-radius: 8px;
	font-size: .875rem;
	color: var(--color-navy-dark);
	outline: none;
	background: #fff;
}
.applicant-status-row select:focus { border-color: var(--color-yellow); }

/* Dashboard responsive */
@media (max-width: 900px) {
	.dashboard-wrap { grid-template-columns: 1fr; }
	.dashboard-sidebar {
		position: static;
		height: auto;
		min-height: auto;
		padding: 1.5rem 0;
	}
	.dashboard-profile-card { padding: 1.25rem; }
	.dashboard-nav { flex-direction: row; flex-wrap: wrap; padding: 0 1rem; gap: 4px; }
	.dashboard-nav-item { padding: .5rem .75rem; font-size: .8rem; }
	.dashboard-nav-item svg { width: 15px; height: 15px; }
	.dashboard-nav-item::before { display: none !important; }
	.dashboard-nav-item--logout { margin-top: 0; }
	.dashboard-main { padding: 1.5rem 1rem; }
	.dash-panel { padding: 1.5rem; }
	.dash-form-row { grid-template-columns: 1fr; }
	.auth-field-row { grid-template-columns: 1fr; }
}

/* Job apply section */
.apply-login-prompt {
	background: #f7f9fc;
	border: 1.5px solid #dce3ee;
	border-radius: 12px;
	padding: 1.5rem;
	font-size: .95rem;
	color: #4a5568;
}
.apply-login-prompt a { color: var(--color-yellow); font-weight: 600; }
.apply-no-resume {
	display: flex; align-items: center; gap: .5rem;
	font-size: .875rem; color: #92400e;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 8px;
	padding: .7rem 1rem;
}
.apply-no-resume svg { flex-shrink: 0; }
.apply-no-resume a { color: var(--color-yellow); font-weight: 600; }

@media (max-width: 600px) {
	.auth-hero-content h1 { font-size: 2rem; }
	.auth-hero { height: 220px; }
	.auth-tab-panel { padding: 1.5rem 1.25rem; }
	.auth-alert { margin: 1rem 1.25rem 0; }
	.applicant-card-header { flex-direction: column; }
	.applicant-actions { width: 100%; }
	.dash-table th, .dash-table td { padding: .6rem .6rem; font-size: .8rem; }
}

/* ============================================================
   EXTENDED PROFILE FORM — section titles, curriculum grid,
   safeguarding declaration
   ============================================================ */

.dash-form-section-title {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #8492a6;
	margin: .5rem 0 -.25rem;
	padding-bottom: .6rem;
	border-bottom: 1.5px solid #edf0f7;
}

/* Curriculum experience checkbox grid */
.dash-checkbox-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: .5rem .75rem;
	margin-top: .2rem;
}

.dash-checkbox-item {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--color-navy-dark);
	cursor: pointer;
	user-select: none;
}

.dash-checkbox-item input[type="checkbox"] {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	accent-color: var(--color-yellow);
	cursor: pointer;
}

/* Safeguarding declaration */
.dash-safeguarding-item {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	font-size: .875rem;
	color: var(--color-navy-dark);
	cursor: pointer;
	user-select: none;
	line-height: 1.5;
	padding: 1rem;
	background: #fffbeb;
	border: 1.5px solid #fde68a;
	border-radius: 8px;
}

.dash-safeguarding-item input[type="checkbox"] {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: .15rem;
	accent-color: var(--color-yellow);
	cursor: pointer;
}

@media (max-width: 600px) {
	.dash-checkbox-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PROFILE STATUS BANNER
   ============================================================ */

.sky-status-banner {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.sky-status-banner > svg { flex-shrink: 0; margin-top: 2px; }

.sky-status-banner-body { flex: 1; min-width: 0; }
.sky-status-banner-body strong { display: block; font-weight: 700; font-size: .95rem; margin-bottom: .2rem; }
.sky-status-banner-body p { margin: 0; font-size: .875rem; line-height: 1.5; }
.sky-status-banner-body p + p { margin-top: .3rem; }

.sky-status-notes {
	background: rgba(0,0,0,.06);
	border-radius: 6px;
	padding: .4rem .75rem;
	margin-top: .4rem !important;
	font-size: .825rem;
}

.sky-status-banner--incomplete {
	background: #fffbeb;
	border: 1.5px solid #fde68a;
	color: #78350f;
}
.sky-status-banner--incomplete > svg { color: #d97706; }

.sky-status-banner--pending {
	background: #eff6ff;
	border: 1.5px solid #bfdbfe;
	color: #1e3a8a;
}
.sky-status-banner--pending > svg { color: #3b82f6; }

.sky-status-banner--approved {
	background: #ecfdf5;
	border: 1.5px solid #a7f3d0;
	color: #064e3b;
}
.sky-status-banner--approved > svg { color: #10b981; }

.sky-status-banner--rejected {
	background: #fef2f2;
	border: 1.5px solid #fecaca;
	color: #7f1d1d;
}
.sky-status-banner--rejected > svg { color: #ef4444; }

/* Visibility toggle switch */
.sky-visibility-toggle-wrap {
	display: flex;
	align-items: center;
	gap: .75rem;
	flex-shrink: 0;
}

.sky-visibility-label {
	font-size: .8rem;
	font-weight: 600;
	color: #064e3b;
	white-space: nowrap;
}

.sky-visibility-toggle {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	flex-shrink: 0;
	cursor: pointer;
}

.sky-visibility-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.sky-visibility-slider {
	position: absolute;
	inset: 0;
	background: #c5d0e0;
	border-radius: 24px;
	transition: background .25s;
}

.sky-visibility-slider::before {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	left: 3px;
	top: 3px;
	background: #fff;
	border-radius: 50%;
	transition: transform .25s;
	box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.sky-visibility-toggle input:checked + .sky-visibility-slider {
	background: #10b981;
}

.sky-visibility-toggle input:checked + .sky-visibility-slider::before {
	transform: translateX(20px);
}

.sky-visibility-toggle input:disabled + .sky-visibility-slider {
	opacity: .6;
	cursor: not-allowed;
}

/* ============================================================
   SCHOOL APPROVAL GATE
   ============================================================ */

.sky-approval-gate-wrap {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f4f8;
	padding: 3rem 1rem;
}

.sky-approval-gate {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 8px 40px rgba(5,14,43,.12);
	padding: 3rem 2.5rem;
	max-width: 540px;
	width: 100%;
	text-align: center;
}

.sky-approval-gate-icon {
	margin-bottom: 1.5rem;
	color: #3b82f6;
}

.sky-approval-gate--rejected .sky-approval-gate-icon { color: #ef4444; }

.sky-approval-gate-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin: 0 0 1rem;
}

.sky-approval-gate-text {
	font-size: .95rem;
	color: #4a5568;
	margin: 0 0 .75rem;
	line-height: 1.6;
}
.sky-approval-gate-text a { color: var(--color-yellow); font-weight: 600; }

.sky-approval-gate-notes {
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 8px;
	padding: .75rem 1rem;
	font-size: .875rem;
	color: #7f1d1d;
	margin: 0 0 1rem;
	text-align: left;
}

.sky-approval-gate .btn {
	margin-top: 1rem;
}

/* ============================================================
   CANDIDATE SEARCH PAGE
   ============================================================ */

.candidate-search-page { background: #f0f4f8; min-height: 100vh; }

.candidate-search-wrap {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 2rem;
	max-width: 1280px;
	margin: 0 auto;
	padding: 2.5rem 2rem;
}

/* Filter Sidebar */
.candidate-search-sidebar { }

.candidate-search-filter-panel {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 16px rgba(5,14,43,.07);
	padding: 1.5rem;
	position: sticky;
	top: 2rem;
}

.candidate-search-filter-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin: 0 0 1.25rem;
	padding-bottom: .75rem;
	border-bottom: 2px solid #f0f4f8;
}

.candidate-filter-field {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	margin-bottom: 1rem;
}

.candidate-filter-field label {
	font-size: .8rem;
	font-weight: 600;
	color: var(--color-navy-dark);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.candidate-filter-field input,
.candidate-filter-field select {
	padding: .6rem .85rem;
	border: 1.5px solid #dce3ee;
	border-radius: 8px;
	font-size: .9rem;
	color: var(--color-navy-dark);
	background: #fff;
	outline: none;
	font-family: inherit;
	transition: border-color .2s;
}

.candidate-filter-field input:focus,
.candidate-filter-field select:focus {
	border-color: var(--color-yellow);
	box-shadow: 0 0 0 3px rgba(253,183,47,.12);
}

.btn-filter-apply { width: 100%; margin-top: .5rem; }
.btn-filter-clear {
	display: block;
	text-align: center;
	font-size: .85rem;
	color: #6b7a9a;
	text-decoration: none;
	margin-top: .75rem;
	font-weight: 500;
}
.btn-filter-clear:hover { color: var(--color-navy-dark); text-decoration: underline; }

/* Results area */
.candidate-search-results { min-width: 0; }

.candidate-search-header {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.candidate-search-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin: 0;
}

.candidate-search-count {
	font-size: .9rem;
	color: #6b7a9a;
	margin: 0;
}

.candidate-search-empty {
	text-align: center;
	padding: 4rem 1rem;
	color: #8492a6;
	background: #fff;
	border-radius: 16px;
}
.candidate-search-empty svg { color: #c5d0e0; margin-bottom: 1rem; }
.candidate-search-empty p { margin: 0; font-size: .95rem; }

/* Candidate Grid */
.candidate-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.25rem;
}

.candidate-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(5,14,43,.07);
	border: 1.5px solid #e9edf3;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s, border-color .2s;
}

.candidate-card:hover {
	box-shadow: 0 6px 24px rgba(5,14,43,.12);
	border-color: #c5d0e0;
}

.candidate-card-header {
	display: flex;
	gap: .85rem;
	padding: 1.25rem 1.25rem .85rem;
}

.candidate-card-avatar {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--color-navy-dark);
	color: var(--color-yellow);
	font-size: 1rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.candidate-card-info { flex: 1; min-width: 0; }
.candidate-card-name { font-size: 1rem; font-weight: 700; color: var(--color-navy-dark); margin: 0 0 .2rem; }
.candidate-card-role { font-size: .825rem; color: #6b7a9a; margin: 0 0 .2rem; }
.candidate-card-location {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: .8rem;
	color: #8492a6;
	margin: 0;
}
.candidate-card-location svg { flex-shrink: 0; }

.candidate-card-body {
	padding: 0 1.25rem .85rem;
	flex: 1;
}

.candidate-card-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem .85rem;
	margin-bottom: .6rem;
}

.candidate-card-meta-item {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: .8rem;
	color: #4a5568;
}
.candidate-card-meta-item svg { flex-shrink: 0; }

.candidate-card-subjects {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	font-size: .825rem;
	color: #4a5568;
	margin: 0 0 .6rem;
}
.candidate-card-subjects svg { flex-shrink: 0; margin-top: 1px; }
.candidate-card-more { color: #8492a6; }

.candidate-card-badges {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem;
}

.candidate-card-badge {
	display: inline-block;
	padding: 2px 9px;
	background: rgba(5,14,43,.07);
	color: var(--color-navy-dark);
	border-radius: 20px;
	font-size: .72rem;
	font-weight: 600;
}

.candidate-card-badge--more {
	background: #f0f4f8;
	color: #6b7a9a;
}

.candidate-card-footer {
	padding: .85rem 1.25rem 1.25rem;
	border-top: 1px solid #f0f4f8;
}

/* ============================================================
   CANDIDATE PROFILE VIEW PAGE
   ============================================================ */

.candidate-profile-page { background: #f0f4f8; min-height: 100vh; }

.candidate-profile-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 2.5rem 2rem;
}

.candidate-profile-back { margin-bottom: 1.25rem; }

.candidate-back-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: .875rem;
	font-weight: 600;
	color: #6b7a9a;
	text-decoration: none;
}
.candidate-back-link:hover { color: var(--color-navy-dark); }

.candidate-profile-grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 2rem;
	align-items: start;
}

/* Profile sidebar card */
.candidate-profile-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 16px rgba(5,14,43,.07);
	padding: 2rem 1.5rem;
	position: sticky;
	top: 2rem;
	text-align: center;
}

.candidate-profile-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--color-navy-dark);
	color: var(--color-yellow);
	font-size: 1.5rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.candidate-profile-name {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin: 0 0 .25rem;
}

.candidate-profile-title {
	font-size: .875rem;
	color: #6b7a9a;
	margin: 0 0 1.25rem;
}

.candidate-profile-meta-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
	border-top: 1px solid #f0f4f8;
	padding-top: 1rem;
	text-align: left;
}

.candidate-profile-meta-list li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: .85rem;
	color: #4a5568;
	padding: .35rem 0;
}
.candidate-profile-meta-list li svg { flex-shrink: 0; margin-top: 1px; color: #8492a6; }

.candidate-profile-social { margin-bottom: 1rem; }
.candidate-profile-linkedin {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: .85rem;
	font-weight: 600;
	color: #0a66c2;
	text-decoration: none;
	padding: .4rem .85rem;
	border-radius: 8px;
	border: 1.5px solid #bfdbfe;
	background: #eff6ff;
}
.candidate-profile-linkedin:hover { background: #dbeafe; }

.candidate-profile-section-label {
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: #8492a6;
	margin: 0 0 .5rem;
}

.candidate-profile-badges {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem;
	justify-content: center;
}

/* Profile main content */
.candidate-profile-main { display: flex; flex-direction: column; gap: 1.5rem; }

.candidate-profile-section {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 16px rgba(5,14,43,.07);
	padding: 1.75rem 2rem;
}

.candidate-profile-section-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin: 0 0 1rem;
	padding-bottom: .75rem;
	border-bottom: 2px solid #f0f4f8;
}

.candidate-profile-bio,
.candidate-profile-text {
	font-size: .9rem;
	color: #4a5568;
	line-height: 1.7;
	margin: 0;
}

.candidate-profile-safeguarding {
	display: flex;
	align-items: flex-start;
	gap: .75rem;
	background: #ecfdf5;
	border: 1.5px solid #a7f3d0;
	border-radius: 10px;
	padding: .9rem 1.1rem;
	font-size: .875rem;
	color: #064e3b;
}
.candidate-profile-safeguarding svg { flex-shrink: 0; color: #10b981; margin-top: 1px; }

.candidate-profile-refs-note {
	font-size: .825rem;
	color: #6b7a9a;
	margin: 0 0 1rem;
	font-style: italic;
}

/* Responsive: Candidate Search + Profile */
@media (max-width: 1024px) {
	.candidate-search-wrap { grid-template-columns: 240px 1fr; gap: 1.5rem; padding: 1.5rem 1.25rem; }
	.candidate-profile-grid { grid-template-columns: 240px 1fr; }
}

@media (max-width: 768px) {
	.candidate-search-wrap { grid-template-columns: 1fr; }
	.candidate-search-filter-panel { position: static; }
	.candidate-profile-grid { grid-template-columns: 1fr; }
	.candidate-profile-card { position: static; text-align: left; }
	.candidate-profile-avatar { margin-left: 0; }
	.candidate-profile-badges { justify-content: flex-start; }
	.candidate-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.sky-status-banner { flex-direction: column; }
	.sky-visibility-toggle-wrap { width: 100%; justify-content: flex-start; }
	.sky-approval-gate { padding: 2rem 1.25rem; }
}

/* ============================================================
   PRICING CARDS (shared: pricing page + subscription tab)
   ============================================================ */

.sky-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.75rem;
	align-items: start;
}

.sky-pricing-grid--compact {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 1rem;
}

.sky-pricing-card {
	background: #fff;
	border: 1.5px solid #e9edf3;
	border-radius: 16px;
	padding: 2rem;
	position: relative;
	display: flex;
	flex-direction: column;
	transition: box-shadow .2s ease;
}

.sky-pricing-card:hover {
	box-shadow: 0 8px 30px rgba(5,14,43,.1);
}

.sky-pricing-card--featured {
	border-color: var(--color-yellow);
	box-shadow: 0 4px 24px rgba(5,14,43,.12);
}

.sky-pricing-card--compact {
	padding: 1.25rem;
	border-radius: 10px;
}

.sky-pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-yellow);
	color: var(--color-navy-dark);
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: .25rem .75rem;
	border-radius: 20px;
	white-space: nowrap;
}

.sky-pricing-card-header { margin-bottom: 1.5rem; }

.sky-pricing-plan-name {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin: 0 0 .5rem;
}

.sky-pricing-price {
	display: flex;
	align-items: baseline;
	gap: .3rem;
}

.sky-pricing-amount {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	line-height: 1;
}

.sky-pricing-period {
	font-size: .9rem;
	color: #6b7a9a;
}

.sky-pricing-feature-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .6rem;
	flex: 1;
}

.sky-pricing-feature-list--compact {
	margin-bottom: 0;
	gap: .4rem;
}

.sky-pricing-feature {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	font-size: .875rem;
	line-height: 1.4;
}

.sky-pricing-feature svg { flex-shrink: 0; margin-top: 1px; }

.sky-pricing-feature--yes { color: #1a2a4a; }
.sky-pricing-feature--yes svg { color: #16a34a; }

.sky-pricing-feature--no { color: #94a3b8; }
.sky-pricing-feature--no svg { color: #c5d0e0; }

.sky-pricing-card-footer { margin-top: auto; }

.sky-pricing-cta {
	width: 100%;
	text-align: center;
}

/* ============================================================
   SUBSCRIPTION TAB — Employer Dashboard
   ============================================================ */

.sky-subscription-card {
	background: #fff;
	border: 1.5px solid #e9edf3;
	border-radius: 14px;
	padding: 1.75rem;
	margin-bottom: 1.5rem;
}

.sky-subscription-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: .75rem;
	margin-bottom: 1.25rem;
}

.sky-plan-badge {
	display: inline-block;
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: .3rem .85rem;
	border-radius: 20px;
	margin-right: .5rem;
}

.sky-plan-badge--none       { background: #f1f5f9; color: #64748b; }
.sky-plan-badge--starter    { background: #eff6ff; color: #1d4ed8; }
.sky-plan-badge--professional { background: #f0fdf4; color: #15803d; }
.sky-plan-badge--premium    { background: #fefce8; color: #a16207; border: 1.5px solid var(--color-yellow); }

.sky-sub-status {
	display: inline-block;
	font-size: .75rem;
	font-weight: 600;
	padding: .2rem .65rem;
	border-radius: 20px;
}

.sky-sub-status--active    { background: #dcfce7; color: #15803d; }
.sky-sub-status--past-due  { background: #fef3c7; color: #92400e; }
.sky-sub-status--cancelled { background: #fee2e2; color: #dc2626; }

.sky-upgrade-link {
	font-size: .875rem;
	font-weight: 600;
	color: #1d4ed8;
	text-decoration: none;
}
.sky-upgrade-link:hover { text-decoration: underline; }

.sky-subscription-expiry {
	display: flex;
	align-items: center;
	gap: .4rem;
	font-size: .85rem;
	color: #6b7a9a;
	margin: 0 0 1rem;
}

.sky-contacts-meter { margin: 0 0 1.25rem; }

.sky-contacts-meter-label {
	display: flex;
	justify-content: space-between;
	font-size: .825rem;
	color: #4a5568;
	margin-bottom: .4rem;
}

.sky-contacts-meter-bar {
	height: 8px;
	background: #e9edf3;
	border-radius: 4px;
	overflow: hidden;
}

.sky-contacts-meter-fill {
	height: 100%;
	background: var(--color-navy-dark);
	border-radius: 4px;
	transition: width .4s ease;
}

.sky-contacts-meter-note {
	font-size: .775rem;
	color: #6b7a9a;
	margin: .4rem 0 0;
}

.sky-contacts-unlimited {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .875rem;
	color: #15803d;
	background: #dcfce7;
	border-radius: 8px;
	padding: .6rem .9rem;
	margin: 0 0 1.25rem;
	font-weight: 600;
}

.sky-subscription-features { margin: 0 0 1.25rem; }

.sky-subscription-features-title {
	font-size: .8rem;
	font-weight: 700;
	color: #6b7a9a;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin: 0 0 .6rem;
}

.sky-subscription-actions {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
}

/* ============================================================
   SUBSCRIPTION GATE — Candidate Search page
   ============================================================ */

.sky-subscription-gate {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding: 2rem;
}

.sky-subscription-gate-inner {
	background: #fff;
	border: 1.5px solid #e9edf3;
	border-radius: 20px;
	padding: 3rem 2.5rem;
	max-width: 560px;
	width: 100%;
	text-align: center;
}

.sky-subscription-gate-icon {
	width: 72px;
	height: 72px;
	background: #f0f4f8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--color-navy-dark);
}

.sky-subscription-gate-inner h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin: 0 0 .75rem;
}

.sky-subscription-gate-inner p {
	font-size: .95rem;
	color: #4a5568;
	margin: 0 0 1.5rem;
	line-height: 1.6;
}

.sky-gate-features {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin: 0 0 2rem;
	text-align: left;
}

.sky-gate-feature {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	font-size: .875rem;
	color: #1a2a4a;
	line-height: 1.4;
}

.sky-gate-feature svg { flex-shrink: 0; color: #16a34a; margin-top: 1px; }

/* ============================================================
   CONTACT REVEAL — Candidate Cards
   ============================================================ */

.sky-contact-reveal-btn {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .8rem;
	font-weight: 600;
	color: #fff;
	background: var(--color-navy-dark);
	border: none;
	border-radius: 7px;
	padding: .4rem .8rem;
	cursor: pointer;
	transition: background .2s;
	margin-top: .5rem;
}

.sky-contact-reveal-btn:hover { background: #0a1a3a; }
.sky-contact-reveal-btn:disabled { opacity: .6; cursor: wait; }

.sky-contact-revealed {
	margin-top: .5rem;
	font-size: .8rem;
	line-height: 1.6;
}

.sky-revealed-email,
.sky-revealed-phone {
	display: block;
	color: var(--color-navy-dark);
	font-weight: 600;
}

.sky-contact-locked {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .775rem;
	color: #94a3b8;
	margin-top: .5rem;
}

/* ============================================================
   PLAN COMPARISON V2
   ============================================================ */
.sky-plan-comparison-wrap {
	margin-top: 2rem;
}

.sky-plan-comparison-header {
	margin-bottom: 1.5rem;
}

.sky-plan-comparison-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin: 0 0 .3rem;
}

.sky-plan-comparison-sub {
	font-size: .85rem;
	color: #6b7a9a;
	margin: 0;
}

.sky-plan-comparison-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	align-items: stretch;
}

.sky-pcv2-card {
	background: #fff;
	border: 1.5px solid #e4e9f2;
	border-radius: 16px;
	padding: 1.75rem 1.5rem 1.5rem;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
}

.sky-pcv2-card:hover {
	box-shadow: 0 10px 36px rgba(5,14,43,.1);
	transform: translateY(-3px);
}

.sky-pcv2-card--popular {
	border-color: var(--color-navy-dark);
	box-shadow: 0 6px 28px rgba(5,14,43,.13);
}

.sky-pcv2-card--active {
	border-color: #16a34a;
	box-shadow: 0 4px 20px rgba(22,163,74,.15);
}

/* Coloured top stripe */
.sky-pcv2-stripe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 16px 16px 0 0;
}

/* Badges */
.sky-pcv2-popular-badge {
	display: inline-block;
	background: var(--color-navy-dark);
	color: var(--color-yellow);
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	padding: .22rem .7rem;
	border-radius: 20px;
	margin-bottom: 1rem;
	align-self: flex-start;
}

.sky-pcv2-current-badge {
	display: inline-block;
	background: #dcfce7;
	color: #15803d;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	padding: .22rem .7rem;
	border-radius: 20px;
	margin-bottom: 1rem;
	align-self: flex-start;
}

/* Icon circle */
.sky-pcv2-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.sky-pcv2-name {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	margin-bottom: .35rem;
}

.sky-pcv2-price {
	display: flex;
	align-items: baseline;
	gap: .1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid #f0f2f7;
}

.sky-pcv2-currency {
	font-size: 1rem;
	font-weight: 600;
	color: #6b7a9a;
	align-self: flex-start;
	margin-top: .35rem;
}

.sky-pcv2-price {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-navy-dark);
	line-height: 1;
}

.sky-pcv2-period {
	font-size: .85rem;
	color: #6b7a9a;
	font-weight: 400;
}

/* Feature list */
.sky-pcv2-features {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: .6rem;
	flex: 1;
}

.sky-pcv2-features li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: .85rem;
	color: #374151;
	line-height: 1.45;
}

.sky-pcv2-features li svg {
	flex-shrink: 0;
	margin-top: 1px;
}

/* Footer */
.sky-pcv2-footer {
	margin-top: auto;
}

.sky-pcv2-btn {
	display: block;
	width: 100%;
	padding: .65rem 1rem;
	border: none;
	border-radius: 10px;
	color: #fff;
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	transition: opacity .2s ease, transform .15s ease;
	text-align: center;
}

.sky-pcv2-btn:hover {
	opacity: .88;
	transform: translateY(-1px);
}

.sky-pcv2-current-label {
	display: block;
	text-align: center;
	font-size: .85rem;
	font-weight: 600;
	color: #16a34a;
	padding: .5rem 0;
}

@media (max-width: 768px) {
	.sky-plan-comparison-grid {
		grid-template-columns: 1fr;
	}
	.sky-pcv2-card--popular {
		order: -1;
	}
}

/* ============================================================
   RESPONSIVE — Subscription / Pricing
   ============================================================ */

@media (max-width: 900px) {
	.sky-pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
	.sky-pricing-grid { grid-template-columns: 1fr; }
	.sky-subscription-card { padding: 1.25rem; }
	.sky-subscription-actions { flex-direction: column; }
	.sky-subscription-gate-inner { padding: 2rem 1.25rem; }
}

/* â”€â”€ Shortlist / Save button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sky-shortlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: .4rem .85rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    color: #64748b;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .18s ease;
    line-height: 1;
}
.sky-shortlist-btn:hover {
    border-color: #f43f5e;
    color: #f43f5e;
}
.sky-shortlist-btn.is-saved {
    border-color: #f43f5e;
    background: #fff1f2;
    color: #f43f5e;
}
.sky-shortlist-btn:disabled { opacity: .6; cursor: default; }

.candidate-avatar-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* ============================================================
   CHANGE EMAIL SECTION
   ============================================================ */
.sky-change-email-wrap {
	margin-top: 1rem;
	padding-top: 2rem;
	border-top: 1px solid #f0f2f7;
}

.sky-change-email-note {
	font-size: .9rem;
	color: #6b7280;
	margin: 0 0 1.25rem;
}

.sky-pending-email-badge {
	display: inline-block;
	background: #fef9ec;
	color: #b45309;
	border: 1px solid #fde68a;
	font-size: .75rem;
	font-weight: 600;
	padding: .2rem .55rem;
	border-radius: 20px;
}
