/* ─────────────────────────────────────────────────────────────
   CAREERS PAGE — Additional Styles
   Inherits: --blue, --bg, --px, nav, footer, btn from style.css
───────────────────────────────────────────────────────────────── */

/* ══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.careers-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 116px var(--px) 80px;
  overflow: hidden;
  background: var(--bg);
}

.careers-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ch-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.45;
}
.ch-blob-1 {
  width: 60vw; height: 50vw;
  background: #0f2150;
  top: -20vw; left: -10vw;
  animation: prahaDrift 28s infinite alternate ease-in-out;
}
.ch-blob-2 {
  width: 40vw; height: 40vw;
  background: #1a0a3b;
  bottom: -10vw; right: -5vw;
  animation: prahaDrift 22s 4s infinite alternate-reverse ease-in-out;
}
.ch-blob-3 {
  width: 30vw; height: 30vw;
  background: #0d2040;
  top: 30%; left: 55%;
  animation: prahaDrift 35s 8s infinite alternate ease-in-out;
}

.careers-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(24px);
}

.ch-h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  background: var(--h1-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ch-h1-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 4px;
}

.ch-sub {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 660px;
}

/* ══════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════ */
.stats-strip {
  background: #060912;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 var(--px);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 48px;
  text-align: center;
}

.stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.stat-big {
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 900;
  color: #60a5fa;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  flex-shrink: 0;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .stat-item { padding: 24px 20px; }
  .stat-sep { display: none; }
  .stats-inner { gap: 0; }
}

/* ══════════════════════════════════════
   FOUNDERS SECTION
═══════════════════════════════════════ */
.founders-headline {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 36px 0;
}

.founders-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.founders-years-badge {
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: rgba(96,165,250,0.08);
  border: 1px solid rgba(96,165,250,0.18);
  border-radius: 14px;
  padding: 14px 22px;
}

.fy-num {
  font-size: 40px;
  font-weight: 900;
  color: #60a5fa;
  line-height: 1;
  letter-spacing: -1px;
}

.fy-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}

.founders-tag-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ftag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--node-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
}

.ftag::before {
  content: '✓';
  color: #34d399;
  font-size: 10px;
  font-weight: 700;
}

.founders-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.founders-body-2 {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 16px 0;
}

.founders-promise-seal {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(96,165,250,0.05);
  border: 1px solid rgba(96,165,250,0.14);
  border-radius: 14px;
}

.fps-icon {
  width: 44px;
  height: 44px;
  background: rgba(96,165,250,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fps-icon svg {
  width: 22px;
  height: 22px;
  stroke: #60a5fa;
}

.fps-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3px;
}

.fps-text {
  font-size: 12px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   CULTURE SECTION
═══════════════════════════════════════ */
.culture-section {
  background: #04060f;
  padding: 120px var(--px) 140px;
  position: relative;
  overflow: hidden;
}

.culture-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(22,50,91,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.culture-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 1;
}

.culture-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.culture-title em {
  font-style: normal;
  color: #60a5fa;
}
[data-theme="light"] .culture-title em {
  color: #2563eb;
}

.culture-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.culture-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(28px);
  transition: border-color 0.35s, background 0.35s;
}

.culture-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(96,165,250,0.07) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}

.culture-card:hover {
  border-color: rgba(96,165,250,0.22);
  background: rgba(96,165,250,0.03);
}

.culture-card:hover::before { opacity: 1; }

.culture-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.culture-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(96,165,250,0.08);
  border: 1px solid rgba(96,165,250,0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.culture-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #60a5fa;
  stroke-width: 1.5;
}

.culture-num {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}

.culture-card-h {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.culture-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
  margin: 0;
}

.culture-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.04em;
}

.ctag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ctag-dot.dot-blue { background: #60a5fa; }
.ctag-dot.dot-purple { background: #a78bfa; }
.ctag-dot.dot-green { background: #34d399; }

@media (max-width: 900px) {
  .culture-grid { grid-template-columns: 1fr; max-width: 560px; }
  .culture-section { padding: 80px var(--px); }
}

/* ══════════════════════════════════════
   TECH / TERMINAL SECTION
═══════════════════════════════════════ */
.tech-impact-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(96,165,250,0.06);
  border: 1px solid rgba(96,165,250,0.14);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-nav);
  margin-top: 8px;
}

.tib-icon { font-size: 18px; }
.tech-impact-badge strong { color: var(--text-primary); }

/* Terminal card overrides visual-card */
.terminal-visual {
  background: #070b14;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.terminal-visual::before { display: none; }

.terminal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.terminal-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.terminal-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: rgba(239,68,68,0.7); }
.terminal-dots span:nth-child(2) { background: rgba(245,158,11,0.7); }
.terminal-dots span:nth-child(3) { background: rgba(34,197,94,0.7); }

.terminal-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-subtle);
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  flex: 1;
  text-align: center;
  letter-spacing: 0.02em;
}

.terminal-body {
  padding: 20px 22px;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', Courier, monospace;
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--text-nav);
  flex: 1;
  overflow: hidden;
}

.t-prompt { color: #34d399; }
.t-cmd    { color: #e2e8f0; }
.t-dim    { color: rgba(255,255,255,0.28); }
.t-success{ color: #34d399; }
.t-blue   { color: #60a5fa; }
.t-val    { color: #a78bfa; }

.t-cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: #60a5fa;
  vertical-align: text-bottom;
  animation: cur-blink 1.1s step-end infinite;
  margin-left: 1px;
}

@keyframes cur-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ══════════════════════════════════════
   GLOBAL BRIDGE
═══════════════════════════════════════ */
.global-section {
  background: #060912;
  padding: 120px var(--px) 140px;
  position: relative;
  overflow: hidden;
}



.global-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
  position: relative;
  z-index: 1;
}

.global-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.global-title em {
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  color: #60a5fa;
  font-weight: 400;
}

.global-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.global-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 580px;
  margin: 24px auto 0;
  text-align: left;
  padding: 0;
}
.global-bullets li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}
.global-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.2;
}
[data-theme="light"] .global-bullets li::before {
  color: #2563eb;
}

.global-card {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  position: relative;
  z-index: 1;
}

.city-block {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.city-block--left  { border-right: 1px solid rgba(255,255,255,0.07); }
.city-block--right { border-left: 1px solid rgba(255,255,255,0.07); align-items: flex-end; text-align: right; }

.city-flag { font-size: 34px; line-height: 1; }

.city-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-top: 4px;
}

.city-timezone {
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
}

.city-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.city-perks {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.city-perks li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 9px;
}

.city-perks li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(96,165,250,0.55);
  flex-shrink: 0;
}

.city-block--right .city-perks li {
  flex-direction: row-reverse;
}

/* Center connector column */
.global-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  position: relative;
  background: rgba(96,165,250,0.01);
}

.gc-line {
  position: absolute;
  inset: 0;
  opacity: 0.7;
}

.gc-line svg {
  width: 100%;
  height: 100%;
}

.gc-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.gc-pulse {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(96,165,250,0.08);
  border: 1px solid rgba(96,165,250,0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-pulse::before, .gc-pulse::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(96,165,250,0.15);
  animation: gcRipple 3s ease-out infinite;
}
.gc-pulse::before { width: 72px; height: 72px; }
.gc-pulse::after  { width: 94px; height: 94px; animation-delay: 0.9s; }

@keyframes gcRipple {
  0%   { opacity: 0.7; transform: scale(0.85); }
  100% { opacity: 0;   transform: scale(1.3); }
}

.gc-dot {
  width: 14px;
  height: 14px;
  background: #60a5fa;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(96,165,250,0.7), 0 0 28px rgba(96,165,250,0.3);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}

.gc-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* Global bottom stats */
.global-stats {
  max-width: 1100px;
  margin: 48px auto 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.gs-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  padding: 0 52px;
  flex: 1;
  max-width: 440px;
}

.gs-sep {
  width: 1px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  align-self: stretch;
}

.gs-val {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.gs-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .global-card { grid-template-columns: 1fr; }
  .global-connector {
    flex-direction: row;
    padding: 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 20px;
  }
  .gc-line { display: none; }
  .gc-center { flex-direction: row; gap: 16px; }
  .gc-pulse::before, .gc-pulse::after { display: none; }
  .city-block--left  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .city-block--right { border-left: none; align-items: flex-start; text-align: left; }
  .city-block--right .city-perks li { flex-direction: row; }
  .global-stats { flex-direction: column; gap: 24px; }
  .gs-sep { width: 60px; height: 1px; }
}

/* ══════════════════════════════════════
   ENGINEERING PRINCIPLES
═══════════════════════════════════════ */
.principles-section {
  background: #04060f;
  padding: 120px var(--px) 140px;
  position: relative;
}

.principles-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.2), transparent);
}

.principles-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

.principles-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.principles-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.principles-list {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.principle-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(18px);
  cursor: default;
  transition: background 0.2s;
}

.principle-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.principle-row:hover .principle-num { color: rgba(96,165,250,0.3); }

.principle-num {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  transition: color 0.4s;
  text-align: center;
}

.principle-h {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.principle-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  max-width: 560px;
}

.principle-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-subtle);
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pt-dot.dot-blue { background: #60a5fa; }
.pt-dot.dot-green { background: #34d399; }
.pt-dot.dot-orange { background: #fb923c; }
.pt-dot.dot-pink { background: #f472b6; }

@media (max-width: 768px) {
  .principle-row { grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; }
  .principle-tag { display: none; }
  .principle-num { font-size: 32px; }
}

/* ══════════════════════════════════════
   OPEN ROLES
═══════════════════════════════════════ */
.roles-section { min-height: 70vh; }

.roles-container {
  max-width: 900px !important;
}

.roles-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 32px 0 28px;
  text-align: left;
}

.role-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.3s, background 0.3s;
}

.role-chip:hover {
  border-color: rgba(96,165,250,0.28);
  background: rgba(96,165,250,0.04);
}

.role-icon {
  width: 42px;
  height: 42px;
  background: rgba(96,165,250,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 16px;
  flex-shrink: 0;
}

.role-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.role-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.role-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.role-apply {
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: 8px;
  background: rgba(96,165,250,0.06);
  transition: all 0.2s;
}

.role-apply:hover {
  color: #fff;
  background: rgba(96,165,250,0.18);
  border-color: rgba(96,165,250,0.4);
}

.roles-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.roles-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.roles-note strong { color: var(--footer-link); font-weight: 500; }

@media (max-width: 600px) {
  .role-chip { flex-wrap: wrap; }
  .role-apply { align-self: flex-end; }
}

/* ══════════════════════════════════════
   RESPONSIVE SHARED
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .careers-hero { padding-top: 100px; padding-bottom: 60px; padding-left: var(--px); padding-right: var(--px); }
  .ch-h1 { font-size: clamp(28px, 8vw, 44px); }
  .ch-sub { font-size: 15px; }
  .founders-section { padding: 64px var(--px); }
  .global-section   { padding: 64px var(--px); }
  .principles-section { padding: 64px var(--px); }
  .culture-section { padding: 64px var(--px); }
  .open-roles-section { padding: 64px var(--px); }
  .perks-section { padding: 64px var(--px); }
  .apply-section, .careers-cta-section { padding: 64px var(--px); }
  .stats-strip { padding: 20px var(--px); }
  .role-chip { flex-wrap: wrap; gap: 10px; padding: 16px 16px; }
}

@media (max-width: 480px) {
  .careers-hero { padding-top: 88px; padding-left: var(--px); padding-right: var(--px); }
  .careers-hero-content { gap: 18px; }
  .founders-meta { flex-direction: column; align-items: flex-start; }
  .founders-section { padding: 48px var(--px); }
  .global-section   { padding: 48px var(--px); }
  .principles-section { padding: 48px var(--px); }
  .culture-section { padding: 48px var(--px); }
  .open-roles-section { padding: 48px var(--px); }
  .perks-section { padding: 48px var(--px); }
  .apply-section, .careers-cta-section { padding: 48px var(--px); }
  .stats-strip { padding: 16px var(--px); }
  .role-apply { align-self: flex-end; }
  .ch-h1 { font-size: clamp(24px, 7vw, 36px); }
}

/* ─────────────────────────────────────────────────────
   ACCENT TEXT
   ───────────────────────────────────────────────────── */
.text-accent { color: #60a5fa; }
[data-theme="light"] .text-accent { color: #2563eb; }

/* ══════════════════════════════════════
   LIGHT MODE OVERRIDES (careers page)
   ═══════════════════════════════════════ */
[data-theme="light"] .ch-blob-1 { background: #bfdbfe; opacity: 0.4; }
[data-theme="light"] .ch-blob-2 { background: #ddd6fe; opacity: 0.35; }
[data-theme="light"] .ch-blob-3 { background: #e0e7ff; opacity: 0.4; }
[data-theme="light"] .ch-h1 {
  background: var(--h1-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .ch-sub { color: var(--text-secondary); }
[data-theme="light"] .ch-stat-num { color: var(--text-primary); }
[data-theme="light"] .ch-stat-label { color: var(--text-muted); }

/* Stats Strip */
[data-theme="light"] .stats-strip { background: var(--bg-2); border-color: var(--border); }
[data-theme="light"] .stat-big { color: var(--text-primary); }
[data-theme="light"] .stat-suffix { color: #2563eb; }
[data-theme="light"] .stat-sep { background: rgba(22,50,91,0.1); }

/* Founders Section */
[data-theme="light"] .founders-headline { color: var(--text-primary); }
[data-theme="light"] .fy-num { color: #2563eb; }
[data-theme="light"] .founders-years-badge { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.18); }
[data-theme="light"] .fps-icon { background: rgba(37,99,235,0.08); }
[data-theme="light"] .fps-icon svg { stroke: #2563eb; }
[data-theme="light"] .fps-title { color: var(--text-primary); }
[data-theme="light"] .founders-promise-seal { background: rgba(37,99,235,0.04); border-color: rgba(37,99,235,0.12); }

/* Culture Section */
[data-theme="light"] .culture-section { background: var(--bg-2); }
[data-theme="light"] .culture-title { color: var(--text-primary); }
[data-theme="light"] .culture-sub { color: var(--text-secondary); }
[data-theme="light"] .culture-card { background: var(--surface); border-color: var(--border); }
[data-theme="light"] .culture-card-h { color: var(--text-primary); }
[data-theme="light"] .culture-card-desc { color: var(--text-secondary); }
[data-theme="light"] .culture-icon-wrap { background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.14); }
[data-theme="light"] .culture-icon-wrap svg { stroke: #2563eb; }
[data-theme="light"] .culture-num { color: rgba(22,50,91,0.12); }
[data-theme="light"] .tech-impact-badge { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.14); }

/* Global Section */
[data-theme="light"] .global-section { background: var(--bg); }
[data-theme="light"] .global-title { color: var(--text-primary); }
[data-theme="light"] .global-title em { color: #2563eb; }
[data-theme="light"] .global-card { background: var(--surface); }
[data-theme="light"] .city-name { color: var(--text-primary); }
[data-theme="light"] .city-timezone { color: #2563eb; }
[data-theme="light"] .city-block--left { border-right-color: rgba(22,50,91,0.08); }
[data-theme="light"] .city-block--right { border-left-color: rgba(22,50,91,0.08); }
[data-theme="light"] .global-connector { background: rgba(37,99,235,0.02); }
[data-theme="light"] .gc-pulse { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.15); }
[data-theme="light"] .gc-pulse::before, [data-theme="light"] .gc-pulse::after { border-color: rgba(37,99,235,0.12); }
[data-theme="light"] .gc-dot { background: #2563eb; box-shadow: 0 0 14px rgba(37,99,235,0.6), 0 0 28px rgba(37,99,235,0.2); }
[data-theme="light"] .gs-sep { background: rgba(22,50,91,0.08); }
[data-theme="light"] .gs-val { color: var(--text-primary); }
[data-theme="light"] .city-perks li::before { background: rgba(37,99,235,0.45); }

/* Principles Section */
[data-theme="light"] .principles-section { background: var(--bg-2); }
[data-theme="light"] .principles-title { color: var(--text-primary); }
[data-theme="light"] .principles-sub { color: var(--text-secondary); }
[data-theme="light"] .principle-row { border-bottom-color: rgba(22,50,91,0.08); }
[data-theme="light"] .principle-row:first-child { border-top-color: rgba(22,50,91,0.08); }
[data-theme="light"] .principle-num { color: rgba(22,50,91,0.06); }
[data-theme="light"] .principle-row:hover .principle-num { color: rgba(37,99,235,0.22); }
[data-theme="light"] .principle-h { color: var(--text-primary); }
[data-theme="light"] .principle-desc { color: var(--text-secondary); }

/* Open Roles Section */
[data-theme="light"] .open-roles-section { background: var(--bg); }
[data-theme="light"] .open-roles-title { color: var(--text-primary); }
[data-theme="light"] .open-roles-sub { color: var(--text-secondary); }
[data-theme="light"] .role-chip { background: var(--surface); border-color: var(--border); }
[data-theme="light"] .role-chip:hover { border-color: rgba(37,99,235,0.22); background: rgba(37,99,235,0.04); }
[data-theme="light"] .role-icon { background: rgba(37,99,235,0.08); color: #2563eb; }
[data-theme="light"] .role-title { color: var(--text-primary); }
[data-theme="light"] .role-meta { color: var(--text-muted); }
[data-theme="light"] .role-apply { color: #2563eb; background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.2); }
[data-theme="light"] .role-apply:hover { color: #fff; background: rgba(37,99,235,0.9); border-color: rgba(37,99,235,0.9); }

/* Perks Section */
[data-theme="light"] .perks-section { background: var(--bg); }
[data-theme="light"] .perk-item { color: var(--text-secondary); }

/* Apply & CTA Section */
[data-theme="light"] .apply-section, [data-theme="light"] .careers-cta-section { background: var(--bg-3); }
[data-theme="light"] .apply-title, [data-theme="light"] .cta-title-c { color: var(--text-primary); }
[data-theme="light"] .apply-desc, [data-theme="light"] .cta-sub-c { color: var(--text-secondary); }
[data-theme="light"] .ch-eyebrow { background: rgba(22,50,91,0.08); border-color: rgba(22,50,91,0.15); color: #2563eb; }
[data-theme="light"] .section-eyebrow-c { color: var(--text-muted); }
[data-theme="light"] .careers-footer { background: var(--bg-3); border-top-color: var(--footer-border); }

/* ── MAP CONTAINER ── */
.map-container {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 12 / 6.5;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.map-container.shown {
  opacity: 1;
  transform: translateY(0);
}
#mapCanvas {
  width: 100%;
  height: 100%;
  display: block;
}
.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}
.marker-dot {
  width: 9px;
  height: 9px;
  background: #6366f1; /* Brand blue */
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px #6366f1, 0 0 0 4px rgba(99, 102, 241, 0.25);
  animation: markerGlow 2.5s infinite;
}
@keyframes markerGlow {
  0%, 100% { box-shadow: 0 0 10px #6366f1, 0 0 0 4px rgba(99, 102, 241, 0.25); }
  50% { box-shadow: 0 0 16px #6366f1, 0 0 0 7px rgba(99, 102, 241, 0.4); }
}
.marker-label {
  position: absolute;
  background: #ffffff;
  color: #0c111d;
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 8px 12px -3px rgba(12, 17, 29, 0.08), 0 3px 5px -2px rgba(12, 17, 29, 0.03);
  pointer-events: auto;
  border: 1px solid rgba(12, 17, 29, 0.06);
}
.marker-label--left {
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.marker-label--left::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #ffffff;
}
.marker-label--right {
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.marker-label--right::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #ffffff;
}
@media (max-width: 768px) {
  .global-section { padding: 64px var(--px) 80px; }
  .global-header { margin-bottom: 48px; }
  .marker-label { padding: 5px 10px; }
}
@media (max-width: 480px) {
  .global-section { padding: 48px var(--px) 64px; }
  .global-header { margin-bottom: 36px; }
  .marker-label { display: none; }
}
[data-theme="light"] .global-section { background: var(--bg); }
[data-theme="light"] .global-title { color: var(--text-primary); }
[data-theme="light"] .global-title em { color: #2563eb; }

.global-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 32px auto 0;
  text-align: left;
  padding: 0;
}
.global-bullets li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
}
.global-bullets li::before {
  content: "•";
  color: #6366f1; /* Brand blue matching map dot */
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  left: 4px;
  top: -2px;
}
.global-bullets strong {
  color: #fff;
}
[data-theme="light"] .global-bullets strong {
  color: var(--text-primary);
}

.tech-section .cap-header {
  margin-bottom: 80px;
}

.careers-glow {
  background: #7c3aed !important;
  opacity: 0.12 !important;
}



