@charset "UTF-8";
:root {
  --c-navy: #133e69;
  --c-navy-mid: #073277;
  --c-gold: #c8a97e;
  --c-gold-lt: #ddc098;
  --c-parchment: #f5f2ed;
  --c-white: #ffffff;
  --c-mid: #4a5568;
  --c-border: #e0dbd3;
  --c-hover: #faf9f7;
  --c-subtle: #999999;
  --c-navy-rgb: 19, 62, 105;
  --c-gold-rgb: 200, 169, 126;
  --c-white-rgb: 255, 255, 255;
  --serif: Cormorant Garamond, Georgia, serif;
  --sans: Inter, system-ui, sans-serif;
  --ff-serif: var(--serif);
  --ff-sans: var(--sans);
  --nav-height: 70px;
  --pad-x: 3.5rem;
  --pad-x-mob: 1.25rem;
  --pad-y: 5rem;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--c-white);
  color: var(--c-navy);
  overflow-x: hidden;
  line-height: 1.6;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(var(--c-navy-rgb), 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(var(--c-gold-rgb), 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.5rem;
}

.nav-logo-img {
  height: 51px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  align-self: stretch;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(var(--c-white-rgb), 0.68);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--c-gold);
}

.nav-cta {
  background: var(--c-gold);
  color: var(--c-navy);
  padding: 0.5rem 1.4rem;
  border-radius: 1px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--c-gold-lt);
  color: var(--c-navy);
}

.nav-dropdown-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav-dropdown-wrap:hover .nav-dropdown, .nav-dropdown-wrap:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown-trigger::after {
  content: "▾";
  margin-left: 0.3rem;
  font-size: 0.72rem;
  opacity: 0.55;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: rgba(var(--c-navy-rgb), 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--c-gold-rgb), 0.18);
  min-width: 215px;
  padding: 0.85rem 0 0.4rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}
.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(var(--c-white-rgb), 0.62);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover {
  color: var(--c-gold);
  background: rgba(var(--c-white-rgb), 0.04);
}
.nav-dropdown a.is-current {
  color: var(--c-gold);
  background: rgba(var(--c-gold-rgb), 0.08);
}

.nav-dropdown-trigger.is-active {
  color: var(--c-gold) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
}

a.tag-sector {
  text-decoration: none;
  cursor: pointer;
}
a.tag-sector:hover {
  filter: brightness(0.9);
}

.btn-gold {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-navy);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-gold:hover {
  background: var(--c-gold-lt);
}

.btn-outline-white,
.btn-ghost-w {
  display: inline-block;
  background: transparent;
  color: rgba(var(--c-white-rgb), 0.78);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(var(--c-white-rgb), 0.28);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-outline-white:hover,
.btn-ghost-w:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.btn-outline-dark,
.btn-ghost-d {
  display: inline-block;
  background: transparent;
  color: var(--c-mid);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--c-border);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-outline-dark:hover,
.btn-ghost-d:hover {
  border-color: var(--c-navy);
  color: var(--c-navy);
}

.btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.section {
  padding: var(--pad-y) var(--pad-x);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.12;
  color: var(--c-navy);
  margin-bottom: 0.9rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--c-mid);
  line-height: 1.78;
  max-width: 580px;
  margin-bottom: 3rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad-x);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(var(--c-navy-rgb), 0.62) 0%, rgba(var(--c-navy-rgb), 0.48) 40%, rgba(var(--c-white-rgb), 0.8) 78%, rgba(var(--c-white-rgb), 0.96) 100%);
  z-index: 1;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--c-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(var(--c-navy-rgb), 0.45);
}
.hero h1 em {
  font-style: italic;
  color: var(--c-gold-lt);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 7s ease-out forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.07);
  }
  to {
    transform: scale(1);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: var(--nav-height);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(var(--c-navy-rgb), 0.5);
}
.hero-eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--c-gold);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(var(--c-white-rgb), 0.92);
  max-width: 500px;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 12px rgba(var(--c-navy-rgb), 0.4);
}

.hero-search {
  display: flex;
  flex-wrap: wrap;
  max-width: 680px;
  border: 1px solid rgba(var(--c-white-rgb), 0.18);
  background: rgba(var(--c-white-rgb), 0.85);
  margin-bottom: 1.5rem;
}

.hero-search-col {
  flex: 1 1 140px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.2rem;
  border-right: 1px solid rgba(var(--c-white-rgb), 0.1);
}
.hero-search-col:last-of-type {
  border-right: none;
}
.hero-search-col input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--c-navy);
}
.hero-search-col input::placeholder {
  color: rgba(var(--c-navy-rgb), 0.38);
}

.hero-search-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.25rem;
}

.hero-search-or {
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(var(--c-navy-rgb), 0.45);
  flex-shrink: 0;
}

.hero-search-btn {
  background: var(--c-gold);
  border: none;
  cursor: pointer;
  padding: 0 1.6rem;
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-navy);
  white-space: nowrap;
  transition: background 0.2s;
}
.hero-search-btn:hover {
  background: var(--c-gold-lt);
}

.hero-popular {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.73rem;
  color: rgba(var(--c-navy-rgb), 0.65);
}
.hero-popular a {
  color: var(--c-navy);
  text-decoration: none;
  background: rgba(var(--c-white-rgb), 0.6);
  border: 1px solid rgba(var(--c-navy-rgb), 0.22);
  padding: 0.25rem 0.7rem;
  font-size: 0.71rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.hero-popular a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(var(--c-white-rgb), 0.85);
}

.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1rem var(--pad-x);
  background: rgba(var(--c-white-rgb), 0.55);
  border-top: 1px solid rgba(var(--c-navy-rgb), 0.1);
}

.hero-ticker-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(var(--c-navy-rgb), 0.52);
}

.hero-ticker-locs {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.hero-ticker-loc {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--c-navy-rgb), 0.38);
}

#sectors {
  background: var(--c-parchment);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sector-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 4/3;
}
.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.sector-card:hover img {
  transform: scale(1.05);
}
.sector-card:hover .sector-card-overlay {
  background: linear-gradient(180deg, rgba(var(--c-navy-rgb), 0.2) 0%, rgba(var(--c-navy-rgb), 0.94) 100%);
}
.sector-card:hover .sector-link {
  color: var(--c-gold);
}

.sector-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--c-navy-rgb), 0.1) 0%, rgba(var(--c-navy-rgb), 0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.6rem;
  transition: background 0.3s;
}

.sector-num {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}

.sector-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-white);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.sector-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--c-white-rgb), 0.55);
  transition: color 0.2s;
}

.sector-card-dark {
  background: var(--c-navy);
  border: 1px solid rgba(var(--c-gold-rgb), 0.2);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.6rem;
  text-decoration: none;
  transition: border-color 0.3s;
}
.sector-card-dark:hover {
  border-color: var(--c-gold);
}

#about {
  background: var(--c-navy-mid);
  padding: 5.5rem var(--pad-x);
}

.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--c-gold);
  color: var(--c-navy);
  padding: 1.4rem 1.6rem;
  max-width: 200px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.about-text .eyebrow {
  color: var(--c-gold);
}
.about-text .section-title {
  color: var(--c-white);
}
.about-text p {
  font-size: 0.93rem;
  color: rgba(var(--c-white-rgb), 0.58);
  line-height: 1.78;
  margin-bottom: 1rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin: 2rem 0 2.5rem;
}

.pillar {
  border-left: 2px solid var(--c-gold);
  padding-left: 1rem;
}
.pillar h4 {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.3rem;
}
.pillar p {
  font-size: 0.8rem;
  color: rgba(var(--c-white-rgb), 0.48);
  line-height: 1.6;
  margin: 0;
}

#roles {
  background: var(--c-white);
}

.roles-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.roles-viewall {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 1px;
}

.roles-tabs {
  display: flex;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  gap: 0;
}

.tab {
  padding: 0.7rem 1.35rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--c-mid);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.tab.active, .tab:hover {
  color: var(--c-navy);
  border-bottom-color: var(--c-gold);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}

.job {
  background: var(--c-white);
  padding: 1.6rem 1.8rem;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 1.25rem;
  align-items: start;
  transition: background 0.15s;
}
.job:hover {
  background: var(--c-hover);
}

.job-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--c-gold);
  flex-shrink: 0;
}

.job-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 0.2rem;
}

.job-org {
  font-size: 0.81rem;
  color: var(--c-mid);
  margin-bottom: 0.75rem;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tag {
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
}
.tag-new {
  background: #e6f4ea;
  color: #1e6630;
}
.tag-age {
  background: #fff7ed;
  color: #92400e;
}
.tag-sector {
  background: #eef1f8;
  color: #1a3458;
}
.tag-pay {
  background: var(--c-parchment);
  color: #555;
}
.tag-loc {
  background: #f5ede0;
  color: #7c4a1a;
}

.job-acts {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.job-save {
  background: none;
  border: 1px solid var(--c-border);
  color: var(--c-mid);
  padding: 0.42rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s;
}
.job-save:hover {
  border-color: var(--c-navy);
  color: var(--c-navy);
}

.job-apply {
  background: var(--c-gold);
  color: var(--c-navy);
  border: none;
  padding: 0.42rem 1rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
}
.job-apply:hover {
  background: var(--c-gold-lt);
}

.roles-footer {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

#ai {
  background: var(--c-navy);
  padding: 5.5rem var(--pad-x);
}

.ai-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.ai-left .eyebrow {
  color: var(--c-gold);
}
.ai-left .section-title {
  color: var(--c-white);
}
.ai-left p {
  font-size: 0.93rem;
  color: rgba(var(--c-white-rgb), 0.55);
  line-height: 1.78;
  margin-bottom: 2rem;
}

.ai-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(var(--c-white-rgb), 0.06);
}

.ai-tool {
  background: rgba(var(--c-white-rgb), 0.025);
  padding: 1.3rem 1.4rem;
  transition: background 0.2s;
}
.ai-tool:hover {
  background: rgba(var(--c-white-rgb), 0.06);
}

.ai-icon {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.ai-name {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.2rem;
}

.ai-desc {
  font-size: 0.77rem;
  color: rgba(var(--c-white-rgb), 0.42);
  line-height: 1.55;
}

#served {
  background: var(--c-parchment);
  padding: 5.5rem var(--pad-x);
}

.served-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.served-list {
  list-style: none;
  margin-top: 1.5rem;
}
.served-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.88rem;
  color: var(--c-mid);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.served-list li:first-child {
  border-top: 1px solid var(--c-border);
}
.served-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat {
  background: var(--c-white);
  padding: 1.5rem;
  border: 1px solid var(--c-border);
}

.stat-n {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-n b {
  color: var(--c-gold);
  font-weight: 300;
}

.stat-l {
  font-size: 0.72rem;
  color: var(--c-subtle);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.28);
}

.cta-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.cta-body h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--c-white);
  margin-bottom: 0.75rem;
}
.cta-body p {
  font-size: 0.97rem;
  color: rgba(var(--c-white-rgb), 0.62);
  margin-bottom: 2rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

footer {
  background: var(--c-navy);
  padding: 4rem var(--pad-x) 2.25rem;
}

footer:has(.f-slim) {
  padding: 2.5rem var(--pad-x);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(var(--c-white-rgb), 0.08);
  margin-bottom: 2rem;
}

.f-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 0.9rem;
  filter: brightness(0) invert(0.65) sepia(1) saturate(1.2) brightness(0.85);
}

.f-desc {
  font-size: 0.82rem;
  color: rgba(var(--c-white-rgb), 0.42);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.f-socials {
  display: flex;
  gap: 0.6rem;
}

.f-social {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(var(--c-white-rgb), 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--c-white-rgb), 0.42);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.f-social:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.f-col-title {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.1rem;
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.f-links a {
  font-size: 0.82rem;
  color: rgba(var(--c-white-rgb), 0.48);
  text-decoration: none;
  transition: color 0.2s;
}
.f-links a:hover {
  color: var(--c-white);
}

.f-contact {
  font-size: 0.81rem;
  color: rgba(var(--c-white-rgb), 0.45);
  margin-bottom: 0.55rem;
  line-height: 1.5;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.f-copy {
  font-size: 0.74rem;
  color: rgba(var(--c-white-rgb), 0.28);
}

.f-legal {
  display: flex;
  gap: 1.75rem;
}
.f-legal a {
  font-size: 0.74rem;
  color: rgba(var(--c-white-rgb), 0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.f-legal a:hover {
  color: rgba(var(--c-white-rgb), 0.65);
}

.f-slim {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.f-brand-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(0.65) sepia(1) saturate(1.2) brightness(0.85);
}

.f-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.f-nav a {
  font-size: 0.78rem;
  color: rgba(var(--c-white-rgb), 0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.f-nav a:hover {
  color: rgba(var(--c-white-rgb), 0.8);
}

.page-hero {
  padding: 8.5rem var(--pad-x) 5.5rem;
  background: var(--c-navy-mid);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.06;
  color: var(--c-white);
  margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(var(--c-white-rgb), 0.6);
  max-width: 580px;
  line-height: 1.78;
  margin-bottom: 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(var(--c-navy-rgb), 0.92) 40%, rgba(var(--c-navy-rgb), 0.62) 100%);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 0.7rem;
  color: rgba(var(--c-white-rgb), 0.35);
  margin-bottom: 1.25rem;
}
.breadcrumb a {
  color: var(--c-gold);
  text-decoration: none;
}

.sec-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.12;
  color: var(--c-navy);
  margin-bottom: 0.85rem;
}

.sec-sub {
  font-size: 0.93rem;
  color: var(--c-mid);
  line-height: 1.78;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  margin-top: 3rem;
}

.card {
  background: var(--c-white);
  padding: 2.25rem 2rem;
  transition: background 0.15s;
}
.card:hover {
  background: var(--c-hover);
}
.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}
.card ul li {
  font-size: 0.82rem;
  color: var(--c-mid);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--c-gold);
}

.card-ey {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.55rem;
}

.card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-navy);
  margin-bottom: 0.7rem;
}

.card-desc {
  font-size: 0.84rem;
  color: var(--c-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.dark-band {
  background: var(--c-navy-mid);
  padding: var(--pad-y) var(--pad-x);
}

.dark-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.dark-h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.5rem;
  color: var(--c-white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.dark-p {
  font-size: 0.9rem;
  color: rgba(var(--c-white-rgb), 0.55);
  line-height: 1.78;
  margin-bottom: 0.85rem;
}

.arrow-list {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  margin-bottom: 1.75rem;
}

.arrow-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: rgba(var(--c-white-rgb), 0.7);
  font-size: 0.87rem;
}
.arrow-item::before {
  content: "→";
  color: var(--c-gold);
  flex-shrink: 0;
}

.dark-ey {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.55rem;
  margin-top: 1.6rem;
}

.dark-rp {
  font-size: 0.85rem;
  color: rgba(var(--c-white-rgb), 0.5);
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.inset {
  background: rgba(var(--c-white-rgb), 0.04);
  border: 1px solid rgba(var(--c-white-rgb), 0.08);
  padding: 1.4rem 1.5rem;
  margin-top: 1.5rem;
}

.inset-ey {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.55rem;
}

.cta-plain {
  background: var(--c-parchment);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}
.cta-plain h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.3rem;
  color: var(--c-navy);
  margin-bottom: 0.75rem;
}
.cta-plain p {
  font-size: 0.93rem;
  color: var(--c-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.cta-plain-in {
  max-width: 540px;
  margin: 0 auto;
}

.prog-band {
  background: var(--c-navy);
  padding: 3.5rem var(--pad-x);
}
.prog-band h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.9rem;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.prog-band p {
  font-size: 0.87rem;
  color: rgba(var(--c-white-rgb), 0.5);
  margin-bottom: 1.75rem;
}

.prog-band-in {
  max-width: var(--max-width);
  margin: 0 auto;
}

.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.prog-tag {
  background: rgba(var(--c-gold-rgb), 0.12);
  border: 1px solid rgba(var(--c-gold-rgb), 0.25);
  color: var(--c-gold-lt);
  padding: 0.38rem 1rem;
  font-size: 0.77rem;
}

@keyframes bounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
}
.chat-panel-enter-active {
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-panel-leave-active {
  transition: opacity 0.18s ease, transform 0.2s ease;
}

.chat-panel-enter-from,
.chat-panel-leave-to {
  opacity: 0;
  transform: translateY(-10px) scaleY(0.96);
  transform-origin: top center;
}

.hc-banner-enter-active,
.hc-banner-leave-active {
  transition: max-height 0.3s ease, opacity 0.2s ease;
  overflow: hidden;
}

.hc-banner-enter-from,
.hc-banner-leave-to {
  max-height: 0;
  opacity: 0;
}

.hc-banner-enter-to,
.hc-banner-leave-from {
  max-height: 80px;
  opacity: 1;
}

.hc-msg-anim-enter-active {
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.hc-msg-anim-enter-from {
  opacity: 0;
  transform: translateY(10px);
}

.hc-msg-anim-move {
  transition: transform 0.3s ease;
}

.hc-job-anim-enter-active {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hc-job-anim-enter-from {
  opacity: 0;
  transform: translateY(6px);
}

.hc-job-anim-move {
  transition: transform 0.25s ease;
}

.hc-qr-anim-enter-active {
  transition: opacity 0.18s ease, transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.hc-qr-anim-enter-from {
  opacity: 0;
  transform: translateY(5px) scale(0.94);
}

.hc-qr-anim-leave-active {
  transition: opacity 0.12s ease;
}

.hc-qr-anim-leave-to {
  opacity: 0;
}

.hc-qr-anim-move {
  transition: transform 0.2s ease;
}

.hero-chat {
  max-width: 680px;
  width: 100%;
  margin-top: 0.75rem;
  max-height: 600px;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid rgba(var(--c-white-rgb), 0.18);
  box-shadow: 0 8px 40px rgba(var(--c-navy-rgb), 0.18);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.hc-header {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hc-avatar {
  width: 32px;
  height: 32px;
  background: var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease;
}
.hc-avatar--pulse {
  animation: hcAvatarPulse 1.1s ease-in-out infinite;
}

@keyframes hcAvatarPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(var(--c-gold-rgb), 0.55);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(var(--c-gold-rgb), 0);
  }
}
.hc-info {
  flex: 1;
}

.hc-name {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
}

.hc-status {
  font-size: 0.65rem;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hc-status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4caf50;
  display: inline-block;
}

.hc-close {
  background: none;
  border: none;
  color: rgba(var(--c-white-rgb), 0.45);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 2px 6px;
  transition: color 0.15s;
}
.hc-close:hover {
  color: var(--c-white);
}

.hc-gdpr {
  background: #fff8e8;
  border-top: 1px solid #f0d080;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  color: #7a5800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.hc-gdpr button {
  background: var(--c-navy);
  color: var(--c-white);
  border: none;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.68rem;
  cursor: pointer;
  flex-shrink: 0;
}

.hc-messages {
  flex: 1 1 220px;
  min-height: 0;
  overflow-y: auto;
  padding: 0.875rem;
  scroll-behavior: smooth;
  background: var(--c-parchment);
}
.hc-messages::-webkit-scrollbar {
  width: 3px;
}
.hc-messages::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: 2px;
}

.hc-msg-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hc-msg {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.hc-msg.bot {
  align-self: flex-start;
  max-width: 90%;
}

.hc-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
  max-width: 88%;
}

.hc-jobs-wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hc-msg-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.hc-bubble {
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  font-size: 0.815rem;
  line-height: 1.45;
  word-break: break-word;
}
.hc-msg.bot .hc-bubble {
  background: var(--c-white);
  color: var(--c-navy);
  border-bottom-left-radius: 3px;
  border: 1px solid var(--c-border);
  box-shadow: 0 1px 4px rgba(var(--c-navy-rgb), 0.06);
}
.hc-msg.user .hc-bubble {
  background: var(--c-navy);
  color: var(--c-white);
  border-bottom-right-radius: 3px;
}

.hc-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex-shrink: 0;
  padding: 4px 0.875rem 8px;
  background: var(--c-parchment);
}

.hc-qr {
  background: var(--c-white);
  border: 1.5px solid rgba(var(--c-gold-rgb), 0.65);
  color: var(--c-navy);
  padding: 0.28rem 0.72rem;
  border-radius: 20px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.hc-qr:hover {
  background: var(--c-gold);
  color: var(--c-navy);
  border-color: var(--c-gold);
}

.hc-input-row {
  --hc-ctrl-h: 2.3rem;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  padding: 0.55rem 0.7rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}

#hc-input {
  flex: 1;
  height: var(--hc-ctrl-h);
  box-sizing: border-box;
  border: 1.5px solid var(--c-border);
  border-radius: 20px;
  padding: 0 0.85rem;
  font-family: var(--sans);
  font-size: 0.815rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--c-parchment);
  color: var(--c-navy);
}
#hc-input:focus {
  border-color: var(--c-gold);
}
#hc-input::placeholder {
  color: rgba(var(--c-navy-rgb), 0.35);
}
#hc-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#hc-send {
  width: var(--hc-ctrl-h);
  height: var(--hc-ctrl-h);
  box-sizing: border-box;
  background: var(--c-navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-white);
  font-size: 0.85rem;
  transition: background 0.15s, transform 0.15s;
}
#hc-send:hover {
  background: var(--c-gold);
  color: var(--c-navy);
  transform: scale(1.08);
}

.hc-typing span {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(var(--c-navy-rgb), 0.3);
  margin: 0 1.5px;
  animation: bounce 0.8s infinite;
}
.hc-typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.hc-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.hc-job-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-gold);
  border-radius: 6px;
  padding: 0.45rem 0.7rem;
  margin: 2px 0;
  cursor: pointer;
  transition: all 0.15s;
}
.hc-job-card:hover {
  border-left-color: var(--c-navy);
  background: var(--c-hover);
}

.hc-job-title {
  font-weight: 600;
  font-size: 0.79rem;
  color: var(--c-navy);
}

.hc-job-meta {
  font-size: 0.67rem;
  color: var(--c-subtle);
  margin-top: 1px;
}

@media (max-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid, .ai-grid, .served-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: var(--nav-height);
  }
  nav {
    padding: 0 var(--pad-x-mob);
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .nav-mobile {
    display: block;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(var(--c-navy-rgb), 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(var(--c-gold-rgb), 0.15);
    padding: 1.5rem var(--pad-x-mob) 2.5rem;
    z-index: 998;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-mobile.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-mobile .nav-mobile-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(var(--c-white-rgb), 0.35);
    margin: 0 0 0.35rem;
    padding-top: 0.25rem;
  }
  .nav-mobile .nav-mobile-sub-link {
    display: block;
    padding: 0.58rem 0 0.58rem 0.75rem;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(var(--c-white-rgb), 0.52);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--c-white-rgb), 0.05);
    transition: color 0.15s;
  }
  .nav-mobile .nav-mobile-sub-link:hover, .nav-mobile .nav-mobile-sub-link.is-current {
    color: var(--c-gold);
  }
  .nav-mobile > a:not(.nav-mobile-cta) {
    display: block;
    padding: 0.8rem 0;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(var(--c-white-rgb), 0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(var(--c-white-rgb), 0.07);
    transition: color 0.15s;
  }
  .nav-mobile > a:not(.nav-mobile-cta):hover {
    color: var(--c-gold);
  }
  .nav-mobile .nav-mobile-cta {
    display: block;
    margin-top: 1.5rem;
    background: var(--c-gold);
    color: var(--c-navy);
    padding: 0.85rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: none;
    transition: background 0.2s;
  }
  .nav-mobile .nav-mobile-cta:hover {
    background: var(--c-gold-lt);
  }
  .section,
  #about, #ai, #served,
  .page-hero, .dark-band, .cta-plain,
  .prog-band {
    padding-left: var(--pad-x-mob);
    padding-right: var(--pad-x-mob);
  }
  .hero {
    padding: 0 var(--pad-x-mob);
  }
  .hero-ticker {
    display: none;
  }
  .about-img img {
    height: 320px;
  }
  .about-badge {
    right: 0;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .job {
    grid-template-columns: 46px 1fr;
  }
  .job-acts {
    display: none;
  }
  .ai-tools {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
  footer {
    padding: 3rem var(--pad-x-mob) 1.5rem;
  }
  footer:has(.f-slim) {
    padding: 2rem var(--pad-x-mob);
  }
  .grid4, .dark-inner {
    grid-template-columns: 1fr;
  }
  .dark-inner {
    gap: 2.5rem;
  }
  .f-slim {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-search {
    max-width: 100%;
    margin-bottom: 1.25rem;
  }
  .hero-search-col {
    flex: 0 0 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid rgba(var(--c-navy-rgb), 0.08);
    padding: 0.8rem 1rem;
  }
  .hero-search-btn {
    flex: 1;
    padding: 0.9rem 0.5rem;
    font-size: 0.7rem;
    min-height: 48px;
  }
  .hero-search-or {
    padding: 0 0.45rem;
    font-size: 0.62rem;
  }
  .hero-chat {
    max-width: 100%;
    max-height: calc(100svh - var(--nav-height) - 2rem);
  }
}

/* ── Backoffice-style job table (shared with the public search results panel) ── */
.bo-sec-title { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-navy); }
.bo-sec-count { font-size: 0.68rem; color: #8a90a0; }
.bo-table-wrap { background: var(--c-white); border: 1px solid #e4e7ee; overflow-x: auto; }
.bo-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.bo-table td { padding: 0.85rem 1rem; border-bottom: 1px solid #f0f1f4; vertical-align: middle; }
.bo-table tbody tr:last-child td { border-bottom: none; }
.bo-table tbody tr:hover { background: #fafbfc; }

.bo-loader {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 2.5rem 1rem;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--c-mid);
  background: var(--c-white);
  border: 1px solid #e4e7ee;
}
.bo-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(var(--c-navy-rgb), 0.15);
  border-top-color: var(--c-navy);
  border-radius: 50%;
  display: inline-block;
  animation: bo-spin 0.7s linear infinite;
}
@keyframes bo-spin {
  to { transform: rotate(360deg); }
}
