/* Bezohminds About page + shared nav/footer styles */

:root {
  --navy: #1B2A6E;
  --navy-700: #162256;
  --navy-50: #EEF0FA;
  --crimson: #C8205C;
  --crimson-700: #A41848;
  --ink: #0F1430;
  --muted: #5A6079;
  --bg: #FBFBFE;
  --card: #FFFFFF;
  --border: rgba(27, 42, 110, 0.10);
  --shadow: 0 10px 30px rgba(27, 42, 110, 0.08);
  --radius: 18px;
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: min(var(--maxw), 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
}

.btn-primary:hover {
  background: var(--crimson-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200, 32, 92, .25);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(27, 42, 110, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
  min-width: 0;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; max-width: none; }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links > a,
.nav-dropdown-toggle {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-decoration: none;
}

.nav-links > a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-menu a:hover { color: var(--crimson); }

.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .2s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg { transform: rotate(180deg); }

@media (min-width: 961px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
  }
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -12px;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(27, 42, 110, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 80;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: var(--navy-50);
  color: var(--crimson);
}

.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.nav-menu-cta { display: none; }

.hamb {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.hamb svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* ---------- FOOTER ---------- */
footer {
  background: #0B1130;
  color: #cfd3e5;
  padding: 60px 0 24px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

footer h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin: 8px 0; font-size: 14px; }
footer a:hover { color: #fff; }

.foot-brand p {
  color: #9aa0bd;
  font-size: 14px;
  margin-top: 14px;
  max-width: 340px;
}

.foot-social-item { margin-top: 14px; }

.foot-social-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #9aa0bd;
  margin-bottom: 10px;
}

.foot-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.foot-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cfd3e5;
  background: rgba(255, 255, 255, 0.04);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.foot-social-link:hover {
  color: #fff;
  background: rgba(200, 32, 92, 0.22);
  border-color: rgba(200, 32, 92, 0.4);
}

.foot-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

footer a.email-link,
footer a.contact-map-link {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

footer a.email-link:hover,
footer a.contact-map-link:hover {
  color: #fff;
}

.foot-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #8a91b2;
}

.contact-flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(27, 42, 110, 0.08);
  flex-shrink: 0;
  object-fit: cover;
}

.contact-location-line {
  display: inline-flex;
  align-items: center;
}

/* ---------- SHARED SECTION ---------- */
.about-page section { padding: 70px 0; }

.section-head { max-width: 780px; margin-bottom: 50px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 14px;
}

h1, h2, h3 { color: var(--navy); font-weight: 800; }

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- ABOUT HERO ---------- */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 10vh, 96px) 0 clamp(64px, 8vh, 88px);
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(200, 32, 92, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(27, 42, 110, 0.10), transparent 60%),
    var(--bg);
}

.about-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.about-hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.about-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: heroOrbFloat 14s ease-in-out infinite;
}

.about-hero-orb--1 {
  width: 280px; height: 280px; top: 8%; right: 6%;
  background: radial-gradient(circle, rgba(200, 32, 92, 0.35), transparent 70%);
}

.about-hero-orb--2 {
  width: 220px; height: 220px; bottom: 12%; left: 4%;
  background: radial-gradient(circle, rgba(27, 42, 110, 0.35), transparent 70%);
  animation-delay: -4s;
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(18px, -22px) scale(1.06); }
  66% { transform: translate(-14px, 16px) scale(0.94); }
}

.about-hero .container { position: relative; z-index: 2; }

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.about-hero-visual {
  align-self: center;
}

.about-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-hero--careers {
  padding-bottom: clamp(36px, 5vh, 52px);
}

.about-hero--careers + section {
  padding-top: 48px;
}

.about-hero--careers .about-hero-grid {
  align-items: center;
}

.about-hero--careers .about-hero-visual {
  align-self: center;
  justify-self: end;
  max-width: min(100%, 420px);
}

.about-hero--careers .about-hero-image {
  width: 100%;
  max-height: clamp(280px, 34vw, 420px);
  object-fit: contain;
  object-position: center top;
}

.about-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.about-hero .eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--crimson);
  animation: aiPulse 2.4s ease infinite;
}

@keyframes aiPulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 32, 92, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(200, 32, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 32, 92, 0); }
}

.about-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 22px 0 18px;
}

.about-hero h1 .accent { color: var(--crimson); }

.about-hero .lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 760px;
  line-height: 1.75;
}

.about-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- TIMELINE ---------- */
.about-story {
  background: linear-gradient(180deg, #fff 0%, var(--navy-50) 100%);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--crimson), var(--navy));
  opacity: 0.25;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 4vw, 40px);
  padding: 0 0 48px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker { position: relative; padding-left: 44px; }

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 800;
  color: var(--crimson);
  font-size: 14px;
  letter-spacing: .06em;
}

.timeline-marker::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--navy), var(--crimson));
  box-shadow: 0 0 0 6px rgba(200, 32, 92, 0.12);
}

.timeline-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.2vw, 26px);
}

.timeline-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.timeline-content p:last-child { margin-bottom: 0; }

/* ---------- MISSION / VISION ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 32, 92, 0.25);
}

.mv-card-label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 14px;
}

.mv-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

/* ---------- VALUE CARDS ---------- */
.beliefs-grid,
.why-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.value-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 32, 92, 0.28);
  box-shadow: 0 16px 36px rgba(27, 42, 110, 0.10);
}

.value-card-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--crimson);
  margin-bottom: 12px;
}

.value-card h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--navy-50);
  margin-bottom: 16px;
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-section { background: linear-gradient(180deg, var(--navy-50) 0%, #fff 100%); }

/* ---------- TEAM CARDS ---------- */
.team-section { background: #fff; }
.team-section--alt { background: linear-gradient(180deg, #fff 0%, var(--navy-50) 100%); }

.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-grid--executive { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 32, 92, 0.22);
}

.team-card-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(27, 42, 110, 0.12);
  flex-shrink: 0;
}

.team-card-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  max-width: none;
}

.team-card-name {
  margin: 0 0 6px;
  font-size: 20px;
}

.team-card-role {
  margin: 0 0 12px;
  color: var(--crimson);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

.team-card-bio {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.team-card-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.team-card-linkedin svg { width: 16px; height: 16px; }

.team-card-linkedin:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.team-card-linkedin--placeholder {
  opacity: 0.35;
  cursor: default;
}

.team-card--compact {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
  padding: 18px;
}

.team-card--compact .team-card-photo-wrap {
  width: 72px;
  height: 72px;
  margin-bottom: 0;
}

.team-card--compact .team-card-photo {
  width: 72px;
  height: 72px;
}

.team-card--compact .team-card-body { flex: 1; min-width: 0; }
.team-card--compact .team-card-name { font-size: 17px; }
.team-card--compact .team-card-bio { font-size: 14px; margin-bottom: 8px; }

/* ---------- STAFF DIRECTORY ---------- */
.staff-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.staff-count {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.staff-search-wrap { flex: 1; max-width: 420px; min-width: 220px; }

.staff-search {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A6079' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.5' y1='16.5' x2='21' y2='21'/%3E%3C/svg%3E") 16px center / 18px no-repeat;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.staff-search:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(200, 32, 92, 0.12);
}

.staff-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.staff-empty {
  grid-column: 1 / -1;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--muted);
}

.staff-empty code {
  background: var(--navy-50);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 13px;
}

/* ---------- NAME STORY ---------- */
.name-story {
  background: linear-gradient(180deg, var(--navy-50) 0%, #fff 100%);
}

.name-story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.name-story-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.name-story-copy p:last-child { margin-bottom: 0; }

.name-story-visual {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 32, 92, 0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(27, 42, 110, 0.20), transparent 60%),
    linear-gradient(135deg, #fff 0%, var(--navy-50) 100%);
}

.name-story-visual::before {
  content: "Illustration Placeholder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(27, 42, 110, 0.45);
}

.name-story-visual.has-image::before {
  display: none;
}

.name-story-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.name-story-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.name-story-pills span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* ---------- CTA ---------- */
.about-cta-wrap { padding-top: 0; padding-bottom: 90px; }

.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 60%, #2a1c52 100%);
  color: #fff;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 32, 92, 0.45), transparent 60%);
}

.cta-band h2 { color: #fff; position: relative; z-index: 1; }

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 8px auto 24px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.cta-band .btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

/* ---------- CAREERS PAGE ---------- */
.careers-intro {
  background: linear-gradient(180deg, #fff 0%, var(--navy-50) 100%);
}

.careers-intro-copy {
  max-width: 820px;
}

.careers-intro-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.careers-intro-copy p:last-child {
  margin-bottom: 0;
}

.careers-tagline {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.5;
}

.careers-look-for {
  background: #fff;
}

.careers-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.careers-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.careers-checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--crimson));
}

.careers-opportunities {
  background: linear-gradient(180deg, var(--navy-50) 0%, #fff 100%);
}

.careers-roles-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.careers-role-group {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}

.careers-role-group:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 32, 92, 0.22);
}

.careers-role-group h3 {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--navy);
}

.careers-role-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.careers-role-group li {
  position: relative;
  padding: 8px 0 8px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(27, 42, 110, 0.06);
}

.careers-role-group li:last-child {
  border-bottom: none;
}

.careers-role-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
}

.careers-internship {
  background: #fff;
}

.careers-highlight {
  background: linear-gradient(135deg, rgba(27, 42, 110, 0.04), rgba(200, 32, 92, 0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.careers-highlight p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.careers-highlight p:last-child {
  margin-bottom: 0;
}

.careers-life {
  background: linear-gradient(180deg, #fff 0%, var(--navy-50) 100%);
}

.careers-life-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.careers-life-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.careers-life-item span {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--navy-50);
  color: var(--crimson);
  font-size: 14px;
  font-weight: 800;
}

.careers-apply-wrap {
  padding-top: 0;
}

.careers-apply {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.careers-apply-copy h2 {
  margin-bottom: 12px;
}

.careers-apply-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.careers-apply-box {
  background: var(--navy-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.careers-apply-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--navy);
}

.careers-apply-email {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--crimson);
  font-weight: 700;
  font-size: 16px;
}

.careers-apply-email:hover {
  color: var(--crimson-700);
}

.careers-apply-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.careers-apply-box li {
  position: relative;
  padding: 8px 0 8px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.careers-apply-box li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--crimson);
  font-weight: 700;
}

.careers-hero-tagline {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--crimson);
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 18px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamb { display: flex; }

  .nav-cta .btn-ghost { display: none; }

  .nav-menu-cta {
    display: block;
    width: 100%;
    margin-top: 12px;
    text-align: center;
  }

  .nav-links.is-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(27, 42, 110, 0.08);
    z-index: 60;
    gap: 4px;
    align-items: stretch;
    text-align: left;
    box-sizing: border-box;
  }

  .nav-links.is-open > a,
  .nav-links.is-open .nav-dropdown {
    width: 100%;
  }

  .nav-links.is-open > a,
  .nav-links.is-open .nav-dropdown-toggle {
    padding: 12px 0;
    text-align: left;
    justify-content: flex-start;
  }

  .nav-links.is-open .nav-menu-cta {
    padding: 14px 26px;
    text-align: center;
  }

  .nav-links.is-open .nav-dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 12px;
    display: block;
    transition: opacity .2s ease, max-height .25s ease, visibility .2s ease;
  }

  .nav-links.is-open .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 120px;
    padding: 0 0 8px 12px;
  }

  .about-page section { padding: 64px 0; }

  .timeline::before { left: 14px; }
  .timeline-item { grid-template-columns: 1fr; gap: 16px; }
  .timeline-marker { padding-left: 40px; }

  .about-hero-grid,
  .mv-grid,
  .beliefs-grid,
  .why-grid,
  .team-grid,
  .team-grid--executive,
  .name-story-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .about-hero--careers .about-hero-visual {
    justify-self: center;
    max-width: min(100%, 360px);
  }

  .about-hero--careers .about-hero-image {
    max-height: clamp(220px, 58vw, 300px);
  }

  .about-hero--careers + section {
    padding-top: 40px;
  }

  .careers-checklist,
  .careers-roles-grid,
  .careers-life-grid,
  .careers-apply {
    grid-template-columns: 1fr;
  }

  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .staff-grid,
  .foot-grid { grid-template-columns: 1fr; }

  .team-card--compact { flex-direction: column; align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .about-hero-orb { animation: none; }
  .about-hero .eyebrow .dot { animation: none; }
}
