:root {
  --cl-primary: #124B8A;
  --cl-secondary: #2196D4;
  --cl-indigo: #2F3382;
  --cl-deep: #2F3382;
  --cl-accent: #EB5324;
  --cl-text: #000000;
  --cl-muted: #444444;
  --cl-white: #ffffff;
  --cl-light-bg: #f5f7fa;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: clamp(2rem, 6vw, 4rem);
  --space-xl: clamp(3rem, 8vw, 6rem);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(18, 75, 138, 0.10), 0 1px 4px rgba(18, 75, 138, 0.06);
  --shadow-card: 0 2px 8px rgba(18, 75, 138, 0.08), 0 8px 32px rgba(18, 75, 138, 0.06);
  --shadow-hero: 0 20px 60px rgba(18, 75, 138, 0.18), 0 4px 16px rgba(18, 75, 138, 0.10);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--cl-text);
  background: var(--cl-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cl-text);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}

h2 {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

h3 {
  font-family: var(--font-body);
  font-weight: 700;
}

p { color: var(--cl-text); line-height: 1.7; }

a {
  color: var(--cl-text);
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover { color: var(--cl-primary); }

a:focus-visible {
  outline: 2px solid var(--cl-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

ul { list-style: none; }

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

button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* Shared utilities */

.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cl-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.accent { color: var(--cl-accent); }
.accent--blue { color: var(--cl-primary); }
.accent--hero { color: var(--cl-secondary); }

.section-heading { text-align: center; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  border: 2px solid transparent;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.18s ease;
}

.btn--primary {
  background: var(--cl-primary);
  color: var(--cl-white);
  box-shadow: 0 4px 16px rgba(18, 75, 138, 0.25);
}
.btn--primary:hover { color: var(--cl-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18, 75, 138, 0.32); }
.btn--primary:active { transform: translateY(0); }
.btn--primary:focus-visible { outline: 2px solid var(--cl-primary); outline-offset: 3px; }

.btn--outline {
  background: transparent;
  color: var(--cl-primary);
  border-color: var(--cl-primary);
}
.btn--outline:hover { color: var(--cl-primary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(18, 75, 138, 0.16); }
.btn--outline:active { transform: translateY(0); }
.btn--outline:focus-visible { outline: 2px solid var(--cl-primary); outline-offset: 3px; }

.btn--inverted {
  background: var(--cl-white);
  color: var(--cl-primary);
  border-color: var(--cl-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn--inverted:hover { color: var(--cl-primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22); }
.btn--inverted:active { transform: translateY(0); }
.btn--inverted:focus-visible { outline: 2px solid var(--cl-white); outline-offset: 3px; }

/* Top bar */

.top-bar {
  background: #f4f5f8;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-md);
}

.top-bar__link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--cl-text);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.18s ease;
}
.top-bar__link:hover,
.top-bar__link:active { color: var(--cl-accent); }
.top-bar__link:focus-visible { outline: 2px solid var(--cl-primary); outline-offset: 3px; border-radius: 2px; }
.top-bar__link--hidden { display: none; }

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cl-white);
  border-bottom: 1px solid rgba(18, 75, 138, 0.12);
  transition: box-shadow 0.18s ease;
}

.nav--scrolled { box-shadow: 0 2px 16px rgba(18, 75, 138, 0.12); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.nav__phone {
  display: none;
}

.nav__logo { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav__logo:focus-visible { outline: 2px solid var(--cl-primary); outline-offset: 3px; border-radius: 2px; }

.nav__logo-icon { font-size: 1.5rem; color: var(--cl-primary); }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000000;
}
.footer__logo .nav__logo-icon,
.footer__logo .nav__logo-text { color: #ffffff; }

.nav__links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cl-white);
  border-bottom: 1px solid rgba(18, 75, 138, 0.12);
  padding: 0.5rem var(--space-sm);
  gap: 0.125rem;
  z-index: 99;
}

.nav--open .nav__links { display: flex; }

.nav__links a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 6px;
  color: var(--cl-text);
  transition: color 0.18s ease, background 0.18s ease;
}

.nav__icon {
  width: 1rem;
  text-align: center;
  color: var(--cl-primary);
  flex-shrink: 0;
}

.nav__links a:hover,
.nav__links a:active,
.nav__links a.active {
  color: var(--cl-primary);
  background: rgba(18, 75, 138, 0.06);
}

.nav__links a:focus-visible { outline: 2px solid var(--cl-primary); outline-offset: -2px; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cl-text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav--open .nav__hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav--open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav--open .nav__hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.nav__hamburger:focus-visible { outline: 2px solid var(--cl-primary); outline-offset: 4px; border-radius: 4px; }

@media (min-width: 768px) {
  .nav__hamburger { display: none; }

  .nav__phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cl-text);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.18s ease;
  }

  .nav__phone i { color: var(--cl-primary); font-size: 0.8125rem; }
  .nav__phone:hover { color: var(--cl-primary); }

  .nav__links {
    display: flex;
    flex: 1;
    flex-direction: row;
    position: static;
    border: none;
    padding: 0;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
  }
  .nav__links a { padding: 0.5rem 0.75rem; }
  .nav__icon { display: none; }
}

/* Hide Candidate Login pill from mobile hamburger; it remains on desktop */
@media (max-width: 767px) {
  .nav__links li:has(.nav__cta) { display: none; }
}

/* Nav pill CTA button */
.nav__cta {
  background: var(--cl-primary);
  color: var(--cl-white);
  padding: 0.5rem 1.375rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--cl-secondary); color: var(--cl-white); transform: translateY(-1px); }
.nav__cta:focus-visible { outline: 2px solid var(--cl-primary); outline-offset: 3px; border-radius: 50px; }

/* Admin dropdown submenu */
.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 6px;
  color: var(--cl-text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.18s ease, background 0.18s ease;
  width: 100%;
  text-align: left;
}

.nav__dropdown-toggle:hover,
.nav__dropdown.open .nav__dropdown-toggle,
.nav__dropdown:has(.active) .nav__dropdown-toggle {
  color: var(--cl-primary);
  background: rgba(18, 75, 138, 0.06);
}

.nav__dropdown-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
  margin-left: auto;
}

.nav__dropdown.open .nav__dropdown-arrow { transform: rotate(180deg); }

.nav__submenu {
  display: none;
  list-style: none;
  padding: 0 0 0 1.5rem;
  margin: 0;
}

.nav__dropdown.open .nav__submenu { display: block; }

@media (min-width: 768px) {
  .nav__dropdown-toggle { padding: 0.5rem 0.75rem; width: auto; }
  .nav__dropdown-toggle .nav__icon { display: none; }
  .nav__dropdown-arrow { margin-left: 0.25rem; }

  .nav__submenu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 150px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(18, 75, 138, 0.14);
    border: 1px solid rgba(18, 75, 138, 0.08);
    padding: 0.35rem 0;
    z-index: 200;
  }

  .nav__submenu a { padding: 0.5rem 1rem !important; white-space: nowrap; border-radius: 0; }
  .nav__submenu li:first-child a { border-radius: 8px 8px 0 0; }
  .nav__submenu li:last-child a { border-radius: 0 0 8px 8px; }
}

/* Hero — home page: centred text + mockup below */

.hero {
  background: var(--cl-light-bg);
  padding: var(--space-xl) 0 0;
}


.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  max-width: 740px;
}

.hero__text .kicker { margin-bottom: -0.5rem; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero__text h1 { max-width: none; }

.hero__text > p {
  font-size: 1.0625rem;
  max-width: 52ch;
  color: var(--cl-muted);
}

/* Mockup image (home hero) — full-width below centred text, mobile only */
.hero__mockup {
  width: 100%;
  max-width: 1100px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  margin-top: var(--space-sm);
}

@media (min-width: 700px) {
  .hero__mockup { display: none; }
  .hero { padding-bottom: var(--space-lg); }
  .hero + .feature { padding-top: var(--space-lg); }
}

.hero__mockup img {
  width: 100%;
  display: block;
}

/* 2x2 photo grid (about hero) */
.hero--split .hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  align-items: center;
  text-align: left;
  padding-bottom: var(--space-xl);
}

.hero--split .hero__text {
  align-items: flex-start;
  max-width: none;
}

.hero--split .hero__text > p { max-width: 44ch; }

.hero--split { padding-bottom: 0; }

.hero__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.hero__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Feature sections */

.feature { padding: var(--space-xl) 0; }
.feature--alt { background: var(--cl-light-bg); }

.feature__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  align-items: center;
}

@media (max-width: 599px) {
  .feature__content { order: 1; }
  .feature__image-stack,
  .feature__inner > .feature__image { order: 2; }
  .feature__image-stack .feature__image:last-child { display: none; }
}

.feature__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature__accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--cl-accent);
  border-radius: 2px;
}

.feature__content h2 { max-width: 24ch; }

.feature__content > p {
  max-width: 46ch;
  color: var(--cl-muted);
  font-size: 0.9375rem;
}

/* Check-list bullet style (replaces old feature__list) */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.check-item__bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cl-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item__bullet i {
  font-size: 0.6rem;
  color: var(--cl-white);
}

.check-item__body { flex: 1; }

.check-item__title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--cl-text);
  margin-bottom: 0.25rem;
}

.check-item__desc {
  font-size: 0.875rem;
  color: var(--cl-muted);
  line-height: 1.6;
}

/* Feature image */
.feature__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Feature image stack (2 stacked images) */
.feature__image-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature__image-stack .feature__image {
  aspect-ratio: 16 / 9;
}

/* Trust strip */

.trust-strip {
  background: var(--cl-light-bg);
  padding: var(--space-xl) 0;
}

.trust-strip__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
  text-align: center;
}

.trust-strip__heading h2 { max-width: 28ch; margin: 0 auto; }
.trust-strip__heading p { max-width: 44ch; margin: 0.5rem auto 0; color: var(--cl-muted); }

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  width: 100%;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.trust-item__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(18, 75, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item__icon i { font-size: 1.375rem; color: var(--cl-primary); }

.trust-item__title { font-weight: 700; font-size: 0.9375rem; }

.trust-item__desc { font-size: 0.875rem; color: var(--cl-muted); line-height: 1.5; max-width: 18ch; }

/* Social proof */

.social-proof { padding: var(--space-xl) 0; }

.social-proof__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (max-width: 768px) {
  .social-proof__inner { grid-template-columns: 1fr; }
}

.social-proof__stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.social-proof__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  margin-bottom: var(--space-sm);
}

.social-proof__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-proof__num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--cl-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.social-proof__label { font-size: 0.9375rem; color: var(--cl-muted); }

.social-proof__quote {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.social-proof__text {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--cl-muted);
}

.social-proof__text::before { content: '\201C'; }
.social-proof__text::after { content: '\201D'; }

.social-proof__name { font-weight: 700; font-size: 0.9375rem; }
.social-proof__role { font-size: 0.875rem; color: var(--cl-muted); }

/* Logo grid / ticker */

.logo-grid {
  background: var(--cl-white);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(18, 75, 138, 0.08);
  border-bottom: 1px solid rgba(18, 75, 138, 0.08);
  overflow: hidden;
}

@media (min-width: 768px) {
  .logo-grid { padding: var(--space-md) 0; }
}

.logo-grid__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

/* Ticker */
.logo-ticker {
  overflow: hidden;
  width: 100%;
  padding: var(--space-md) 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-ticker__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: ticker-scroll 56s linear infinite;
}

.logo-ticker__track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-placeholder {
  background: var(--cl-light-bg);
  border-radius: var(--radius);
  height: 96px;
  width: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.accreditation-img {
  max-width: 72px;
  max-height: 72px;
  width: auto;
  height: auto;
  filter: grayscale(1) opacity(0.55);
  display: block;
}

.logo-placeholder span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* CTA banner */

.cta-banner {
  background: var(--cl-primary);
  padding: var(--space-xl) 0;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.cta-banner__inner h2 {
  color: var(--cl-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 24ch;
}

.cta-banner__inner > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  max-width: 46ch;
}

/* Platform preview (dark section) */

.platform-preview {
  background: var(--cl-deep);
  padding: var(--space-xl) 0;
}

.platform-preview__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.platform-preview__heading { text-align: center; }
.platform-preview__heading .kicker { color: rgba(255, 255, 255, 0.55); }
.platform-preview__heading h2 { color: var(--cl-white); margin-top: 0.5rem; }
.platform-preview__heading h2 .accent { color: var(--cl-accent); }
.platform-preview__heading p { color: rgba(255, 255, 255, 0.6); margin-top: 0.5rem; }

.platform-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.preview-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 10;
}

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.preview-card:hover img { transform: scale(1.04); }

/* Footer */

footer {
  background: var(--cl-deep);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  text-align: center;
}

.footer__brand {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.footer__logo { display: inline-flex; align-items: center; }
.footer__logo:hover { opacity: 0.8; }
.footer__logo:focus-visible { outline: 2px solid var(--cl-white); outline-offset: 3px; border-radius: 2px; }

.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 28ch;
}

.footer__social { display: flex; gap: 0.75rem; justify-content: center; width: 100%; margin-top: 0.25rem; }

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cl-white);
  font-size: 1rem;
  transition: background 0.18s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer__social a:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); color: var(--cl-white); }
.footer__social a:active { transform: translateY(0); }
.footer__social a:focus-visible { outline: 2px solid var(--cl-white); outline-offset: 3px; }

.footer__cols {
  flex: 2 1 360px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer__col { flex: 1 1 130px; min-width: 0; text-align: center; }

.footer__col-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cl-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.875rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__col a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.18s ease;
}

.footer__col a:hover { color: var(--cl-white); }
.footer__col a:focus-visible { outline: 2px solid var(--cl-white); outline-offset: 3px; border-radius: 2px; }

.footer__bottom {
  flex: 0 0 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer__legal { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }

.footer__legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.18s ease;
}

.footer__legal a:hover { color: var(--cl-white); }
.footer__legal a:focus-visible { outline: 2px solid var(--cl-white); outline-offset: 3px; border-radius: 2px; }

.footer__copyright { font-size: 0.875rem; color: rgba(255, 255, 255, 0.35); }

/* ===========================
   ABOUT PAGE COMPONENTS
   =========================== */

/* Value cards (horizontal) */

.values { padding: var(--space-xl) 0; }

.values__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.values__heading { text-align: center; }
.values__heading .kicker { margin-bottom: 0.5rem; }

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.value-card {
  background: var(--cl-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid rgba(18, 75, 138, 0.06);
}

.value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(18, 75, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card__icon i { font-size: 1.125rem; color: var(--cl-primary); }

.value-card__body { display: flex; flex-direction: column; gap: 0.375rem; }

.value-card__title { font-weight: 700; font-size: 1rem; line-height: 1.3; }

.value-card__desc { font-size: 0.875rem; color: var(--cl-muted); line-height: 1.65; }

/* Our Story — images with badge */

.story-images {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.story-images__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.story-images__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}

.story-images__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-images__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--cl-primary);
  color: var(--cl-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  text-align: center;
  gap: 2px;
}

.story-images__badge-num {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.story-images__badge-label {
  font-size: 0.6875rem;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.3;
  padding: 0 0.625rem;
  text-align: center;
}

/* Story inline stats */

.story-stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(18, 75, 138, 0.10);
}

.story-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.story-stat__num {
  display: block;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--cl-primary);
  line-height: 1;
}

.story-stat__label {
  display: block;
  font-size: 0.8125rem;
  color: var(--cl-muted);
  margin-top: 0.25rem;
}

/* Team */

.team {
  padding: var(--space-xl) 0;
  background: var(--cl-white);
}

.team__split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (max-width: 768px) {
  .team__split { grid-template-columns: 1fr; }
}

.team__intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.team__intro h2 { max-width: 22ch; }

.team__intro > p { font-size: 0.9375rem; color: var(--cl-muted); line-height: 1.7; }

.team__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
}

.team-card {
  background: var(--cl-light-bg);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__name { font-weight: 700; font-size: 1rem; color: var(--cl-primary); }

.team-card__role { font-size: 0.75rem; color: var(--cl-muted); font-weight: 500; }

.team-card__bio { font-size: 0.8125rem; color: var(--cl-muted); line-height: 1.6; margin-top: 0.25rem; }

.team-card__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cl-primary);
  color: var(--cl-white);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  transition: background 0.18s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card__social:hover { background: var(--cl-secondary); color: var(--cl-white); transform: translateY(-2px); }

/* Vision / Mission / Purpose */

.vmp {
  background: var(--cl-white);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(18, 75, 138, 0.08);
  border-bottom: 1px solid rgba(18, 75, 138, 0.08);
}

@media (min-width: 768px) {
  .vmp { padding: var(--space-xl) 0; }
}

.vmp__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .vmp__inner { gap: var(--space-md); }
}

.vmp-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: var(--space-sm);
}

@media (min-width: 768px) {
  .vmp-card { padding: var(--space-md) var(--space-sm); }
}

.vmp-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(18, 75, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vmp-card__icon i { font-size: 1.375rem; color: var(--cl-primary); }

.vmp-card__body { display: flex; flex-direction: column; gap: 0.375rem; }

.vmp-card__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cl-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vmp-card__text {
  font-size: 0.9375rem;
  color: var(--cl-text);
  line-height: 1.6;
}

/* Case studies */

.case-studies {
  background: var(--cl-light-bg);
  padding: var(--space-xl) 0;
}

.case-studies__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.case-studies__heading { text-align: center; }
.case-studies__heading .kicker { margin-bottom: 0.5rem; }

.case-studies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  width: 100%;
}

.case-card {
  background: var(--cl-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.case-card__img { aspect-ratio: 16/9; overflow: hidden; }

.case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.case-card:hover .case-card__img img { transform: scale(1.04); }

.case-card__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.case-card__name { font-weight: 700; font-size: 1rem; color: var(--cl-primary); }

.case-card__desc { font-size: 0.875rem; color: var(--cl-muted); line-height: 1.55; }

/* Results section (about page) */

.results {
  padding: var(--space-xl) 0;
  background: var(--cl-white);
}

.results__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 768px) {
  .results__inner { grid-template-columns: 1fr; }
}

.results__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.results__content h2 { max-width: 26ch; }

.results__content > p { font-size: 0.9375rem; color: var(--cl-muted); }

.results__stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(18, 75, 138, 0.10);
}

.results-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.results-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cl-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.results-stat__stars {
  color: #f4b942;
  font-size: 0.75rem;
  display: flex;
  gap: 2px;
  margin: 0.125rem 0;
}

.results-stat__label {
  font-size: 0.8125rem;
  color: var(--cl-muted);
}

.results__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}

.results__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Disciplines section */

.disciplines {
  position: relative;
  padding: var(--space-md) 0 var(--space-xl);
  background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920&h=1080&fit=crop&auto=format&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 767px) {
  .disciplines { background-attachment: scroll; }
}

.disciplines::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 38, 72, 0.82);
  z-index: 0;
}

.disciplines__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.disciplines__heading {
  text-align: center;
  max-width: 48ch;
  margin: 0 auto;
  color: var(--cl-white);
}

.disciplines__heading .kicker { color: var(--cl-accent); }

.disciplines__heading h2 { color: var(--cl-white); }
.disciplines__heading h2 .accent--blue { color: var(--cl-secondary); }

.disciplines__heading p:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  margin-top: 0.75rem;
}

.disciplines__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .disciplines__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .disciplines__grid { grid-template-columns: repeat(3, 1fr); }
}

.discipline-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.discipline-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cl-white);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.discipline-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cl-white);
  line-height: 1.3;
}

.discipline-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.discipline-card__list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  padding-left: 1rem;
  position: relative;
}

.discipline-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cl-accent);
}

/* Role-based visibility (demo switcher) */
.role-employer { display: none; }
.role-candidate { display: none; }

[data-role="employer"] .role-employer { display: block; }
[data-role="employer"] .role-candidate { display: block; }
[data-role="candidate"] .role-candidate { display: block; }
[data-role="candidate"] .btn--register { display: none; }
[data-role="visitor"] .btn--register { display: none; }

.role-switcher {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--cl-text);
  margin-right: auto;
}

.role-switcher__label { color: var(--cl-muted); }

.role-switcher__btn {
  background: var(--cl-primary);
  color: var(--cl-white);
  border: none;
  border-radius: 6px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.role-switcher__btn:hover { opacity: 0.8; }

/* Back to top */

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cl-primary);
  color: var(--cl-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(18, 75, 138, 0.30);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.18s ease;
  pointer-events: none;
  z-index: 300;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover { background: var(--cl-secondary); }
.back-to-top:active { transform: translateY(2px); }
.back-to-top:focus-visible { outline: 2px solid var(--cl-primary); outline-offset: 3px; }

.back-to-top__ring {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 54px;
  height: 54px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.back-to-top__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 3;
}

.back-to-top__fill {
  fill: none;
  stroke: var(--cl-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.1s linear;
}

/* ===========================
   JOBS PAGE COMPONENTS
   =========================== */

/* Page Hero — compact interior page header */

.page-hero {
  background: var(--cl-primary);
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?w=1920&h=600&fit=crop&auto=format&q=60');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.18;
  z-index: 0;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 680px;
}

.page-hero h1 {
  color: var(--cl-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-hero > .page-hero__inner > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 52ch;
}

/* Breadcrumb */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.25rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.18s ease;
}

.breadcrumb a:hover { color: var(--cl-white); }

.breadcrumb i {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.85);
}

/* Jobs section layout */

.jobs-section {
  padding: var(--space-xl) 0;
  background: var(--cl-light-bg);
}

.jobs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 900px) {
  .jobs-layout {
    grid-template-columns: 240px 1fr;
  }
}

/* Filter sidebar */

.jobs-sidebar {
  background: var(--cl-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(18, 75, 138, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jobs-sidebar__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cl-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(18, 75, 138, 0.08);
  margin-bottom: -0.5rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cl-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.125rem;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cl-muted);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.filter-btn:hover {
  color: var(--cl-primary);
  background: rgba(18, 75, 138, 0.06);
}

.filter-btn.active {
  color: var(--cl-primary);
  background: rgba(18, 75, 138, 0.08);
  font-weight: 700;
}

.filter-btn:focus-visible {
  outline: 2px solid var(--cl-primary);
  outline-offset: -2px;
}

.filter-reset {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cl-accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem 0;
  transition: opacity 0.18s ease;
}

.filter-reset:hover { opacity: 0.75; }
.filter-reset:focus-visible { outline: 2px solid var(--cl-accent); outline-offset: 3px; border-radius: 2px; }

/* Jobs main column */

.jobs-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.jobs-count-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.jobs-count {
  font-weight: 700;
  font-size: 1rem;
  color: var(--cl-text);
}

.jobs-count span {
  color: var(--cl-primary);
}

.jobs-updated {
  font-size: 0.8125rem;
  color: var(--cl-muted);
}

/* Job list */

.job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Job card */

.job-card {
  background: var(--cl-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(18, 75, 138, 0.07);
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

@media (min-width: 600px) {
  .job-card {
    grid-template-columns: 1fr auto;
  }
}

.job-card:hover {
  box-shadow: 0 8px 32px rgba(18, 75, 138, 0.14);
  transform: translateY(-2px);
  border-color: rgba(18, 75, 138, 0.18);
}

.job-card[hidden] {
  display: none;
}

.job-card__main {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.job-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.job-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cl-text);
  line-height: 1.3;
}

.job-card__company {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cl-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.job-card__company--alt {
  color: #c0392b;
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.3rem 0.625rem;
  border-radius: 20px;
  line-height: 1;
}

.job-tag i { font-size: 0.75rem; }

.job-tag--location {
  background: rgba(18, 75, 138, 0.07);
  color: var(--cl-primary);
}

.job-tag--type {
  background: rgba(33, 150, 212, 0.10);
  color: var(--cl-secondary);
}

.job-tag--date {
  background: rgba(235, 83, 36, 0.08);
  color: var(--cl-accent);
}

.job-card__desc {
  font-size: 0.9375rem;
  color: var(--cl-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card__footer {
  margin-top: 0.25rem;
}

/* Small button variant */

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Job card side panel */

.job-card__side {
  padding: 1.25rem 1.25rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 120px;
}

@media (max-width: 599px) {
  .job-card__side {
    flex-direction: row;
    align-items: center;
    padding: 0 1.5rem 1.25rem;
  }
}

.job-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.job-badge--new {
  background: rgba(47, 51, 130, 0.10);
  color: var(--cl-indigo);
}

.job-employer-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-align: right;
  line-height: 1.3;
}

/* No results state */

.jobs-empty {
  background: var(--cl-white);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(18, 75, 138, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.jobs-empty__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(18, 75, 138, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--cl-primary);
}

.jobs-empty h3 {
  font-size: 1.125rem;
  color: var(--cl-text);
}

.jobs-empty p {
  font-size: 0.9375rem;
  color: var(--cl-muted);
  max-width: 40ch;
}

.jobs-empty a { color: var(--cl-primary); text-decoration: underline; }

/* Register Interest section */

.register-interest {
  background: var(--cl-white);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(18, 75, 138, 0.08);
}

.register-interest__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .register-interest__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.register-interest__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register-interest__content h2 { max-width: 24ch; }

.register-interest__content > p {
  font-size: 0.9375rem;
  color: var(--cl-muted);
  line-height: 1.7;
}

.register-interest__list .check-item__desc {
  font-size: 0.875rem;
}

/* ===========================
   CONTACT FORM
   =========================== */

.contact-form-section {
  background: var(--cl-light-bg);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(18, 75, 138, 0.08);
}

.contact-form-section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-form-section__heading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  max-width: 52ch;
  margin: 0 auto;
}

.contact-form-section__heading .kicker {
  margin-bottom: 0;
}

.contact-form-section__heading > p {
  font-size: 0.9375rem;
  color: var(--cl-muted);
  line-height: 1.7;
}

/* Form layout */

.contact-form {
  background: var(--cl-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(18, 75, 138, 0.07);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 640px) {
  .contact-form {
    padding: 2rem 2.5rem;
  }
}

/* Two-col row — single col on mobile, side by side on tablet+ */

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .form-row {
    flex-direction: row;
    gap: 1rem;
  }

  .form-row .form-group {
    flex: 1;
    min-width: 0;
  }
}

/* Individual field */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cl-text);
}

.form-label span[aria-hidden="true"] {
  color: var(--cl-accent);
  margin-left: 2px;
}

.form-label__optional {
  font-weight: 400;
  color: var(--cl-muted);
  font-size: 0.8125rem;
}

.form-input {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cl-text);
  background: var(--cl-white);
  border: 1.5px solid rgba(18, 75, 138, 0.20);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.30);
}

.form-input:hover {
  border-color: rgba(18, 75, 138, 0.40);
}

.form-input:focus {
  outline: none;
  border-color: var(--cl-primary);
  box-shadow: 0 0 0 3px rgba(18, 75, 138, 0.12);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: var(--cl-accent);
}

/* Select arrow */

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23124B8A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Textarea */

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* Form footer row */

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding-top: 0.25rem;
}

@media (min-width: 560px) {
  .form-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--cl-muted);
  line-height: 1.5;
}

.form-disclaimer i {
  color: var(--cl-primary);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* Success state */

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(18, 75, 138, 0.06);
  border: 1px solid rgba(18, 75, 138, 0.15);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: var(--cl-primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.form-success i {
  font-size: 1.25rem;
  flex-shrink: 0;
  color: #2e7d32;
}

/* ===========================
   OPS MEDIA DASHBOARD
   =========================== */

/* Ops-only nav link visibility */
.nav__links .role-employer { display: none; }
[data-role="employer"] .nav__links .role-employer { display: list-item; }

/* Full-height media page */
.media-main {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
}

/* Access gate (non-ops) */
.ops-gate {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cl-light-bg);
  padding: var(--space-xl) var(--space-sm);
  text-align: center;
}

[data-role="employer"] .ops-gate { display: none; }

.ops-gate__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 420px;
}

.ops-gate__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(18, 75, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--cl-primary);
}

.ops-gate__inner h2 { font-size: 1.5rem; }

.ops-gate__inner > p {
  color: var(--cl-muted);
  font-size: 0.9375rem;
}

.ops-gate__hint {
  font-size: 0.875rem;
  color: var(--cl-muted);
  background: rgba(18, 75, 138, 0.06);
  border: 1px solid rgba(18, 75, 138, 0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

/* Ops dashboard (hidden until employer role) */
.ops-dashboard {
  display: none;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(160deg, #18206a 0%, #2F3382 50%, #1a2d55 100%);
}

[data-role="employer"] .ops-dashboard { display: flex; }

/* Dashboard top bar */
.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: rgba(0, 0, 0, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-topbar__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dash-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cl-white);
  letter-spacing: 0.01em;
}

.dash-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.625rem;
  border-radius: 20px;
  background: var(--cl-accent);
  color: var(--cl-white);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dash-topbar__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Campaigns — search bar above card list */
.campaigns-header {
  padding: 1rem 1.25rem 0;
}

/* Scrollable list of per-vacancy cards */
.campaigns-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem;
}

/* Individual vacancy campaign card */
.vacancy-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
}

.vacancy-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.15);
}

.vacancy-card__heading {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.vacancy-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.vacancy-card__meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.vacancy-card__header .platform-tabs { margin-left: auto; }

.vacancy-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
}

.vacancy-card__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vacancy-card__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 900px) {
  .vacancy-card__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .vacancy-card__left {
    flex: 0 0 55%;
    min-width: 0;
  }

  .vacancy-card__right {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: start;
  }
}

/* Section label (small caps above things) */
.dash-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.40);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Sidebar search */
.dash-search {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cl-white);
  transition: border-color 0.18s ease;
}

.dash-search::placeholder { color: rgba(255, 255, 255, 0.30); }
.dash-search:focus { outline: none; border-color: var(--cl-secondary); }

/* Job list */
.dash-job-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dash-job-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
  list-style: none;
}

.dash-job-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.dash-job-item.active {
  background: rgba(33, 150, 212, 0.18);
  border-color: rgba(33, 150, 212, 0.35);
}

.dash-job-item:focus-visible {
  outline: 2px solid var(--cl-secondary);
  outline-offset: -2px;
}

.dash-job-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  flex-shrink: 0;
  transition: background 0.18s ease;
}

.dash-job-item.active .dash-job-item__dot { background: var(--cl-secondary); }

.dash-job-item__info { flex: 1; min-width: 0; }

.dash-job-item__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cl-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.dash-job-item__meta {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.40);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.125rem;
}

.dash-job-item__status {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.45rem;
  border-radius: 20px;
  flex-shrink: 0;
}

.dash-job-item__status--live {
  background: rgba(46, 125, 50, 0.25);
  color: #81c784;
}

.dash-job-item__status--draft {
  background: rgba(235, 83, 36, 0.22);
  color: #ffb59a;
}

/* Dashboard cards (main area sections) */
.dash-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dash-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dash-section-header__left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.dash-section-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--cl-white);
  line-height: 1.2;
}

.dash-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.40);
}

.dash-status-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dash-status-badge--draft {
  background: rgba(235, 83, 36, 0.20);
  color: #ffb59a;
}

.dash-status-badge--live {
  background: rgba(46, 125, 50, 0.22);
  color: #81c784;
}

/* Platform preview tabs */
.platform-tabs {
  display: flex;
  gap: 0.375rem;
}

.platform-tab {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.platform-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cl-white);
}

.platform-tab.active {
  background: var(--cl-secondary);
  border-color: var(--cl-secondary);
  color: var(--cl-white);
}

.platform-tab:focus-visible { outline: 2px solid var(--cl-secondary); outline-offset: 2px; }

/* Social preview card */
.social-preview-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1200 / 627;
  background: var(--cl-deep);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-preview-card__bg {
  position: absolute;
  inset: 0;
}

.social-preview-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.social-preview-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(18, 75, 138, 0.92) 0%, rgba(47, 51, 130, 0.78) 55%, rgba(0, 0, 0, 0.55) 100%);
}

.social-preview-card__header,
.social-preview-card__content,
.social-preview-card__footer {
  position: relative;
  z-index: 1;
}

.social-preview-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.5rem, 1.5vw, 1rem) clamp(0.75rem, 2.5vw, 1.25rem) 0;
}

.social-preview-card__logo {
  display: flex;
  align-items: center;
  gap: 0.4em;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.8vw, 1rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.social-preview-card__pill {
  font-size: clamp(0.45rem, 1.2vw, 0.6875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.2em 0.75em;
  border-radius: 20px;
  background: var(--cl-accent);
  color: var(--cl-white);
}

.social-preview-card__content {
  padding: 0 clamp(0.75rem, 2.5%, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.social-preview-card__kicker {
  font-size: clamp(0.5rem, 1.4vw, 0.75rem);
  font-weight: 700;
  color: var(--cl-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-preview-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 4.5vw, 2.5rem);
  color: var(--cl-white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.social-preview-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin-top: 0.25rem;
}

.social-preview-card__meta li {
  font-size: clamp(0.45rem, 1.3vw, 0.75rem);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.social-preview-card__meta i {
  color: var(--cl-accent);
  font-size: 0.7em;
}

.social-preview-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.375rem, 1.5%, 0.75rem) clamp(0.75rem, 2.5%, 1.25rem);
  background: rgba(235, 83, 36, 0.88);
}

.social-preview-card__url {
  font-size: clamp(0.5rem, 1.4vw, 0.8125rem);
  font-weight: 700;
  color: var(--cl-white);
  letter-spacing: 0.04em;
}

.social-preview-card__footer i {
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(0.5rem, 1.2vw, 0.75rem);
}

/* Caption textarea */
.dash-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.50);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dash-input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 0.625rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cl-white);
  width: 100%;
  transition: border-color 0.18s ease;
}

.dash-input::placeholder { color: rgba(255, 255, 255, 0.25); }
.dash-input:focus { outline: none; border-color: var(--cl-secondary); box-shadow: 0 0 0 3px rgba(33, 150, 212, 0.15); }
.dash-input::-webkit-calendar-picker-indicator { filter: invert(0.6); cursor: pointer; }
.dash-textarea { resize: none; min-height: 80px; line-height: 1.6; overflow: hidden; field-sizing: content; }

/* Media gallery */
.media-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

@media (min-width: 600px) {
  .media-gallery {
    flex-direction: row;
  }
}

.media-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.media-item__preview {
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #18206a 0%, #2F3382 50%, #124B8A 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.625rem;
}

.media-item__preview--linkedin { aspect-ratio: 1200 / 627; }
.media-item__preview--instagram { aspect-ratio: 1 / 1; }
.media-item__preview--story { aspect-ratio: 9 / 16; max-height: 160px; }

.media-item__preview-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.media-item__preview-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--cl-accent);
}

.media-item__preview-co {
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.media-item__preview-title {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 2vw, 0.875rem);
  color: var(--cl-white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.media-item__preview-loc {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.2;
}

.media-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media-item__label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.media-item__dims {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 400;
}

.media-item__dl {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.media-item__dl:hover { background: rgba(255, 255, 255, 0.16); color: var(--cl-white); }
.media-item__dl:focus-visible { outline: 2px solid var(--cl-secondary); outline-offset: 2px; }

/* Panel blocks — dashboard cards */
.panel-block {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.panel-block__title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.40);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Job action buttons in panel */
.dash-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dash-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cl-white);
  transition: background 0.18s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.dash-action-btn:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-1px); }
.dash-action-btn:active { transform: translateY(0); }
.dash-action-btn:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 2px; }

.dash-action-btn--primary {
  background: var(--cl-accent);
  border-color: var(--cl-accent);
}

.dash-action-btn--primary:hover { background: #d4451a; }

/* Platform toggles */
.platform-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.platform-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.625rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-toggle-item__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.platform-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.platform-icon--linkedin  { background: #0A66C2; color: #fff; }
.platform-icon--facebook  { background: #1877F2; color: #fff; }
.platform-icon--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.platform-icon--whatsapp  { background: #25d366; color: #fff; }
.platform-icon--indeed    { background: #2164f3; color: #fff; }
.platform-icon--cvlibrary { background: transparent; padding: 0; }
.platform-icon--verelogic { background: #124B8A; color: #fff; }

/* Toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}

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

.toggle-switch__slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  transition: background 0.2s ease;
}

.toggle-switch__slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  top: 3px;
  background: rgba(255, 255, 255, 0.70);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}

.toggle-switch input:checked + .toggle-switch__slider { background: var(--cl-secondary); }
.toggle-switch input:checked + .toggle-switch__slider::before { transform: translateX(16px); background: var(--cl-white); }
.toggle-switch:focus-within .toggle-switch__slider { outline: 2px solid var(--cl-secondary); outline-offset: 2px; }

/* Schedule inputs */
.schedule-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Panel action row */
.panel-actions {
  display: flex;
  gap: 0.5rem;
}

.panel-actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.8125rem;
  padding: 0.5rem 0.75rem;
}

/* Glass button variant for dark backgrounds */
.btn--glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--cl-white);
}

.btn--glass:hover { background: rgba(255, 255, 255, 0.14); color: var(--cl-white); transform: translateY(-1px); }
.btn--glass:active { transform: translateY(0); }
.btn--glass:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 3px; }

/* Job description */
.job-desc-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
}

/* === Applications Dashboard === */

/* ---- Mobile-first base: panels stack vertically ---- */

.apps-layout {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #0f1923;
}

.apps-divider { display: none; }

.apps-panel-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.30);
  padding: 0.625rem 1rem 0;
}

/* ---- Column 1: Vacancy list ---- */

.vacancies-panel {
  display: flex;
  flex-direction: column;
  background: #0f1923;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Mobile: hide search + cards, show select instead */
.vacancies-panel__header { display: none; }

.vacancy-select-wrap {
  padding: 0.75rem;
}

.vacancy-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cl-white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.vacancy-select:focus {
  outline: none;
  border-color: var(--cl-secondary);
  background-color: rgba(255, 255, 255, 0.09);
}

.vacancy-select option {
  background: #1a2535;
  color: var(--cl-white);
  font-weight: 600;
}

/* Desktop header styles (used when shown) */
.vacancies-panel__header {
  padding: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.vacancies-panel__search {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--cl-white);
  transition: border-color 0.18s ease;
}

.vacancies-panel__search::placeholder { color: rgba(255, 255, 255, 0.28); }
.vacancies-panel__search:focus { outline: none; border-color: var(--cl-secondary); }

.vacancy-list {
  display: none;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0.5rem;
  padding: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

.vacancy-list::-webkit-scrollbar { height: 3px; }
.vacancy-list::-webkit-scrollbar-track { background: transparent; }
.vacancy-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 2px; }

.apps-vacancy-card {
  flex-shrink: 0;
  min-width: 200px;
  padding: 0.875rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.03);
}

.apps-vacancy-card:hover { background: rgba(255, 255, 255, 0.05); }
.apps-vacancy-card:focus-visible { outline: 2px solid var(--cl-secondary); outline-offset: -2px; }

.apps-vacancy-card--active {
  background: rgba(18, 75, 138, 0.20);
  border-color: rgba(18, 75, 138, 0.35);
  border-left-color: var(--cl-primary);
}

.apps-vacancy-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.apps-vacancy-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cl-white);
  line-height: 1.3;
}

.apps-vacancy-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 0.375rem;
  border-radius: 11px;
  background: var(--cl-primary);
  color: var(--cl-white);
  font-size: 0.6875rem;
  font-weight: 700;
}

.apps-vacancy-card__type {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--cl-secondary);
  background: rgba(33, 150, 212, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  width: fit-content;
}

.apps-vacancy-card__loc,
.apps-vacancy-card__salary {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.40);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.apps-vacancy-card__loc i,
.apps-vacancy-card__salary i {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.25);
  width: 10px;
}

/* ---- Column 2: Applicant list ---- */

.applicants-panel {
  display: flex;
  flex-direction: column;
  background: #111c28;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.applicants-panel__header {
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.applicants-panel__subheader {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.875rem 1rem 0.5rem;
}

.applicants-panel__vacancy-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--cl-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.applicants-panel__count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  flex-shrink: 0;
}

.apps-tabs {
  display: flex;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow-x: auto;
  scrollbar-width: none;
}

.apps-tabs::-webkit-scrollbar { display: none; }

.apps-tab {
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.40);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.apps-tab:hover { color: rgba(255, 255, 255, 0.70); }
.apps-tab--active { color: var(--cl-primary); border-bottom-color: var(--cl-primary); }
.apps-tab:focus-visible { outline: 2px solid var(--cl-secondary); outline-offset: -2px; }

.applicants-panel__search {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.625rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--cl-white);
  transition: background 0.18s ease;
}

.applicants-panel__search::placeholder { color: rgba(255, 255, 255, 0.22); }
.applicants-panel__search:focus { outline: none; background: rgba(255, 255, 255, 0.07); }

.applicant-list {
  display: flex;
  flex-direction: column;
}

.applicant-list__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1.5rem;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
}

.applicant-list__empty i { font-size: 2rem; }
.applicant-list__empty p { font-size: 0.875rem; }

/* Applicant row */
.applicant-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background 0.15s ease;
}

.applicant-row:hover { background: rgba(255, 255, 255, 0.04); }
.applicant-row--active { background: rgba(18, 75, 138, 0.18); }
.applicant-row--active:hover { background: rgba(18, 75, 138, 0.24); }

.applicant-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cl-white);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.applicant-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.applicant-info__top,
.applicant-info__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.applicant-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cl-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.applicant-email {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.applicant-email i { font-size: 0.6rem; flex-shrink: 0; }

.applicant-meta { display: none; }

.applicant-score-dist {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
}

.applicant-distance {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.30);
  white-space: nowrap;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  background: rgba(34, 197, 94, 0.08);
  font-size: 0.5625rem;
  font-weight: 700;
  color: #22c55e;
}
.score-badge--shortlisted {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}
.score-badge--rejected {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.status-badge {
  display: none;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
  white-space: nowrap;
}

.status-badge--shortlisted { background: #16a34a; color: #fff; }
.status-badge--progress { background: #7c3aed; color: #fff; }
.status-badge--rejected { background: #4b5563; color: rgba(255, 255, 255, 0.70); }

.applicant-actions {
  display: none;
  gap: 0.25rem;
  flex-shrink: 0;
}

.action-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.action-btn:hover { transform: scale(1.15); }
.action-btn:active { transform: scale(0.95); }
.action-btn--reject:hover { background: rgba(239, 68, 68, 0.20); color: #ef4444; border-color: rgba(239, 68, 68, 0.50); }
.action-btn--shortlist:hover { background: rgba(22, 163, 74, 0.20); color: #22c55e; border-color: rgba(22, 163, 74, 0.50); }
.action-btn--progress:hover { background: rgba(124, 58, 237, 0.20); color: #7c3aed; border-color: rgba(124, 58, 237, 0.50); }
.action-btn:focus-visible { outline: 2px solid var(--cl-secondary); outline-offset: 2px; }

/* ---- Column 3: Detail panel ---- */

.detail-panel {
  display: flex;
  flex-direction: column;
  background: #1a2535;
}

.detail-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}

.detail-empty__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.18);
}

.detail-empty > p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.28);
}

.detail-content {
  display: flex;
  flex-direction: column;
}

/* Detail tabs */
.detail-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  background: #1a2535;
  overflow-x: auto;
  scrollbar-width: none;
}

.detail-tabs::-webkit-scrollbar { display: none; }

.detail-tab {
  padding: 0.625rem 0.625rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.detail-tab:hover { color: rgba(255, 255, 255, 0.68); }
.detail-tab--active { color: var(--cl-primary); border-bottom-color: var(--cl-primary); }
.detail-tab:focus-visible { outline: 2px solid var(--cl-secondary); outline-offset: -2px; }

/* KPI ring row */
.kpi-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 0.25rem;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.12);
}

.kpi-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.kpi-ring__wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kpi-ring__pct {
  position: absolute;
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--cl-white);
  line-height: 1;
  pointer-events: none;
}

.kpi-ring--lg .kpi-ring__pct {
  font-size: 0.6875rem;
}

.kpi-ring__name {
  font-size: 0.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

/* Detail body — single column on mobile */
.detail-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1rem;
}

.detail-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cl-white);
  margin-bottom: 0.875rem;
}

.detail-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.detail-field__label {
  font-size: 0.5625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.30);
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.detail-field__value {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.4;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.industry-tag {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 20px;
  background: rgba(33, 150, 212, 0.14);
  color: var(--cl-secondary);
  white-space: nowrap;
}

.detail-summary {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.65;
}

/* Right column in detail */
.detail-section-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cl-white);
  margin-bottom: 0.625rem;
}

.job-history-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.job-history-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-left: 0.625rem;
  border-left: 2px solid rgba(33, 150, 212, 0.35);
}

.job-history-item__title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--cl-white);
  line-height: 1.3;
}

.job-history-item__company {
  font-size: 0.625rem;
  color: var(--cl-secondary);
}

.job-history-item__dates {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.32);
}

.ai-opinion-text {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
  background: rgba(33, 150, 212, 0.06);
  border: 1px solid rgba(33, 150, 212, 0.12);
  border-radius: 8px;
  padding: 0.75rem;
}

/* Profile header — hidden on mobile, shown on desktop */
.detail-profile-header { display: none; }

/* ---- Desktop layout (min-width: 1024px) ---- */
@media (min-width: 1024px) {

  /* Constrain to viewport height */
  .media-main--apps {
    height: calc(100vh - 100px);
    min-height: unset;
    overflow: hidden;
  }

  .ops-dashboard {
    min-height: 0;
    overflow: hidden;
  }

  /* Three-column row */
  .apps-layout {
    flex-direction: row;
    min-height: 0;
    overflow: hidden;
  }

  /* Drag dividers */
  .apps-divider {
    display: flex;
    width: 4px;
    flex-shrink: 0;
    cursor: col-resize;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.15s ease;
  }
  .apps-divider:hover,
  .apps-divider.is-dragging {
    background: rgba(33, 150, 212, 0.55);
  }

  /* Column 1: Vacancies — 1fr */
  .vacancies-panel {
    flex: 0 0 clamp(200px, 21vw, 300px);
    min-width: 200px;
    border-bottom: none;
    overflow: hidden;
  }
  .vacancy-select-wrap { display: none; }
  .vacancies-panel__header { display: block; }
  .vacancy-list {
    display: flex !important;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    padding: 0.5rem;
    gap: 0.375rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
  }
  .vacancy-list::-webkit-scrollbar { width: 3px; }
  .vacancy-list::-webkit-scrollbar-track { background: transparent; }
  .vacancy-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 2px; }
  .apps-vacancy-card { min-width: 0; flex-shrink: 0; }

  /* Column 2: Applicants — 2fr */
  .applicants-panel {
    flex: 2 1 0;
    min-width: 260px;
    border-bottom: none;
    overflow: hidden;
  }
  .applicant-list {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
  }
  .applicant-list::-webkit-scrollbar { width: 3px; }
  .applicant-list::-webkit-scrollbar-track { background: transparent; }
  .applicant-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 2px; }
  .applicant-actions { display: flex; align-items: center; gap: 0.5rem; }

  /* Hide score + distance from info column on desktop — shown in actions group instead */
  .applicant-info .score-badge { display: none; }
  .applicant-info .applicant-distance { display: none; }

  /* Column 3: Detail — 1fr when empty, 2fr when active */
  .detail-panel {
    flex: 1 1 0;
    min-width: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
  }
  .detail-panel::-webkit-scrollbar { width: 3px; }
  .detail-panel::-webkit-scrollbar-track { background: transparent; }
  .detail-panel::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 2px; }
  .detail-panel--active { flex: 2 1 0; }

  /* Profile header */
  .detail-profile-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(0, 0, 0, 0.14);
    flex-shrink: 0;
  }
  .detail-profile-header__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--cl-white);
    flex-shrink: 0;
  }
  .detail-profile-header__info {
    flex: 1;
    min-width: 0;
  }
  .detail-profile-header__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--cl-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .detail-profile-header__sub {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Two-column detail body */
  .detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
    align-items: start;
  }
}

