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

:root {
  --navy:      #003594;
  --navyDark:  #002878;
  --navyLight: #097fd7;
  --white:     #ffffff;
  --offwhite:  #f5f5f3;
  --gray:      #ececec;
  --gray2:     #959595;
  --gray3:     #777777;
  --text:      #404040;
  --navH:      88px;
}

html { scroll-behavior: smooth; }

@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garant", Georgia, serif;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.68em;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  animation: page-fade-in 0.25s ease forwards;
}


a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(120deg, #001845 0%, #003594 55%, #002878 100%);
  height: var(--navH);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  box-shadow: 0 4px 32px rgba(0,10,60,0.35), 0 1px 0 rgba(255,255,255,0.06) inset;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--navyLight) 30%, rgba(120,210,255,0.9) 50%, var(--navyLight) 70%, transparent 100%);
  pointer-events: none;
}

.nav-logo img { height: 48px; width: auto; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-circle { width: 50px; height: 50px; border: 1.5px solid rgba(255,255,255,0.55); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: #fff; flex-shrink: 0; letter-spacing: .04em; background: rgba(255,255,255,0.07); box-shadow: 0 0 16px rgba(9,127,215,0.35), inset 0 1px 0 rgba(255,255,255,0.15); transition: box-shadow .25s, border-color .25s; }
.nav-logo:hover .logo-circle { border-color: rgba(255,255,255,0.9); box-shadow: 0 0 24px rgba(9,127,215,0.6), inset 0 1px 0 rgba(255,255,255,0.2); }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; }
.logo-sub { font-family: 'Open Sans', sans-serif; font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: .2em; margin-top: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:focus-visible { outline: 2px solid #fff; outline-offset: 4px; border-radius: 2px; }

.nav-actions { display: flex; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 3px;
  cursor: pointer;
  transition: color .2s, background-color .2s, border-color .2s, transform .2s, box-shadow .2s;
  border: 2px solid transparent;
  will-change: transform;
  text-decoration: none;
}

.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--gray); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navyDark); }

.btn-accent { background: var(--navyLight); color: #fff; border-color: var(--navyLight); }
.btn-accent:hover { background: #0870bd; border-color: #0870bd; }

.btn-lg { font-size: 14px; padding: 14px 32px; }

/* ── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb {
  background: var(--offwhite);
  border-bottom: 1px solid var(--gray);
  padding: 10px 48px;
  font-size: 13px;
  color: var(--gray2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--navy); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SITE BANNER ─────────────────────────────────────── */
.site-banner {
  background: #111;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 9px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.banner-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  padding: 0 48px 32px;
  min-height: calc(100vh - var(--navH));
  background: linear-gradient(175deg, #c8deff 0%, #deeaff 18%, #eef4ff 40%, #ffffff 70%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 75% 65% at 50% 46%, rgba(255,255,255,0.82) 0%, rgba(220,234,255,0.55) 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-bg-decor {
  position: absolute !important;
  top: -45%;
  left: -20%;
  right: -20%;
  bottom: -45%;
  z-index: 0 !important;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transform: rotate(-10deg);
  overflow: hidden;
}
.hero-bg-decor span {
  display: block;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.055;
  font-family: "DM Sans", sans-serif;
}
.hero-bg-decor span:nth-child(even) {
  margin-left: -110px;
}

.globe-canvas {
  position: absolute !important;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  z-index: 0 !important;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 768px) {
  /* Move globe up so it covers the title area on smaller viewports */
  .globe-canvas { width: 320px; height: 320px; top: 30%; }
  .hero-eyebrow { top: calc(30% - 172px); }
  .hero { padding-left: 24px; padding-right: 24px; }
  .hero h1 {
    margin-top: 44px;
    font-size: clamp(30px, 7.5vw, 48px);
    min-height: unset;
  }
  .hero-sub { max-width: 280px; font-size: 15px; }
}

@media (max-width: 480px) {
  /* Even smaller: shrink globe and font to keep text inside the circle */
  .globe-canvas { width: 280px; height: 280px; top: 26%; }
  .hero-eyebrow { top: calc(26% - 152px); }
  .hero h1 {
    font-size: 28px;
    margin-top: 36px;
    min-height: unset;
  }
  .hero-sub { max-width: 240px; font-size: 14px; margin-bottom: 14px; }
  .hero-btns { gap: 10px; }
}

.hero-eyebrow {
  position: absolute !important;
  top: max(14px, calc(46% - 310px));
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navyLight);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--navyLight);
  opacity: .4;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.0;
  text-transform: uppercase;
  margin-top: 95px;
  margin-bottom: 16px;
  min-height: calc(clamp(36px, 5.5vw, 76px) * 3.2);
  text-shadow: 0 1px 8px rgba(255,255,255,0.9), 0 0 32px rgba(255,255,255,0.7);
}

.hero-sub {
  font-size: 17px;
  color: var(--text);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 32px 8px;
  margin-top: auto;
  border-top: 1px solid var(--gray);
  width: 100%;
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px 12px 0 0;
}

.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-size: 40px; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray3); margin-top: 6px; display: block; }

/* ── NAV CARDS ───────────────────────────────────────── */
.career-conf-heading { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.career-conf-text { font-size: 16px; color: var(--gray3); line-height: 1.7; margin-bottom: 36px; }

.nav-cards-section { padding: 72px 48px; background: var(--offwhite); }
.nav-cards-section-title { text-align: center; font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; color: var(--navy); margin-bottom: 36px; }

.nav-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-card {
  background: #fff;
  border: 1px solid var(--gray);
  border-top: 4px solid var(--navy);
  padding: 28px 24px;
  border-radius: 2px;
  transition: box-shadow .2s;
  display: block;
}
.nav-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.nav-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.nav-card:hover h3 { text-decoration: underline; }
.nav-card p { font-size: 14px; color: var(--gray3); line-height: 1.65; }

/* ── PAGE TITLE ──────────────────────────────────────── */
.page-title {
  padding: 52px 48px 88px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4,14,36,0.72) 0%, rgba(4,14,36,0.52) 50%, rgba(4,14,36,0.18) 80%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.page-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -5%;
  width: 110%;
  height: 56px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}
.page-title > * { position: relative; z-index: 3; }
.page-title-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0 !important; pointer-events: none; display: block; }

.page-title .page-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(0,0,20,0.85), 0 1px 6px rgba(0,0,20,0.7);
}
.page-title h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 32px rgba(0,0,20,0.9), 0 2px 10px rgba(0,0,20,0.75);
}
.page-title p { font-size: 18px; color: #fff; max-width: 640px; margin-top: 12px; line-height: 1.7; text-shadow: 0 0 20px rgba(0,0,20,0.85), 0 1px 6px rgba(0,0,20,0.65); }

/* ── INTRO TWO-COL ───────────────────────────────────── */
.intro {
  padding: 0 48px 72px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 90% 80% at 55% 45%, rgba(147, 197, 253, 0.65) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.intro > * { position: relative; z-index: 1; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
}

.intro-text p { font-size: 17px; line-height: 1.75; color: var(--text); margin-bottom: 18px; }
.intro-text p:last-child { margin-bottom: 0; }

.intro-card { background: var(--navy); border-radius: 4px; padding: 32px 28px; color: #fff; }
.intro-card img { width: 100%; max-width: 200px; margin: 0 auto 22px; }
.intro-card h3 { font-size: 15px; font-weight: 700; text-align: center; margin-bottom: 12px; color: #fff; text-transform: uppercase; letter-spacing: .05em; }
.intro-card p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.78); text-align: center; margin-bottom: 20px; }
.intro-card .btn { width: 100%; margin-bottom: 10px; }

.stat-row { display: flex; justify-content: center; gap: 20px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 20px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.stat-lbl { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 4px; display: block; }

/* ── BLUE BAND ───────────────────────────────────────── */
.blue-band { background: var(--navy); color: #fff; padding: 72px 48px; }
.blue-band-inner { max-width: 1100px; }
.blue-band h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #fff; margin-bottom: 48px; line-height: 1.2; }
.blue-band h2 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,.7); }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 56px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-num { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: #fff; margin-top: 2px; }
.feature h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.feature p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.75); }

/* ── ROLES ───────────────────────────────────────────── */
.roles-section {
  background: #fff;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.roles-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 90% 80% at 50% 50%, rgba(147, 197, 253, 0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.roles-section > * { position: relative; z-index: 1; }
.roles-inner { max-width: 1200px; width: 100%; margin: 0 auto; }

.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--navyLight); margin-bottom: 10px; }
.section-title { font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 12px; }
.section-title em { font-style: italic; font-weight: 300; }
.section-sub { font-size: 17px; color: var(--gray3); max-width: 640px; line-height: 1.7; margin-bottom: 44px; }

.roles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.role-card { border: 1px solid var(--gray); border-top: 4px solid var(--navy); border-radius: 2px; padding: 26px 22px; display: flex; flex-direction: column; gap: 10px; cursor: pointer; transition: box-shadow .18s, transform .18s; will-change: transform; }
.role-card:hover { box-shadow: 0 6px 24px rgba(0,53,148,.10); transform: translateY(-2px); }
.role-card-cta { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); margin-top: 4px; }
.role-tag { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navyLight); }
.role-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.role-card p { font-size: 14px; color: var(--gray3); line-height: 1.65; flex: 1; }
.role-meta { font-size: 12px; color: var(--gray2); font-weight: 600; padding-top: 10px; border-top: 1px solid var(--gray); display: flex; gap: 14px; }
.role-openings-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: #1a7a3c; border: 1.5px solid #0f5c2a; padding: 3px 9px; border-radius: 20px; margin-top: 2px; align-self: flex-start; }

/* ── JOBS LIST ───────────────────────────────────────── */
.jobs-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; width: 100%; }

.job-card {
  position: relative;
  border: 1px solid #dde3ec;
  border-radius: 6px;
  padding: 30px 26px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
  will-change: transform;
}
.job-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navyLight) 60%, #C9A84C 100%);
}
.job-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(46,125,209,0.06) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s;
}
.job-card:hover { box-shadow: 0 8px 32px rgba(0,53,148,.13); transform: translateY(-3px); }
.job-card:hover::after { opacity: 1; }

.job-card-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; flex: 1; }
.job-card .role-tag { margin: 0; }
.job-card-meta { font-size: 12px; color: var(--gray2); font-weight: 600; padding-top: 10px; border-top: 1px solid var(--gray); display: flex; gap: 14px; }
.job-card-actions { display: flex; align-items: center; gap: 16px; margin-top: 4px; flex-wrap: wrap; }
.job-card-cta, .job-card-submit { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: color .15s; text-decoration: none; }
.job-card-cta { color: var(--navy); }
.job-card-submit { color: var(--navyLight); }
.job-card:hover .job-card-cta { color: var(--navyLight); }
.job-card:hover .job-card-submit { color: var(--navy); }

@media (max-width: 860px) { .jobs-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .jobs-list { grid-template-columns: 1fr; } }

/* ── CURRENT OPENINGS ────────────────────────────────── */
.openings-section {
  background: var(--offwhite);
  padding: 80px 48px;
}
.openings-inner { max-width: 1100px; }
.openings-inner .section-sub { margin-bottom: 52px; }

.openings-category {
  margin-bottom: 44px;
}
.openings-category:last-child { margin-bottom: 0; }

.openings-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #dde3ec;
}
.openings-cat-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.openings-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opening-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--gray);
  border-top: none;
  background: #fff;
  transition: background .15s, box-shadow .15s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.opening-item:first-child { border-top: 1px solid var(--gray); border-radius: 2px 2px 0 0; }
.opening-item:last-child  { border-radius: 0 0 2px 2px; }
.opening-item:only-child  { border-top: 1px solid var(--gray); border-radius: 2px; }
.opening-item:hover {
  background: #f0f5ff;
  box-shadow: inset 4px 0 0 var(--navy);
}

.opening-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.opening-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.opening-loc {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray2);
  background: var(--gray);
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.opening-dl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--navyLight);
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 20px;
}
.opening-item:hover .opening-dl { color: var(--navy); }

/* ── PROCESS ─────────────────────────────────────────── */
.process-section { background: var(--offwhite); padding: 80px 48px; }
.process-inner { max-width: 1100px; }
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 44px; }
.process-headline { font-size: clamp(40px, 5vw, 72px); font-weight: 300; font-style: italic; color: var(--navy); line-height: 1.1; }
.process-headline strong { font-weight: 800; font-style: normal; display: block; }
.process-steps { display: flex; flex-direction: column; }
.process-step { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid #dde3ec; }
.process-step:first-child { border-top: 1px solid #dde3ec; }
.step-label { flex-shrink: 0; width: 60px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navyLight); padding-top: 3px; }
.step-desc { font-size: 15px; color: var(--text); line-height: 1.65; }
.step-desc strong { color: var(--navy); }

/* ── NAV DROPDOWNS ───────────────────────────────────── */
.nav-links li { position: relative; }

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.6;
  position: relative;
  top: -1px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 300;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown-box {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  min-width: 185px;
  padding: 6px 0;
  overflow: hidden;
}
.nav-dropdown-box a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: none;
  color: var(--text);
  white-space: nowrap;
  transition: background .12s, color .12s;
}
.nav-dropdown-box a:hover { background: var(--offwhite); color: var(--navy); }

/* ── ACCORDION ───────────────────────────────────────── */
.accordion { border-top: 1px solid var(--gray); }
.accordion-item { border-bottom: 1px solid var(--gray); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: color .15s;
}
.accordion-trigger:hover,
.accordion-item.open > .accordion-trigger { color: var(--navyLight); }

.accordion-label { display: flex; align-items: center; gap: 12px; flex: 1; }

.accordion-chevron {
  flex-shrink: 0;
  color: var(--gray2);
  line-height: 0;
  transition: transform .25s ease;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }

.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .32s ease;
}
.accordion-item.open .accordion-body { max-height: 300px; }

.accordion-body-inner { padding-bottom: 20px; }
.accordion-body-inner p { font-size: 15px; color: var(--gray3); line-height: 1.75; }
.accordion-body-inner .role-meta { margin-top: 10px; }

/* Dark variant – used inside .blue-band */
.accordion--dark { border-top-color: rgba(255,255,255,.15); }
.accordion--dark .accordion-item { border-bottom-color: rgba(255,255,255,.15); }
.accordion--dark .accordion-trigger { color: rgba(255,255,255,.85); }
.accordion--dark .accordion-trigger:hover,
.accordion--dark .accordion-item.open > .accordion-trigger { color: #fff; }
.accordion--dark .accordion-chevron { color: rgba(255,255,255,.4); }
.accordion--dark .accordion-body-inner p { color: rgba(255,255,255,.7); }

/* ── INDUSTRIES ──────────────────────────────────────── */
.industries-section { background: var(--navy); padding: 72px 48px; }
.industries-inner { max-width: 1100px; }
.industries-section .section-eyebrow { color: rgba(255,255,255,.55); }
.industries-section .section-title { color: #fff; margin-bottom: 36px; }
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.88); font-size: 14px; font-weight: 600; padding: 10px 22px; border-radius: 2px; transition: background .2s; }
.pill:hover { background: rgba(255,255,255,.18); }

/* ── TEAM ────────────────────────────────────────────── */
.team-section {
  background: #fff;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 90% 80% at 45% 50%, rgba(147, 197, 253, 0.65) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.team-section > * { position: relative; z-index: 1; }
.team-inner { max-width: 1100px; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.team-card { border: 1px solid var(--gray); border-top: 4px solid var(--navy); padding: 36px 32px; border-radius: 2px; }
.team-initial { width: 56px; height: 56px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 18px; }
.team-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-specialty { font-size: 12px; font-weight: 700; color: var(--navyLight); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 22px; }
.team-contact { display: flex; flex-direction: column; gap: 10px; }
.team-contact-row { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.team-contact-row a { color: var(--navy); font-weight: 600; }
.team-contact-row a:hover { text-decoration: underline; }
.contact-icon { width: 32px; height: 32px; background: var(--offwhite); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--navy); flex-shrink: 0; }

/* ── LOCATIONS ───────────────────────────────────────── */
.locations-section { background: var(--offwhite); padding: 72px 48px; }
.locations-inner { max-width: 1100px; }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
.location-card { background: #fff; border: 1px solid var(--gray); border-left: 5px solid var(--navy); padding: 26px; border-radius: 2px; }
.location-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.location-card p { font-size: 15px; color: var(--gray3); line-height: 1.65; }

/* ── CTA BAND ────────────────────────────────────────── */
.cta-band { background: var(--navyLight); padding: 72px 48px; text-align: center; }
.cta-band h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-band p { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SUBMIT FORM ─────────────────────────────────────── */
.submit-section {
  padding: 80px 48px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.submit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 90% 80% at 55% 45%, rgba(147, 197, 253, 0.65) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.submit-section > * { position: relative; z-index: 1; }
.submit-inner { max-width: 720px; }

.form-intro { font-size: 17px; color: var(--gray3); max-width: 600px; line-height: 1.7; margin-bottom: 44px; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-field label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray2); }
.form-field .req { color: var(--navy); }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1px solid #d0d7e3;
  border-radius: 3px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,53,148,.07);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.field-error.form-field input,
.field-error.form-field select,
.field-error.form-field textarea,
.field-error { border-color: #c0392b !important; background: #fff5f5 !important; }

.file-drop {
  border: 2px dashed #c8d3e8;
  border-radius: 4px;
  padding: 44px 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: #fafbfd;
  margin-bottom: 20px;
  position: relative;
}
.file-drop:hover,
.file-drop.dragging { border-color: var(--navy); background: #f0f4ff; }
.file-drop input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-drop-icon { font-size: 32px; color: #b0bcd8; margin-bottom: 10px; }
.file-drop-text { font-size: 15px; color: var(--gray3); font-weight: 600; margin-bottom: 4px; }
.file-drop-hint { font-size: 13px; color: var(--gray2); }
.file-drop-name { font-size: 15px; color: var(--navy); font-weight: 700; }
.file-drop-change { font-size: 12px; color: var(--gray2); margin-top: 4px; }

.form-disclaimer { font-size: 13px; color: var(--gray2); margin-top: 14px; line-height: 1.6; text-align: center; }

.submit-success {
  display: none;
  text-align: center;
  padding: 64px 32px;
  max-width: 520px;
}
.submit-success.visible { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff;
  margin: 0 auto 24px;
}
.submit-success h2 { font-size: 34px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 14px; }
.submit-success p { font-size: 17px; color: var(--gray3); line-height: 1.7; margin-bottom: 28px; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 60px 48px 32px; }
.footer-top { max-width: 1100px; display: grid; grid-template-columns: 210px 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo img { width: 150px; margin-bottom: 14px; }
.footer-logo p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.5); }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; }
.footer-bottom { max-width: 1100px; padding-top: 26px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.35); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-cards-grid { grid-template-columns: 1fr 1fr; }
}

/* ── HAMBURGER BUTTON ─────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  margin: -10px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HAMBURGER NAV (partial tab + mobile) ────────────────── */
@media (max-width: 1100px) {
  nav { padding: 0 24px; position: relative; }
  .nav-hamburger { display: flex; }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navyDark);
    list-style: none;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
    z-index: 150;
  }
  .nav-links.open { max-height: 900px; }

  .nav-links > li > a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 24px;
    font-size: 15px;
    color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(255,255,255,.07);
    background-image: none !important;
  }
  .nav-links > li:last-child > a { border-bottom: none; }

  /* Sub-dropdowns: tap parent link to expand */
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    pointer-events: auto;
    padding-top: 0;
    transform: none !important;
    transition: none;
    display: none;
  }
  .has-dropdown.mobile-open .nav-dropdown { display: block !important; }
  .nav-dropdown-box {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    min-width: unset;
    margin: 4px 16px 10px 16px;
    padding: 4px 0;
    overflow: hidden;
  }
  .nav-dropdown-box a {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    white-space: normal;
    text-transform: none;
    letter-spacing: .02em;
    background-image: none !important;
  }
  .nav-dropdown-box a:last-child { border-bottom: none; }
  .nav-dropdown-box a:hover { background: var(--offwhite); color: var(--navy); }
  .has-dropdown > a::after { display: none; }
}

/* ── MOBILE CONTENT LAYOUT ───────────────────────────────── */
@media (max-width: 900px) {
  .nav-actions { display: none; }

  /* Section padding */
  .breadcrumb, .page-title, .intro,
  .blue-band, .roles-section, .process-section,
  .industries-section, .team-section, .locations-section,
  .cta-band, footer, .submit-section,
  .hero, .nav-cards-section, .openings-section { padding-left: 24px; padding-right: 24px; }

  /* Grid collapses */
  .intro-grid, .features-grid, .process-layout,
  .team-grid, .locations-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }

  .banner-side { display: none; }

  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; }

  .footer-col li { padding: 4px 0; }
  .footer-col a { display: block; min-height: 36px; display: flex; align-items: center; }
  .file-drop { padding: 32px 20px; }
}

@media (max-width: 600px) {
  .roles-grid, .nav-cards-grid { grid-template-columns: 1fr; }
  .opening-info { flex-direction: column; align-items: flex-start; gap: 4px; }
  .opening-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 28px; }

  /* Tighter hero on very small screens */
  .hero { padding-top: 56px; padding-bottom: 48px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; }

  /* 404 page */
  .not-found { padding: 60px 24px; }
}

/* ── NAV SHRINK ON SCROLL ─────────────────────────────────── */
nav { transition: height .28s ease, box-shadow .28s ease; will-change: height; }
.nav-logo img { transition: height .28s ease; }
nav.nav--scrolled { height: 64px; background: rgba(8,22,40,0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 4px 32px rgba(0,10,60,0.45), 0 1px 0 rgba(255,255,255,0.08) inset; }
.page-title-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; display: block; }
nav.nav--scrolled .nav-logo img { height: 44px; }

/* ── BUTTON LIFT ON HOVER ─────────────────────────────────── */
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.14); }

/* ── UNDERLINE DRAW — NAV LINKS (background-image avoids ::after conflict with arrow) */
.nav-links > li > a {
  background-image: linear-gradient(var(--navyLight), var(--navyLight));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color .2s, background-size .26s ease;
  padding-bottom: 2px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background-size: 100% 1px; }

/* ── UNDERLINE DRAW — FOOTER LINKS ───────────────────────── */
.footer-col a {
  background-image: linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.45));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: color .2s, background-size .22s ease;
  padding-bottom: 1px;
}
.footer-col a:hover { background-size: 100% 1px; }

/* ── ROLE MODAL ──────────────────────────────────────────── */
.role-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 60, 0.58);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.role-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}
.role-modal {
  background: #fff;
  border-radius: 6px;
  max-width: 680px;
  width: 100%;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  position: relative;
  transform: translateY(14px);
  transition: transform 0.22s ease;
}
.role-modal-backdrop.is-open .role-modal {
  transform: translateY(0);
}
.role-modal-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .15s;
  flex-shrink: 0;
}
.role-modal-close:hover { background: #ccc; }
.role-modal-body {
  padding: 0 40px 32px;
  clear: both;
}
.role-modal-body .role-tag { display: inline-block; margin-bottom: 10px; }
.role-modal-body h2 { font-size: 26px; color: var(--navy); margin-bottom: 8px; line-height: 1.2; }
.role-modal-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}
.role-modal-meta span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray3);
}
.role-modal-overview {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray);
}
.role-modal-section { margin-bottom: 24px; }
.role-modal-section h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 14px;
}
.role-modal-section ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.role-modal-section ul li {
  font-size: 14px;
  line-height: 1.62;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.role-modal-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}
.role-modal-openings { background: var(--offwhite); border-radius: 4px; padding: 16px 18px; margin-bottom: 24px; }
.modal-openings-list { display: flex; flex-direction: column; gap: 0; margin-top: 10px; }
.modal-opening-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--gray);
  border-top: none;
  text-decoration: none;
  color: inherit;
  transition: background .14s, box-shadow .14s;
}
.modal-opening-item:first-child { border-top: 1px solid var(--gray); border-radius: 3px 3px 0 0; }
.modal-opening-item:last-child  { border-radius: 0 0 3px 3px; }
.modal-opening-item:only-child  { border-top: 1px solid var(--gray); border-radius: 3px; }
.modal-opening-item:hover { background: #eef3ff; box-shadow: inset 3px 0 0 var(--navy); }
.modal-opening-info { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.modal-opening-title { font-size: 14px; font-weight: 600; color: var(--navy); }
.modal-opening-loc { font-size: 11px; font-weight: 600; color: var(--gray2); background: var(--gray); padding: 2px 8px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.modal-opening-dl { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--navyLight); white-space: nowrap; padding-left: 16px; flex-shrink: 0; }
.modal-opening-item:hover .modal-opening-dl { color: var(--navy); }

.role-modal-footer {
  padding: 22px 40px;
  border-top: 1px solid var(--gray);
  background: var(--offwhite);
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.role-modal-footer p { font-size: 13px; color: var(--gray3); margin: 0; }

@media (max-width: 600px) {
  .role-modal-backdrop { padding: 0; align-items: flex-end; }
  .role-modal { max-height: 92vh; border-radius: 14px 14px 0 0; }
  .role-modal-body { padding: 0 22px 28px; }
  .role-modal-footer { padding: 18px 22px; flex-direction: column; align-items: stretch; }
  .role-modal-footer .btn { text-align: center; }
}

/* ── SCROLL-TRIGGERED REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(52px) scale(0.97);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.revealed { opacity: 1; transform: translateY(0) scale(1); }

/* ── SCROLL PROGRESS BAR ───────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--navyLight);
  z-index: 100000;
  transition: width .08s linear;
}


/* ── BACK TO TOP ──────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.18);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, background .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--blue); }

/* ── VIGNETTE ─────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9997;
  background: radial-gradient(ellipse at 50% 38%, transparent 52%, rgba(0,0,20,.16) 100%);
}

/* ── GRADIENT SECTION DIVIDERS ────────────────────────────── */
.breadcrumb {
  position: relative;
  border-bottom: none;
}
.breadcrumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,51,.07) 20%, rgba(0,0,51,.07) 80%, transparent);
}

.nav-cards-section,
.process-section,
.locations-section {
  box-shadow: inset 0 1px 0 rgba(0,0,0,.045), inset 0 -1px 0 rgba(0,0,0,.045);
}

.hero-stats {
  border-top: none;
  position: relative;
}
.hero-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 65%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,51,.09) 30%, rgba(0,0,51,.09) 70%, transparent);
}

/* ── RESUME CANVAS (submit page decoration) ──────────────── */
.resume-canvas {
  position: absolute !important;
  right: 14%;
  top: 38%;
  transform: translateY(-50%) rotate(5deg);
  width: 360px;
  height: 480px;
  z-index: 0 !important;
  pointer-events: none;
  user-select: none;
  opacity: 0.55;
}
@media (max-width: 960px) {
  .resume-canvas { display: none; }
}

/* ── MAPS DROPDOWN (Maryland HQ) ─────────────────────────── */
.maps-dropdown-wrap { position: relative; display: inline-block; margin-top: 14px; }
.maps-btn {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 8px 13px;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .15s;
}
.maps-btn:hover { background: var(--navyDark); }
.maps-btn-arrow { font-size: 9px; transition: transform .15s; }
.maps-btn[aria-expanded="true"] .maps-btn-arrow { transform: rotate(180deg); }
.maps-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,20,60,.14);
  min-width: 170px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity .14s, transform .14s;
}
.maps-dropdown.is-open { opacity: 1; pointer-events: all; transform: translateY(0); }
.maps-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gray);
  transition: background .12s;
}
.maps-dropdown a:last-child { border-bottom: none; }
.maps-dropdown a:hover { background: var(--offwhite); }

/* ── PAPER / GRAIN TEXTURE OVERLAY ───────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 250px;
}
