/* ════════════════════════════════════════════════════════════════════
   CAREERS — Content Sections (Why Join Us → Final CTA)
   Isolated component (see careers-content.js). Everything on
   careers.html below the cinematic hero and around the existing
   application form. Reuses the site's shared tokens/components
   (.section, .section-head, .kicker, .reveal*, .btn, .panel, .stat)
   from styles.css — nothing about the palette changes.

   Motion contract: only transform / opacity / box-shadow(light) /
   border-color / background-color are transitioned. Width, height,
   margin, padding, top and left are never animated. "transition: all"
   is never used.
   ════════════════════════════════════════════════════════════════════ */

/* ── shared premium card (Why Join Us / Values / Benefits) ── */
.car-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .car-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .car-grid-3 { grid-template-columns: 1fr; } }

.car-card {
  position: relative;
  padding: 2.2rem 1.8rem;
  border-radius: 1.4rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, .85), rgba(255, 255, 255, .5));
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 1px 2px rgba(20, 22, 28, .04), 0 16px 36px rgba(20, 22, 28, .07);
  overflow: hidden;
  isolation: isolate;
  contain: layout paint style;
  backface-visibility: hidden;
  transition: transform .45s cubic-bezier(.16, .84, .44, 1), box-shadow .45s ease, border-color .45s ease;
}
.car-card:hover, .car-card:focus-within { will-change: transform; }
.car-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent), var(--accent-deep));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(20, 22, 28, .14), 0 0 40px rgba(255, 106, 31, .14);
}
.car-card:hover::before { opacity: 1; }

.car-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  color: var(--accent);
  margin-bottom: 1.2rem;
  transition: transform .4s cubic-bezier(.16, .84, .44, 1), border-color .4s ease, box-shadow .4s ease;
}
.car-card:hover .car-icon { transform: scale(1.1) rotate(-6deg); border-color: var(--accent); box-shadow: 0 10px 24px rgba(255, 106, 31, .22); }
.car-icon svg { width: 28px; height: 28px; }
.car-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.car-card p { color: var(--ink-soft); font-size: .95rem; line-height: 1.65; }

.car-placeholder-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: .5rem;
  padding: .3rem .6rem;
}
.car-placeholder-tag::before { content: '\25CB'; color: var(--accent); font-size: .7rem; }

/* ══════════════════ OUR VALUES ══════════════════ */
.cov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
@media (max-width: 900px) { .cov-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cov-grid { grid-template-columns: 1fr; } }
.cov-card { text-align: center; }
.cov-card .car-icon { margin-left: auto; margin-right: auto; animation: covFloat 5s ease-in-out infinite; }
.cov-card:nth-child(2n) .car-icon { animation-delay: .6s; }
.cov-card:nth-child(3n) .car-icon { animation-delay: 1.2s; }
@keyframes covFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .cov-card .car-icon { animation: none; } }

/* ══════════════════ LEARNING & DEVELOPMENT — ROADMAP ══════════════════ */
.cld-roadmap {
  position: relative;
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.2rem 1rem;
}
.cld-line-svg {
  /* fixed strip at the node vertical center (nodes are 60px tall) rather than
     a full-height box — keeps the connector a simple, robust straight line
     with no JS measurement of node positions needed */
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 0;
  pointer-events: none;
}
/* 6 milestones at their 150px flex-basis + gaps need ~980px unwrapped;
   below ~1036px viewport (container content width drops under that) the
   row wraps to 5-then-1, so the fixed-top connector line — drawn straight
   across assuming a single row — would float disconnected from whichever
   milestone wrapped to row 2. Hide it for the whole range where wrapping
   can happen, not just the narrow phone width it originally covered. */
@media (max-width: 1040px) { .cld-line-svg { display: none; } }
.cld-line-path {
  fill: none;
  stroke: var(--border);
  stroke-width: 2;
}
.cld-line-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.8s cubic-bezier(.16, .84, .44, 1);
}
.cld-roadmap.visible .cld-line-progress { stroke-dashoffset: 0; }
.cld-milestone {
  position: relative;
  z-index: 1;
  flex: 1 1 150px;
  max-width: 190px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border-radius: 1rem;
}
.cld-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #fff, var(--surface-2));
  border: 2px solid var(--border);
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 10px 24px rgba(20, 22, 28, .1);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, font-size .3s ease;
}
.cld-milestone.visible .cld-node {
  animation: cldGlow 2.4s ease-in-out infinite;
}
@keyframes cldGlow {
  0%, 100% { box-shadow: 0 10px 24px rgba(20, 22, 28, .1); }
  50% { box-shadow: 0 0 0 5px rgba(255, 106, 31, .1), 0 10px 24px rgba(20, 22, 28, .1); }
}
.cld-milestone:focus-visible { outline: 2px solid #ff6b2c; outline-offset: 6px; border-radius: 999px; }
.cld-milestone:hover .cld-node,
.cld-milestone:focus-visible .cld-node,
.cld-milestone.cld-active .cld-node {
  transform: scale(1.12);
  border-color: #ff6b2c;
  font-size: 1.22rem;
  box-shadow: 0 0 0 8px rgba(255, 107, 44, .16), 0 18px 36px rgba(255, 107, 44, .3);
  animation: cldBorderPulse 1.6s ease-in-out infinite;
}
@keyframes cldBorderPulse {
  0%, 100% { border-color: #ff6b2c; box-shadow: 0 0 0 8px rgba(255, 107, 44, .16), 0 18px 36px rgba(255, 107, 44, .3); }
  50% { border-color: rgba(255, 107, 44, .6); box-shadow: 0 0 0 12px rgba(255, 107, 44, .1), 0 18px 36px rgba(255, 107, 44, .22); }
}
.cld-label { margin-top: 1rem; font-weight: 700; font-size: .88rem; color: var(--ink); }
.cld-sub { font-size: .76rem; color: var(--ink-soft); margin-top: .2rem; }

/* ── L&D milestone tooltip: premium glassmorphism info card ── */
.cld-info { display: none; }
.cld-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: min(300px, calc(100vw - 24px));
  padding: 1.2rem 1.3rem;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 107, 44, .18);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  pointer-events: none;
}
.cld-tooltip.cld-tooltip--below { transform: translateY(-8px); }
.cld-tooltip.is-visible { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.cld-tooltip-arrow {
  position: absolute;
  left: var(--cld-arrow-x, 50%);
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, .92);
  border-right: 1px solid rgba(255, 107, 44, .18);
  border-bottom: 1px solid rgba(255, 107, 44, .18);
  border-radius: 0 0 4px 0;
  transform: translateX(-50%) rotate(45deg);
}
.cld-tooltip--below .cld-tooltip-arrow {
  bottom: auto;
  top: -7px;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid rgba(255, 107, 44, .18);
  border-top: 1px solid rgba(255, 107, 44, .18);
  border-radius: 4px 0 0 0;
}
.cld-tooltip-title { font-size: 18px; font-weight: 700; color: #111; margin: 0 0 .6rem; }
.cld-tooltip-list { list-style: none; margin: 0; padding: 0; font-size: 15px; color: #555; line-height: 1.7; }
.cld-tooltip-list li { position: relative; padding-left: 1.2rem; }
.cld-tooltip-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b2c;
}
html[data-theme="dark"] .cld-tooltip { background: rgba(24, 27, 33, .82); border-color: rgba(255, 107, 44, .3); }
html[data-theme="dark"] .cld-tooltip-arrow { background: rgba(24, 27, 33, .92); }
html[data-theme="dark"] .cld-tooltip-title { color: #fff; }
html[data-theme="dark"] .cld-tooltip-list { color: rgba(238, 234, 225, .75); }

@media (max-width: 760px) {
  .cld-roadmap { flex-direction: column; align-items: flex-start; }
  /* flex-basis:150px (set above for the row layout's width) would otherwise
     be reinterpreted as a min-height once .cld-roadmap stacks to column,
     forcing every milestone to a 150px-tall box and opening a large gap
     below its actual (much shorter) content. */
  .cld-milestone { flex: 1 1 auto; max-width: 100%; flex-direction: row; text-align: left; gap: 1rem; }
  .cld-node { flex-shrink: 0; }
}

/* ══════════════════ CAREER GROWTH JOURNEY — PREMIUM INTERACTIVE ROADMAP ══════════════════ */
.ccj-section { overflow: visible; }

/* -- ambient background: dotted mesh + soft glow + slow floating shapes + particles -- */
.ccj-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; border-radius: inherit; }
.ccj-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 85%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 85%);
}
.ccj-glow {
  position: absolute;
  top: 4%;
  left: 50%;
  width: 720px;
  height: 720px;
  margin-left: -360px;
  background: radial-gradient(circle, rgba(255, 107, 44, .14), transparent 68%);
  transition: opacity .4s ease;
}
.ccj-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 44, .1), transparent 70%);
  filter: blur(28px);
  animation: ccjFloat 20s ease-in-out infinite;
}
.ccj-shape-1 { width: 340px; height: 340px; top: -90px; left: -70px; }
.ccj-shape-2 { width: 400px; height: 400px; bottom: -140px; right: -90px; animation-delay: -10s; }
@keyframes ccjFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(26px, -22px); }
}
.ccj-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 107, 44, .35);
  animation: ccjParticleFloat 12s ease-in-out infinite;
}
.ccj-particle-1 { top: 18%; left: 12%; animation-delay: 0s; }
.ccj-particle-2 { top: 65%; left: 8%; width: 4px; height: 4px; animation-delay: -3s; }
.ccj-particle-3 { top: 30%; right: 14%; animation-delay: -6s; }
.ccj-particle-4 { top: 75%; right: 20%; width: 5px; height: 5px; animation-delay: -9s; }
.ccj-particle-5 { top: 48%; left: 50%; width: 4px; height: 4px; animation-delay: -1.5s; }
@keyframes ccjParticleFloat {
  0%, 100% { transform: translate(0, 0); opacity: .5; }
  50% { transform: translate(14px, -18px); opacity: 1; }
}

.ccj-head, .ccj-timeline, .ccj-panel { position: relative; z-index: 1; }

/* -- header -- */
.ccj-head { max-width: 900px; }
.ccj-head h2 { color: #111827; }
.ccj-highlight { color: #ff6b2c; }
html[data-theme="dark"] .ccj-head h2 { color: var(--ink); }

/* -- steps -- */
.ccj-timeline { margin-top: 4.5rem; }
.ccj-steps { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: .4rem; }

.ccj-step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border-radius: 1.2rem;
  background: none;
  border: none;
  font: inherit;
  padding: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.16, .84, .44, 1);
}
.ccj-step.visible { opacity: 1; transform: translateY(0); }
.ccj-step:focus-visible { outline: 2px solid #ff6b2c; outline-offset: 8px; }

/* card backdrop on hover/selected — an absolutely-positioned layer behind the
   icon/node/label so it never shifts their layout (which the track's fixed
   top offset depends on) */
.ccj-step::after {
  content: '';
  position: absolute;
  inset: -.5rem -.6rem -.7rem;
  border-radius: 1.2rem;
  background: var(--surface);
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(20, 22, 28, .04);
  opacity: 0;
  transform: scale(.94);
  transition: opacity .3s ease, transform .3s cubic-bezier(.16, .84, .44, 1), border-color .3s ease, box-shadow .3s ease, background .3s ease;
  z-index: -1;
  pointer-events: none;
}
.ccj-step:hover::after,
.ccj-step:focus-visible::after,
.ccj-step.is-selected::after {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(255, 107, 44, .22);
  box-shadow: 0 14px 32px rgba(20, 22, 28, .08);
}
.ccj-step.is-selected::after {
  background: linear-gradient(155deg, rgba(255, 107, 44, .1), rgba(255, 107, 44, .02));
  border-color: rgba(255, 107, 44, .35);
  box-shadow: 0 16px 34px rgba(255, 107, 44, .14);
}

/* -- icon above node -- */
.ccj-step-icon {
  width: 24px;
  height: 24px;
  margin-bottom: .6rem;
  color: var(--ink-soft);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), color .3s ease, opacity .4s ease, scale .4s cubic-bezier(.34, 1.56, .64, 1);
  scale: .4;
  opacity: 0;
}
.ccj-step.visible .ccj-step-icon { scale: 1; opacity: 1; }
.ccj-step-icon svg { width: 100%; height: 100%; }
.ccj-step:hover .ccj-step-icon, .ccj-step:focus-visible .ccj-step-icon { transform: translateY(-4px); color: #ff6b2c; }
.ccj-step.is-selected .ccj-step-icon { color: #ff6b2c; }

.ccj-node {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--ink-soft);
  box-shadow: 0 4px 14px rgba(20, 22, 28, .06);
  transition: transform .3s cubic-bezier(.16, .84, .44, 1), border-color .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}
.ccj-node-num { font-family: var(--font-mono); font-size: 1.05rem; font-weight: 800; transition: font-size .3s ease; }

/* selected: the single tier currently shown in the content panel — filled orange, white number, double ring + pulse */
.ccj-step.is-selected .ccj-node {
  background: linear-gradient(135deg, var(--accent-hot), #ff6b2c);
  border-color: #ff6b2c;
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(255, 107, 44, .35), 0 0 0 14px rgba(255, 107, 44, .14), 0 18px 34px rgba(255, 107, 44, .28);
  animation: ccjPulse 1.8s ease-in-out infinite;
}
.ccj-step.is-selected .ccj-node-num { font-size: 1.2rem; }
@keyframes ccjPulse {
  0%, 100% { box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(255, 107, 44, .35), 0 0 0 14px rgba(255, 107, 44, .14), 0 18px 34px rgba(255, 107, 44, .28); }
  50% { box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(255, 107, 44, .25), 0 0 0 18px rgba(255, 107, 44, .08), 0 18px 34px rgba(255, 107, 44, .2); }
}

/* hover / focus: always wins the scale tie-break (declared last) */
.ccj-step:hover .ccj-node,
.ccj-step:focus-visible .ccj-node {
  transform: scale(1.1);
  border-color: #ff6b2c;
  box-shadow: 0 0 0 8px rgba(255, 107, 44, .16), 0 20px 38px rgba(255, 107, 44, .3);
}

.ccj-step-label { margin-top: 1.1rem; padding: 0 .3rem; line-height: 1.4; }
.ccj-step-tier { font-family: var(--font-mono); font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-ink); margin-right: .4em; white-space: nowrap; }
.ccj-step-title { font-size: .8rem; font-weight: 700; color: var(--ink); }
.ccj-info { display: none; }

/* -- active content panel -- */
.ccj-panel {
  margin-top: 3.5rem;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 2.6rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.6rem 4.6rem;
  box-shadow: 0 30px 70px rgba(20, 22, 28, .08);
  overflow: hidden;
}
.ccj-panel-watermark {
  position: absolute;
  top: -1rem;
  right: 1.6rem;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(6rem, 13vw, 9.5rem);
  line-height: 1;
  color: rgba(255, 107, 44, .06);
  pointer-events: none;
  user-select: none;
}
html[data-theme="dark"] .ccj-panel-watermark { color: rgba(255, 107, 44, .1); }
.ccj-panel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ccj-panel-nav svg { width: 18px; height: 18px; }
.ccj-panel-prev { left: 1rem; }
.ccj-panel-next { right: 1rem; }
.ccj-panel-nav:hover:not(:disabled), .ccj-panel-nav:focus-visible:not(:disabled) {
  border-color: #ff6b2c;
  color: #ff6b2c;
  box-shadow: 0 10px 22px rgba(255, 107, 44, .22);
  transform: translateY(-50%) scale(1.08);
}
.ccj-panel-nav:disabled { opacity: .3; cursor: default; }
.ccj-panel.ccj-anim { animation: ccjPanelSwap .35s cubic-bezier(.16, .84, .44, 1); }
@keyframes ccjPanelSwap {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.ccj-panel-icon {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-hot), #ff6b2c);
  box-shadow: 0 20px 40px rgba(255, 107, 44, .3);
}
.ccj-panel-icon-glow {
  position: absolute;
  inset: -20px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 44, .35), transparent 70%);
  animation: ccjGlowPulse 2.4s ease-in-out infinite;
}
@keyframes ccjGlowPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}
.ccj-panel-icon-shape { width: 52px; height: 52px; color: #fff; display: flex; }
.ccj-panel-icon-shape svg { width: 100%; height: 100%; }
.ccj-panel-body { flex: 1; min-width: 0; }
.ccj-panel-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ccj-panel-tier { font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ff6b2c; }
.ccj-panel-badge { font-family: var(--font-mono); font-size: .66rem; font-weight: 700; letter-spacing: .02em; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: .35rem .9rem; }
.ccj-panel-title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; color: #111827; margin: .6rem 0 0; line-height: 1.25; }
.ccj-panel-divider { display: block; width: 52px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, var(--accent-hot), #ff6b2c); margin: 1.2rem 0; }
.ccj-panel-list { list-style: none; margin: 0; padding: 0; font-size: 15.5px; color: #555; line-height: 1.8; display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 1.6rem; }
.ccj-panel-list li { position: relative; padding-left: 1.3rem; }
.ccj-panel-list li::before { content: ''; position: absolute; left: 0; top: .68em; width: 6px; height: 6px; border-radius: 50%; background: #ff6b2c; }
.ccj-panel-progress { display: flex; gap: .5rem; margin-top: 1.6rem; }
/* visible dot stays 8px — padding + content-box clipping grows only the
   invisible tap target to the ~32px minimum; the .is-active scale(1.4)
   below scales the whole target (and its painted center) together. */
.ccj-progress-dot { width: 32px; height: 32px; padding: 12px; border-radius: 50%; background: var(--border); background-clip: content-box; border: none; cursor: pointer; transition: background .25s ease, transform .25s ease; }
.ccj-progress-dot:hover { background: rgba(255, 107, 44, .5); }
.ccj-progress-dot.is-active { background: #ff6b2c; transform: scale(1.4); }
html[data-theme="dark"] .ccj-panel { background: rgba(27, 31, 38, .85); }
html[data-theme="dark"] .ccj-panel-title { color: #fff; }
html[data-theme="dark"] .ccj-panel-badge { color: rgba(238, 234, 225, .75); }
html[data-theme="dark"] .ccj-panel-list { color: rgba(238, 234, 225, .75); }

/* -- tablet: tighter horizontal layout -- */
@media (max-width: 980px) {
  .ccj-node { width: 54px; height: 54px; }
  .ccj-node-num { font-size: .92rem; }
  .ccj-step-title { font-size: .74rem; }
  .ccj-panel { flex-direction: column; text-align: center; padding: 2.2rem; gap: 1.6rem; }
  .ccj-panel-top { justify-content: center; }
  .ccj-panel-divider { margin-left: auto; margin-right: auto; }
  .ccj-panel-nav { display: none; }
  .ccj-panel-watermark { display: none; }
  .ccj-panel-progress { justify-content: center; }
}

/* -- mobile: vertical timeline, content card follows -- */
@media (max-width: 760px) {
  .ccj-steps { flex-direction: column; align-items: flex-start; gap: 2.4rem; }
  .ccj-step { flex-direction: row; align-items: center; text-align: left; gap: 1.1rem; width: 100%; }
  .ccj-step-icon {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 22px;
    height: 22px;
    margin: 0;
    padding: 4px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
    z-index: 2;
  }
  .ccj-node { flex-shrink: 0; }
  .ccj-step-label { margin-top: 0; padding: 0; }
  .ccj-panel-list { grid-template-columns: 1fr; }
}

/* ══════════════════ EMPLOYEE BENEFITS ══════════════════ */
.ceb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3rem; }
@media (max-width: 980px) { .ceb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ceb-grid { grid-template-columns: 1fr; } }
.ceb-card { text-align: center; padding: 1.8rem 1.2rem; }
.ceb-card .car-icon { margin: 0 auto 1rem; width: 48px; height: 48px; }
.ceb-card .car-icon svg { width: 24px; height: 24px; }
.ceb-card h3 { font-size: .98rem; }

/* ══════════════════ OPEN POSITIONS ══════════════════ */
.cop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 3rem;
  padding: 1.1rem;
  border-radius: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(20, 22, 28, .04), 0 10px 24px rgba(20, 22, 28, .06);
}
.cop-search { position: relative; flex: 1 1 220px; }
.cop-search svg { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--ink-soft); pointer-events: none; }
.cop-search input {
  width: 100%;
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .7rem .9rem .7rem 2.4rem;
  border: 1.5px solid var(--border);
  border-radius: .6rem;
  background: var(--surface-2);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cop-search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 106, 31, .15); }
.cop-select {
  font-family: var(--font-body);
  font-size: .86rem;
  padding: .7rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: .6rem;
  background: var(--surface-2);
  cursor: pointer;
  flex: 1 1 150px;
}
.cop-select:focus { outline: none; border-color: var(--accent); }

.cop-count { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-soft); margin-top: 1.2rem; }

.cop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; margin-top: 1.2rem; }
@media (max-width: 760px) { .cop-grid { grid-template-columns: 1fr; } }

.cop-card {
  position: relative;
  padding: 1.6rem 1.6rem 1.4rem;
  border-radius: 1.1rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .5));
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(20, 22, 28, .04), 0 12px 28px rgba(20, 22, 28, .06);
  transition: transform .4s cubic-bezier(.16, .84, .44, 1), box-shadow .4s ease, border-color .4s ease, opacity .3s ease;
}
.cop-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 20px 42px rgba(255, 106, 31, .16); }
.cop-card.is-hidden { display: none; }
.cop-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.cop-card-title { font-size: 1.05rem; font-weight: 700; }
.cop-card-dept { font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-ink); margin-top: .3rem; }
.cop-badge { flex-shrink: 0; font-family: var(--font-mono); font-size: .64rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent-ink); background: rgba(255, 106, 31, .08); border: 1px solid rgba(255, 106, 31, .25); border-radius: 999px; padding: .25rem .65rem; white-space: nowrap; }
.cop-meta { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; margin-top: 1rem; }
.cop-meta-item { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--ink-soft); }
.cop-meta-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.cop-card-foot { display: flex; align-items: center; justify-content: flex-end; margin-top: 1.3rem; }
.cop-apply {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  text-decoration: none;
  transition: gap .25s ease, color .25s ease;
}
.cop-apply:hover { gap: .8rem; color: var(--accent-deep); }
.cop-empty { text-align: center; padding: 3rem 1rem; color: var(--ink-soft); display: none; }
.cop-empty.show { display: block; }

/* ══════════════════ INTERNSHIP & CAMPUS HIRING ══════════════════ */
.cic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
@media (max-width: 900px) { .cic-grid { grid-template-columns: 1fr; } }
.cic-card { display: flex; flex-direction: column; }
.cic-card h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.cic-card .cic-tagline { font-family: var(--font-mono); font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: .9rem; }
.cic-list { list-style: none; margin: 1rem 0 1.4rem; display: flex; flex-direction: column; gap: .55rem; }
.cic-list li { display: flex; gap: .6rem; font-size: .86rem; color: var(--ink-soft); }
.cic-list li .cic-list-label { font-weight: 700; color: var(--ink); flex-shrink: 0; }
.cic-card .btn { margin-top: auto; align-self: flex-start; }

/* ══════════════════ RECRUITMENT PROCESS ══════════════════ */
.crp-row { position: relative; margin-top: 3.5rem; }
.crp-line-svg { position: absolute; top: 27px; left: 0; width: 100%; height: 4px; z-index: 0; overflow: visible; }
@media (max-width: 760px) { .crp-line-svg { display: none; } }
.crp-line-path { fill: none; stroke: var(--border); stroke-width: 2; }
.crp-line-progress { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 1000; stroke-dashoffset: 1000; transition: stroke-dashoffset 1.6s cubic-bezier(.16, .84, .44, 1); }
.crp-row.visible .crp-line-progress { stroke-dashoffset: 0; }
.crp-steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(7, 1fr); gap: 1rem; }
@media (max-width: 760px) { .crp-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .crp-steps { grid-template-columns: 1fr; } }
.crp-step { text-align: center; opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s cubic-bezier(.16, .84, .44, 1); }
.crp-step.visible { opacity: 1; transform: translateY(0); }
.crp-step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto .9rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 800; font-size: 1.1rem;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent)); color: #fff;
  box-shadow: 0 10px 24px rgba(255, 106, 31, .3);
}
.crp-step h3 { font-size: .92rem; margin-bottom: .3rem; }
.crp-step p { font-size: .76rem; color: var(--ink-soft); }

/* ══════════════════ FAQ ══════════════════ */
.cfq-list { max-width: 820px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .9rem; }
.cfq-item {
  border-radius: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.cfq-item.open { border-color: var(--accent); box-shadow: 0 14px 30px rgba(255, 106, 31, .1); }
.cfq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: .96rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.cfq-q-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.16, .84, .44, 1), background .3s ease, border-color .3s ease;
}
.cfq-item.open .cfq-q-icon { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.cfq-item.open .cfq-q-icon svg { color: #fff; }
.cfq-q-icon svg { width: 13px; height: 13px; color: var(--ink); }
.cfq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s cubic-bezier(.16, .84, .44, 1); }
.cfq-item.open .cfq-a-wrap { grid-template-rows: 1fr; }
.cfq-a-inner { overflow: hidden; }
.cfq-a { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .88rem; line-height: 1.7; }

/* ══════════════════ NEWSLETTER ══════════════════ */
.cnl-band {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 6rem;
  padding: 2.6rem clamp(1.4rem, 4vw, 3rem);
  border-radius: 1.6rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .45));
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(20, 22, 28, .04), 0 18px 40px rgba(20, 22, 28, .08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.cnl-copy h2 { font-size: 1.5rem; margin-bottom: .4rem; }
.cnl-copy p { color: var(--ink-soft); font-size: .92rem; max-width: 42ch; }
.cnl-form { display: flex; gap: .7rem; flex-wrap: wrap; flex: 0 1 420px; }
.cnl-form input {
  flex: 1 1 220px;
  font-family: var(--font-body);
  font-size: .92rem;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 2.5rem;
  background: var(--surface);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cnl-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 106, 31, .15); }
.cnl-form .btn { border: none; cursor: pointer; flex-shrink: 0; }
.cnl-success { display: none; align-items: center; gap: .6rem; color: var(--accent-ink); font-weight: 700; font-size: .9rem; }
.cnl-success.show { display: flex; }
.cnl-success svg { width: 20px; height: 20px; }
.cnl-error { display: none; color: var(--accent-deep); font-size: .82rem; margin-top: .5rem; flex-basis: 100%; }
.cnl-error.show { display: block; }

/* ══════════════════ FINAL CTA ══════════════════ */
.cfc {
  /* .cah-cta-ghost (reused here for the secondary CTA) reads var(--ink) and
     var(--border) — redefine them to the dark-theme values the hero uses so
     that button isn't rendered in the light theme's near-black-on-black text */
  --ink: #EEEAE1;
  --border: #262A34;
  position: relative;
  max-width: 1180px;
  margin: 0 auto 6rem;
  border-radius: 1.8rem;
  overflow: hidden;
  padding: clamp(3.2rem, 8vw, 5.5rem) 2rem;
  text-align: center;
  isolation: isolate;
  background: #0A0B0E;
}
.cfc-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 55% at 20% 20%, rgba(255, 106, 31, .35), transparent 60%),
    radial-gradient(ellipse 55% 55% at 82% 80%, rgba(255, 194, 75, .22), transparent 60%);
  animation: cfcMeshShift 12s ease-in-out infinite;
}
@keyframes cfcMeshShift {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.08) translate(1%, -1%); }
}
.cfc-particles { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.cfc-particle {
  position: absolute; bottom: -6%; left: var(--px, 50%); width: var(--ps, 3px); height: var(--ps, 3px);
  border-radius: 50%; background: var(--accent-hot); box-shadow: 0 0 6px 1px rgba(255, 194, 75, .6);
  opacity: 0; animation: cfcDrift var(--pd, 10s) ease-in var(--pdelay, 0s) infinite;
}
@keyframes cfcDrift { 0% { transform: translate(0, 0); opacity: 0; } 10% { opacity: .8; } 85% { opacity: .25; } 100% { transform: translate(var(--pdx, 18px), -100%); opacity: 0; } }
.cfc-shapes { position: absolute; inset: 0; z-index: 0; }
.cfc-shape { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255, 194, 75, .2); animation: cfcShapeFloat 10s ease-in-out infinite; }
.cfc-shape.a { width: 90px; height: 90px; top: 10%; left: 6%; }
.cfc-shape.b { width: 60px; height: 60px; bottom: 12%; right: 8%; animation-delay: 2.5s; }
.cfc-shape.c { width: 40px; height: 40px; top: 60%; left: 12%; animation-delay: 5s; }
@keyframes cfcShapeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.cfc-content { position: relative; z-index: 2; }
.cfc-content h2 { color: #EEEAE1; font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 1rem; }
.cfc-content p { color: #9C9A90; max-width: 56ch; margin: 0 auto 2.2rem; font-size: 1.05rem; }
.cfc-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
@media (prefers-reduced-motion: reduce) { .cfc-mesh, .cfc-particle, .cfc-shape { animation: none !important; } }

/* ══════════════════ APPLICATION FORM — DRAG & DROP RESUME UPLOAD ══════════════════ */
/* Wraps the EXISTING #resume file input (same id/name/required/accept) — the
   native input is stretched invisibly over the whole dropzone via
   position:absolute + opacity:0, so click-to-browse and keyboard access work
   for free, and the file that ends up in FormData(form) on submit is
   unchanged. Only the visual layer and preview/progress are new. */
.car-dropzone {
  position: relative;
  min-height: 108px;
  border: 1.5px dashed var(--border);
  border-radius: .8rem;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  transition: border-color .25s ease, background .25s ease;
}
.car-dropzone:hover, .car-dropzone.is-dragover { border-color: var(--accent); background: rgba(255, 106, 31, .06); }
.car-dropzone.has-file { border-style: solid; }
.car-dropzone-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.car-dropzone-empty { pointer-events: none; text-align: center; color: var(--ink-soft); }
.car-dropzone.has-file .car-dropzone-empty { display: none; }
.car-dropzone-icon { width: 30px; height: 30px; color: var(--accent); margin: 0 auto .5rem; }
.car-dropzone-empty p { font-size: .86rem; }
.car-dropzone-empty strong { color: var(--ink); }

/* z-index must beat .car-dropzone-input's (2) — otherwise the invisible
   full-cover file input, despite being pointer-events:auto, wins every
   hit-test over this whole block regardless of the remove button's own
   z-index, since that only resolves within this element's stacking context */
.car-dropzone-file { display: none; align-items: center; gap: .9rem; width: 100%; position: relative; z-index: 3; pointer-events: none; }
.car-dropzone.has-file .car-dropzone-file { display: flex; }
.car-dropzone-file-icon { width: 34px; height: 34px; flex-shrink: 0; }
.car-dropzone-file-info { flex: 1; min-width: 0; }
.car-dropzone-file-name { display: block; font-size: .86rem; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.car-dropzone-file-size { display: block; font-size: .74rem; color: var(--ink-soft); margin-top: .15rem; }
.car-dropzone-progress-track { height: 5px; border-radius: 999px; background: var(--border); overflow: hidden; margin-top: .5rem; }
.car-dropzone-progress-fill { height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg, var(--accent-hot), var(--accent)); transition: width .25s ease; }
.car-dropzone-remove {
  position: relative;
  z-index: 3;
  pointer-events: auto;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, color .2s ease;
}
.car-dropzone-remove:hover { border-color: var(--accent-deep); color: var(--accent-deep); }

/* animated validation: a brief shake on the field wrapper when its input
   fails native validity on submit (real validity state, not decorative) */
@keyframes carFieldShake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-3px); }
  40%, 60% { transform: translateX(3px); }
}
.field.car-field-shake { animation: carFieldShake .4s ease; }
.field.car-field-invalid input, .field.car-field-invalid select, .field.car-field-invalid textarea, .field.car-field-invalid .car-dropzone {
  border-color: var(--accent-deep) !important;
}

/* ══════════════════ FLOATING HR ASSISTANT ══════════════════ */
.cha-fab {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(255, 106, 31, .4);
  transition: transform .3s cubic-bezier(.16, .84, .44, 1), box-shadow .3s ease;
}
.cha-fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 40px rgba(255, 106, 31, .5); }
.cha-fab svg { width: 26px; height: 26px; }
.cha-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: chaPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes chaPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

.cha-panel {
  position: fixed;
  right: 1.6rem;
  bottom: 5.6rem;
  z-index: 900;
  width: min(340px, calc(100vw - 3.2rem));
  max-height: min(480px, calc(100vh - 8rem));
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(20, 22, 28, .22);
  transform: translateY(16px) scale(.96);
  opacity: 0;
  visibility: hidden;
  transition: transform .3s cubic-bezier(.16, .84, .44, 1), opacity .3s ease, visibility .3s ease;
}
.cha-panel.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
.cha-head { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--border); background: linear-gradient(135deg, var(--accent-hot), var(--accent)); border-radius: 1.2rem 1.2rem 0 0; color: #fff; }
.cha-head-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cha-head-icon svg { width: 18px; height: 18px; }
.cha-head-title { font-weight: 700; font-size: .92rem; }
.cha-head-sub { font-size: .72rem; opacity: .85; }
.cha-body { flex: 1; overflow-y: auto; padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: .7rem; }
.cha-msg { max-width: 88%; padding: .7rem .95rem; border-radius: .9rem; font-size: .84rem; line-height: 1.5; }
.cha-msg.bot { align-self: flex-start; background: var(--surface-2); border-bottom-left-radius: .3rem; }
.cha-msg.user { align-self: flex-end; background: linear-gradient(135deg, var(--accent-hot), var(--accent)); color: #fff; border-bottom-right-radius: .3rem; }
.cha-quick { display: flex; flex-wrap: wrap; gap: .5rem; padding: .2rem 1.1rem 1rem; }
.cha-quick-btn {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .45rem .8rem;
  border-radius: 2rem;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.cha-quick-btn:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }

/* ══════════════════ STICKY QUICK ACTIONS ══════════════════
   Dark frosted-glass rail (deliberately theme-independent, like the
   navbar) so it reads the same whether it's floating over the dark
   career hero photo or a light section further down the page — a
   bright opaque panel here used to sit squarely on top of hero copy. */
.csa-rail {
  position: fixed;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: .55rem;
  border-radius: 1.1rem;
  background: rgba(8, 12, 22, .62);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .28);
  opacity: 0;
  transition: transform .4s cubic-bezier(.16, .84, .44, 1), opacity .4s ease;
}
.csa-rail.is-hidden { transform: translateY(-50%) translateX(-90px); opacity: 0; pointer-events: none; }
.csa-rail.is-visible { opacity: 1; }
@media (max-width: 1180px) { .csa-rail { display: none; } }
.csa-link {
  width: 38px;
  height: 38px;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  position: relative;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.csa-link::before {
  /* subtle active/hover indicator bar on the leading edge */
  content: '';
  position: absolute;
  left: -.55rem;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 2px;
  background: var(--accent-hot);
  transform: translateY(-50%);
  transition: height .25s ease;
}
.csa-link:hover, .csa-link:focus-visible { background: rgba(255, 106, 31, .16); color: var(--accent-hot); transform: translateX(2px); }
.csa-link:hover::before, .csa-link:focus-visible::before { height: 60%; }
.csa-link svg { width: 17px; height: 17px; }
.csa-link .csa-tooltip {
  position: absolute;
  left: calc(100% + .8rem);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: #14161C;
  color: #EEEAE1;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  padding: .4rem .7rem;
  border-radius: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.csa-link:hover .csa-tooltip, .csa-link:focus-visible .csa-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .csa-rail, .csa-link, .csa-link::before, .csa-link .csa-tooltip { transition: opacity .2s ease !important; }
}

/* ══ DARK MODE ══ */
/* "Why Join Us" / Values / Benefits premium card — was a bright white
   glass gradient with a matching white border ring */
html[data-theme="dark"] .car-card {
  background: linear-gradient(155deg, rgba(27, 31, 38, .85), rgba(18, 21, 26, .5));
  border-color: rgba(255, 255, 255, .1);
}

/* Learning & Development roadmap milestone node badge */
html[data-theme="dark"] .cld-node {
  background: linear-gradient(155deg, var(--surface), var(--surface-2));
}

/* Open Positions job card */
html[data-theme="dark"] .cop-card {
  background: linear-gradient(155deg, rgba(27, 31, 38, .8), rgba(18, 21, 26, .5));
}

/* Newsletter band */
html[data-theme="dark"] .cnl-band {
  background: linear-gradient(155deg, rgba(27, 31, 38, .8), rgba(18, 21, 26, .45));
}
