/* WhiteBridge — design ported from whitebridge.ai (#2337E0 accent, white/grey palette) */

/* ============================================================ */
/* TYPOGRAPHY TOKENS (1.25 major-third scale) */
/* ============================================================ */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Consolas, monospace;

  --text-xs: 0.75rem;    /* 12 — captions, table headers, labels */
  --text-sm: 0.875rem;   /* 14 — secondary UI, metadata */
  --text-base: 1rem;     /* 16 — body */
  --text-md: 1.125rem;   /* 18 — lead, card titles */
  --text-lg: 1.25rem;    /* 20 — subheadings */
  --text-xl: 1.5rem;     /* 24 — section titles */
  --text-2xl: 1.875rem;  /* 30 — page titles */
  --text-3xl: 2.25rem;   /* 36 — display */
  --text-4xl: clamp(2rem, 4vw + 1rem, 3rem); /* hero — fluid on marketing */

  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  --leading-none: 1;
  --leading-tight: 1.15;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  --tracking-tight: -0.02em;
  --tracking-snug: -0.01em;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em;

  --prose-width: 65ch;
}

* { box-sizing: border-box; }
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: #F8F9FA;
  color: #101828;
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  overflow-x: hidden;
  font-kerning: normal;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-bold);
  color: #101828;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-snug);
}

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-md { font-size: var(--text-md); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }

.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }
.font-extrabold { font-weight: var(--font-extrabold); }

.tabular-nums { font-variant-numeric: tabular-nums; }

.wb-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: #475467;
  max-width: var(--prose-width);
}
.wb-prose { max-width: var(--prose-width); line-height: var(--leading-relaxed); }
.wb-label {
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: #667085;
}
.wb-summary-label {
  font-size: var(--text-sm);
  color: #667085;
  margin-bottom: 4px;
}
.wb-summary-value {
  font-size: var(--text-md);
  font-weight: var(--font-bold);
  color: #101828;
}
a { color: #2337E0; text-decoration: none; }
a:hover { color: #1A2BC8; }

.wb-container { max-width: 1248px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* ============================================================ */
/* HEADER (matches whitebridge.ai) */
/* ============================================================ */
.navbar-logo-left { width: 100%; }
.navbar-logo-left-container {
  position: relative; z-index: 100; background-color: #fff;
  height: 80px; border-bottom: 1px solid #EAECF0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.navbar-logo-left-container .wb-container { height: 100%; max-width: 1248px; }
.navbar-wrapper { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.navbar-brand { display: inline-block; }
.navbar-brand img { height: 38px; width: auto; }
.nav-menu-wrapper { display: flex; align-items: center; height: 100%; }
.nav-menu-two { display: flex; align-items: center; margin: 0; padding: 0; list-style: none; gap: 8px; }
.list-item { margin-right: 24px; display: flex; align-items: center; }
.list-item.use-cases, .list-item:last-child { margin-right: 0; }
.nav-link {
  display: flex; align-items: center; gap: 8px; height: 24px;
  font-weight: var(--font-bold); font-size: var(--text-base); line-height: 1.5; color: #475467;
  text-decoration: none; transition: color 0.2s;
}
.nav-link:hover { color: #2337E0; text-decoration: none; }
.nav-link-accent {
  display: flex; align-items: center; padding: 10px 18px; gap: 8px; height: 44px;
  font-weight: var(--font-bold); font-size: var(--text-base); line-height: 1.5; color: #475467;
  text-decoration: none; border-radius: 8px; transition: all 0.2s;
}
.nav-link-accent:hover { color: #2337E0; }
.button-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; gap: 8px; min-width: 92px; height: 44px;
  background: #2337E0; box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05); border-radius: 8px;
  font-weight: var(--font-semibold); font-size: var(--text-base); line-height: 1.5; color: #fff !important;
  text-decoration: none; border: 0; cursor: pointer; transition: background-color 0.2s;
}
.button-primary:hover { background-color: #1A2BC8; color: #fff; text-decoration: none; }
.button-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; height: 44px;
  background: #fff; color: #475467 !important; border: 1px solid #D0D5DD; border-radius: 8px;
  font-weight: 600; text-decoration: none; transition: all .2s; cursor: pointer;
}
.button-secondary:hover { border-color: #2337E0; color: #2337E0 !important; }
.menu-button { display: none; padding: 10px; cursor: pointer; }
.light-menu { position: relative; width: 24px; height: 20px; }
.light-menu:before, .light-menu:after, .light-menu span {
  position: absolute; left: 0; width: 24px; height: 2px;
  background-color: #1a1a1a; transition: transform .3s, opacity .3s;
}
.light-menu:before, .light-menu:after { content: ''; }
.light-menu:before { top: 0; }
.light-menu span { top: 9px; }
.light-menu:after { bottom: 0; }
.navigation-actions { display: flex; align-items: center; gap: 8px; }

/* Locale picker styled to match nav */
.wb-lang { position: relative; margin-left: 8px; }
.wb-lang summary { list-style: none; cursor: pointer; padding: 8px 12px;
  border: 1px solid #D0D5DD; border-radius: 8px; font-size: var(--text-sm); color: #475467; font-weight: var(--font-semibold); }
.wb-lang summary::-webkit-details-marker { display: none; }
.wb-lang ul { position: absolute; right: 0; top: 100%; margin: 4px 0 0; padding: 4px;
  background: #fff; border: 1px solid #EAECF0; border-radius: 8px; min-width: 100px;
  list-style: none; box-shadow: 0 4px 12px rgba(16,24,40,.1); z-index: 200; }
.wb-lang li a { display: block; padding: 6px 10px; color: #475467; border-radius: 4px; }
.wb-lang li a:hover { background: #F9FAFB; color: #2337E0; }

@media screen and (max-width: 991px) {
  .menu-button { display: block; }
  .nav-menu-wrapper { position: fixed; top: 80px; right: -100%; width: 300px;
    height: calc(100vh - 80px); padding: 20px; background-color: #fff;
    flex-direction: column; align-items: flex-start; transition: right .3s ease-out;
    overflow-y: auto; z-index: 1001; }
  .nav-menu-wrapper.open { right: 0; }
  .nav-menu-two { flex-direction: column; align-items: flex-start; width: 100%; }
  .list-item { margin-right: 0; margin-bottom: 15px; width: 100%; }
  .button-primary { width: 100%; }
}

/* ============================================================ */
/* PAYWALL BANNER */
/* ============================================================ */
.wb-paywall-banner { background: #F0F2FF; color: #2337E0; padding: 10px 0; font-size: var(--text-sm);
  border-bottom: 1px solid #D0D5DD; font-weight: var(--font-medium); text-align: center; line-height: var(--leading-snug); }
.wb-paywall-banner-zero { background: #FEF3F2; color: #B42318; border-bottom-color: #FECDCA; }
.wb-paywall-banner a { color: inherit; text-decoration: underline; font-weight: var(--font-bold); margin-left: 8px; }

/* ============================================================ */
/* FLASH MESSAGES */
/* ============================================================ */
.wb-flash { padding: 12px 0; font-size: var(--text-sm); font-weight: var(--font-medium); line-height: var(--leading-snug); }
.wb-flash-ok  { background: #ECFDF3; color: #027A48; }
.wb-flash-err { background: #FEF3F2; color: #B42318; }

/* ============================================================ */
/* HOME / HERO */
/* ============================================================ */
.hero-section { padding: 80px 0 60px; background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 100%); text-align: center; }
.hero-content { max-width: 800px; width: 100%; margin: 0 auto; }
.hero-content h1 {
  font-size: var(--text-4xl); font-weight: var(--font-extrabold); color: #101828;
  margin: 0 0 16px; line-height: var(--leading-tight); letter-spacing: var(--tracking-tight);
}
.subtitle {
  font-size: var(--text-lg); line-height: var(--leading-relaxed); color: #475467;
  margin: 0 auto 40px; max-width: var(--prose-width);
}
.search-container { max-width: 800px; width: 100%; margin: 0 auto 30px; }
.search-input-wrapper {
  display: flex; align-items: center; background-color: #fff;
  border-radius: 12px; border: 1px solid #D0D5DD; padding: 8px 16px;
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.05);
}
.search-icon { color: #667085; margin-right: 12px; display: flex; }
.search-icon svg { width: 20px; height: 20px; }
#search-input, .wb-search-input {
  flex: 1; border: 0; padding: 12px 0; font-size: var(--text-base); color: #101828;
  outline: none; background: transparent; font-family: inherit;
}
#search-input::placeholder, .wb-search-input::placeholder { color: #667085; }
.search-button {
  background-color: #2337E0; color: #fff; border: 0; border-radius: 8px;
  padding: 10px 20px; font-weight: 600; cursor: pointer; transition: background-color .2s;
  font-family: inherit; font-size: var(--text-base);
}
.search-button:hover { background-color: #1A2BC8; }

/* Stats */
.stats-section { padding: 60px 0; background-color: #fff; text-align: center; }
.stats-header { margin-bottom: 40px; }
.stats-header h3 { display: inline-block; background-color: #F0F2FF; color: #2337E0;
  padding: 8px 16px; border-radius: 100px; font-size: var(--text-base); font-weight: var(--font-semibold); margin: 0; }
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; margin-bottom: 60px; }
.stat-item { padding: 20px; }
.stat-item h2 {
  font-size: var(--text-3xl); font-weight: var(--font-bold); color: #101828;
  margin: 0 0 8px; line-height: var(--leading-tight); letter-spacing: var(--tracking-tight);
  font-variant-numeric: tabular-nums;
}
.stat-item p { color: #667085; font-size: var(--text-base); margin: 0; line-height: var(--leading-snug); }

/* Profile cards (home + listings) */
.profiles-section { padding: 60px 0; background-color: #F8F9FA; }
.profiles-header { text-align: center; margin-bottom: 40px; }
.profiles-header h2 {
  font-size: var(--text-3xl); font-weight: var(--font-bold); color: #101828;
  margin: 0 0 12px; letter-spacing: var(--tracking-tight);
}
.profiles-header p { font-size: var(--text-lg); color: #475467; margin: 0 auto; max-width: var(--prose-width); line-height: var(--leading-relaxed); }
.profiles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; margin-bottom: 40px;
}
.profile-card {
  background: #fff; border: 1px solid #EAECF0; border-radius: 8px;
  padding: 16px; transition: all .2s ease; text-decoration: none; color: inherit; display: block;
}
.profile-card:hover { box-shadow: 0 4px 12px rgba(16,24,40,.15); transform: translateY(-2px); text-decoration: none; color: inherit; }
.profile-header { display: flex; align-items: center; gap: 12px; }
.profile-avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; background: #F2F4F7;
  display: flex; align-items: center; justify-content: center;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-avatar-text { font-weight: var(--font-bold); font-size: var(--text-md); color: #475467; }
.profile-info { flex: 1; min-width: 0; }
.profile-name { font-weight: var(--font-semibold); font-size: var(--text-base); color: #101828; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: var(--leading-snug); }
.profile-location { font-weight: var(--font-medium); font-size: var(--text-sm); color: #667085;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.profile-headline { font-size: var(--text-sm); color: #667085; margin-top: 2px; line-height: var(--leading-snug); }
.wb-thank-you-summary-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px;
}
@media (max-width: 640px) {
  .wb-thank-you-summary-grid { grid-template-columns: 1fr; }
}

/* Alphabet nav */
.alphabet-nav { background: #fff; border-top: 1px solid #EAECF0; padding: 32px 0; }
.alphabet-nav h4 { text-align: center; margin: 0 0 8px; font-size: var(--text-md); font-weight: var(--font-bold); color: #101828; }
.alphabet-nav .text-muted { text-align: center; color: #667085; font-size: var(--text-sm); margin: 0 0 20px; line-height: var(--leading-relaxed); }
.alphabet-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.alphabet-letter {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: #F9FAFB; border: 1px solid #EAECF0; border-radius: 6px;
  color: #475467; font-weight: var(--font-semibold); font-size: var(--text-sm); transition: all .2s ease; text-decoration: none;
}
.alphabet-letter:hover { background: #F2F4F7; color: #2337E0; border-color: #2337E0; text-decoration: none; }

/* Features (home) */
.features-section { padding: 60px 0; background: #fff; }
.features-section .text-center { text-align: center; }
.features-section h2 {
  font-size: var(--text-3xl); font-weight: var(--font-bold); color: #101828;
  margin: 0 0 12px; letter-spacing: var(--tracking-tight);
}
.features-section .lead { font-size: var(--text-lg); line-height: var(--leading-relaxed); color: #475467; max-width: var(--prose-width); margin: 0 auto 40px; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px; margin-bottom: 40px;
}
.feature-card { text-align: center; padding: 30px 20px; border-radius: 12px;
  background: #F8F9FA; border: 1px solid #E4E7EC; }
.feature-icon { width: 60px; height: 60px; background: #2337E0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: white; font-size: 24px; }
.wb-icon { width: 28px; height: 28px; }
.feature-card h3 { font-size: var(--text-lg); font-weight: var(--font-semibold); color: #101828; margin: 0 0 12px; line-height: var(--leading-snug); }
.feature-card p { color: #667085; font-size: var(--text-base); line-height: var(--leading-relaxed); margin: 0; max-width: var(--prose-width); margin-inline: auto; }

/* Get-started CTA */
.get-started-section { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.get-started-section h3 { font-size: var(--text-xl); font-weight: var(--font-bold); color: #101828; margin: 0; line-height: var(--leading-snug); }
.btn-see-plans { background-color: #2337E0; border: 1px solid #2337E0; color: #fff;
  padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all .2s; }
.btn-see-plans:hover { background-color: #1A2BC8; color: #fff; }

/* ============================================================ */
/* PROFILE PAGE - whitebridge.ai/contacts style */
/* ============================================================ */
.wb-profile-page { padding: 24px 0 64px; }
.wb-pp-hero {
  background: #fff; border: 1px solid #EAECF0; border-radius: 16px;
  padding: 32px; display: flex; gap: 28px; margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(16,24,40,.05);
}
.wb-pp-hero-avatar { flex-shrink: 0; width: 140px; height: 140px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #F0F2FF, #E0E5FF); display: flex; align-items: center; justify-content: center; border: 1px solid #EAECF0; }
.wb-pp-hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wb-pp-avatar-text { font-weight: 800; font-size: 56px; color: #2337E0; }
.wb-pp-hero-body { flex: 1; min-width: 0; }
.wb-pp-name {
  font-size: var(--text-2xl); font-weight: var(--font-extrabold); color: #101828;
  margin: 0 0 6px; letter-spacing: var(--tracking-tight); line-height: var(--leading-tight);
}
.wb-pp-headline { font-size: var(--text-md); color: #475467; margin: 0 0 14px; font-weight: var(--font-medium); line-height: var(--leading-snug); }
.wb-pp-meta { display: flex; flex-wrap: wrap; gap: 18px; color: #667085; font-size: var(--text-sm); margin-bottom: 20px; line-height: var(--leading-snug); }
.wb-pp-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.wb-pp-meta-item i { color: #98A2B3; }
.wb-pp-meta-item a { color: #475467; font-weight: 600; }
.wb-pp-meta-item a:hover { color: #2337E0; }
.wb-pp-hero-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.wb-pp-hero-actions .button-primary { font-size: var(--text-base); height: 48px; padding: 12px 22px; }
.wb-pp-social-btn { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center;
  background: #fff; border: 1px solid #D0D5DD; border-radius: 8px; color: #475467; font-size: 20px; }
.wb-pp-social-btn:hover { border-color: #2337E0; color: #2337E0; }

.wb-pp-section { background: #fff; border: 1px solid #EAECF0; border-radius: 16px; padding: 28px; margin-bottom: 16px; }
.wb-pp-section h2 { font-size: var(--text-xl); font-weight: var(--font-bold); color: #101828; margin: 0 0 20px; letter-spacing: var(--tracking-snug); }

.wb-pp-jobs { display: flex; flex-direction: column; gap: 14px; }
.wb-pp-job { display: flex; gap: 16px; padding: 16px; border: 1px solid #EAECF0; border-radius: 10px; background: #FCFCFD; }
.wb-pp-job:hover { background: #F9FAFB; }
.wb-pp-job-logo { flex-shrink: 0; width: 56px; height: 56px; border-radius: 8px; overflow: hidden;
  background: #F2F4F7; display: flex; align-items: center; justify-content: center; border: 1px solid #EAECF0; }
.wb-pp-job-logo img { width: 100%; height: 100%; object-fit: cover; }
.wb-pp-job-logo .wb-pp-avatar-text { font-size: 22px; }
.wb-pp-job-body { flex: 1; min-width: 0; }
.wb-pp-job-title { font-weight: var(--font-bold); font-size: var(--text-base); color: #101828; line-height: var(--leading-snug); }
.wb-pp-job-company { color: #475467; font-size: var(--text-sm); margin-top: 2px; }
.wb-pp-job-company a { color: #2337E0; font-weight: var(--font-semibold); }
.wb-pp-job-dates { color: #667085; font-size: var(--text-sm); margin-top: 4px; }

.wb-pp-edu { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.wb-pp-edu li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 16px; border: 1px solid #EAECF0; border-radius: 10px; background: #FCFCFD; }
.wb-pp-edu li i { color: #2337E0; font-size: 22px; padding-top: 2px; }
.wb-pp-edu-degree { font-weight: var(--font-bold); color: #101828; font-size: var(--text-base); line-height: var(--leading-snug); }
.wb-pp-edu-inst { color: #475467; font-size: var(--text-sm); margin-top: 2px; }

.wb-pp-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.wb-pp-skill { background: #F0F2FF; color: #2337E0; padding: 6px 14px; border-radius: 100px; font-size: var(--text-sm); font-weight: var(--font-semibold); }

.wb-pp-contacts, .wb-pp-contacts-locked { display: flex; flex-direction: column; gap: 0; }
.wb-pp-contact-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid #F2F4F7; font-size: var(--text-base); line-height: var(--leading-snug); }
.wb-pp-contact-row:last-child { border-bottom: 0; }
.wb-pp-contact-row i { color: #98A2B3; font-size: 18px; }
.wb-pp-contact-row strong { color: #475467; font-weight: 600; min-width: 130px; }
.wb-pp-contact-row a { color: #2337E0; font-weight: 600; }
.wb-pp-blur { color: #98A2B3; letter-spacing: 1px; filter: blur(4px); user-select: none; font-family: var(--font-mono); }
.wb-pp-unlock { margin-top: 20px; padding: 24px; background: linear-gradient(135deg, #F0F2FF 0%, #E0E5FF 100%); border-radius: 12px; text-align: center; }
.wb-pp-unlock .button-primary { font-size: var(--text-base); height: 46px; padding: 12px 24px; }

.wb-pp-faq { display: flex; flex-direction: column; gap: 8px; }
.wb-pp-faq-item { background: #FCFCFD; border: 1px solid #EAECF0; border-radius: 10px; padding: 0; }
.wb-pp-faq-item summary { padding: 16px 20px; font-weight: var(--font-semibold); color: #101828; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; font-size: var(--text-base); line-height: var(--leading-snug); }
.wb-pp-faq-item summary::-webkit-details-marker { display: none; }
.wb-pp-faq-item summary::after { content: "+"; font-size: var(--text-xl); color: #98A2B3; font-weight: var(--font-normal); }
.wb-pp-faq-item[open] summary::after { content: "−"; }
.wb-pp-faq-item p { padding: 0 20px 16px; margin: 0; color: #475467; font-size: var(--text-sm); line-height: var(--leading-relaxed); max-width: var(--prose-width); }
.wb-pp-faq-item a { color: #2337E0; font-weight: 600; }

@media (max-width: 768px) {
  .wb-pp-hero { flex-direction: column; padding: 24px; gap: 20px; align-items: center; text-align: center; }
  .wb-pp-hero-avatar { width: 120px; height: 120px; }
  .wb-pp-name { font-size: var(--text-xl); }
  .wb-pp-meta { justify-content: center; }
  .wb-pp-hero-actions { justify-content: center; }
  .wb-pp-hero-actions .button-primary { width: 100%; }
  .wb-pp-section { padding: 20px; }
  .wb-pp-contact-row strong { min-width: 100px; }
}

/* ============================================================ */
/* COMPANY PAGE - prospeo.io style */
/* ============================================================ */
.wb-cp-page { padding: 24px 0 64px; }
.wb-cp-hero {
  background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 100%);
  border: 1px solid #EAECF0; border-radius: 16px; padding: 36px;
  display: flex; gap: 24px; align-items: center; margin-bottom: 24px;
}
.wb-cp-logo { flex-shrink: 0; width: 96px; height: 96px; border-radius: 16px;
  background: #fff; display: flex; align-items: center; justify-content: center; padding: 12px; border: 1px solid #EAECF0;
  box-shadow: 0 1px 3px rgba(16,24,40,.05); }
.wb-cp-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.wb-cp-logo-text { font-weight: 800; font-size: 36px; color: #2337E0; }
.wb-cp-hero-body { flex: 1; min-width: 0; }
.wb-cp-name { font-size: var(--text-2xl); font-weight: var(--font-extrabold); color: #101828; margin: 0 0 4px; letter-spacing: var(--tracking-tight); line-height: var(--leading-tight); }
.wb-cp-domain { color: #475467; font-size: var(--text-base); margin-bottom: 12px; }
.wb-cp-domain a { color: #2337E0; font-weight: var(--font-semibold); }
.wb-cp-tagline { color: #475467; font-size: var(--text-base); margin: 0; max-width: var(--prose-width); line-height: var(--leading-relaxed); }

.wb-cp-stats {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 16px;
}
.wb-cp-stat { background: #fff; border: 1px solid #EAECF0; border-radius: 12px; padding: 16px 18px; }
.wb-cp-stat-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--tracking-wider); color: #667085; font-weight: var(--font-bold); }
.wb-cp-stat-value { font-size: var(--text-md); font-weight: var(--font-bold); color: #101828; margin-top: 4px; word-break: break-word; font-variant-numeric: tabular-nums; line-height: var(--leading-snug); }
.wb-cp-stat-value a { color: #2337E0; font-weight: 700; }

.wb-cp-section { background: #fff; border: 1px solid #EAECF0; border-radius: 16px; padding: 28px; margin-bottom: 16px; }
.wb-cp-section h2 { font-size: var(--text-lg); font-weight: var(--font-bold); color: #101828; margin: 0 0 16px; letter-spacing: var(--tracking-snug); }
.wb-cp-section h2 small { color: #98A2B3; font-weight: var(--font-medium); font-size: var(--text-sm); margin-left: 8px; }

.wb-cp-key-contacts { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.wb-cp-key-contact { display: flex; gap: 12px; align-items: center; padding: 12px; border: 1px solid #EAECF0; border-radius: 10px;
  text-decoration: none; color: inherit; background: #FCFCFD; }
.wb-cp-key-contact:hover { border-color: #2337E0; }
.wb-cp-key-contact .profile-avatar { width: 48px; height: 48px; }
.wb-cp-key-contact-flag { font-size: 18px; }

.wb-cp-breakdown { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 768px) { .wb-cp-breakdown { grid-template-columns: 1fr; } }
.wb-cp-bd-block { background: #FCFCFD; border: 1px solid #EAECF0; border-radius: 12px; padding: 16px; }
.wb-cp-bd-title { font-weight: var(--font-bold); color: #101828; margin-bottom: 12px; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: var(--tracking-wide); }
.wb-cp-bd-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #F2F4F7; font-size: var(--text-sm); color: #475467; line-height: var(--leading-snug); }
.wb-cp-bd-row:last-child { border-bottom: 0; }
.wb-cp-bd-row strong { color: #101828; }

.wb-cp-emp-toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; align-items: center; justify-content: space-between; }
.wb-cp-emp-toolbar form { display: flex; gap: 8px; flex-wrap: wrap; }
.wb-cp-emp-toolbar select, .wb-cp-emp-toolbar input { padding: 8px 12px; border: 1px solid #D0D5DD; border-radius: 8px; font-size: var(--text-sm); background: #fff; font-family: inherit; }

.wb-cp-emp-table { width: 100%; border-collapse: collapse; }
.wb-cp-emp-table th { background: #F9FAFB; color: #475467; font-weight: var(--font-semibold); padding: 10px 14px; text-align: left;
  font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--tracking-wide); border-bottom: 1px solid #EAECF0; }
.wb-cp-emp-table td { padding: 12px 14px; border-bottom: 1px solid #F2F4F7; font-size: var(--text-sm); color: #475467; line-height: var(--leading-snug); }
.wb-cp-emp-table tr:hover { background: #FCFCFD; }
.wb-cp-emp-name { display: flex; gap: 10px; align-items: center; }
.wb-cp-emp-name .profile-avatar { width: 36px; height: 36px; }
.wb-cp-emp-name a { color: #101828; font-weight: 600; }

.wb-cp-email-format { background: #F0F2FF; border-radius: 10px; padding: 16px 20px; }
.wb-cp-email-format code { background: #fff; padding: 4px 10px; border-radius: 6px; font-family: var(--font-mono); color: #2337E0; font-weight: var(--font-semibold); font-size: var(--text-sm); }

@media (max-width: 768px) {
  .wb-cp-hero { flex-direction: column; text-align: center; padding: 24px; }
  .wb-cp-stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .wb-cp-emp-table thead { display: none; }
  .wb-cp-emp-table tr { display: block; padding: 8px 0; border-bottom: 1px solid #F2F4F7; }
  .wb-cp-emp-table td { display: block; padding: 4px 0; border: 0; }
}

/* ============================================================ */
/* PROFILE / COMPANY DETAIL (legacy section kept for misc) */
/* ============================================================ */
#profile-directory { padding: 32px 0 64px; }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 6px; font-size: var(--text-sm); color: #667085; line-height: var(--leading-snug); }
.breadcrumb li:not(:first-child)::before { content: "/"; margin-right: 6px; color: #D0D5DD; }
.breadcrumb a { color: #475467; }
.breadcrumb a:hover { color: #2337E0; }

.wb-profile-hero {
  background: #fff; border: 1px solid #EAECF0; border-radius: 12px;
  padding: 32px; display: flex; gap: 24px; margin-bottom: 24px;
}
.wb-profile-hero .profile-avatar { width: 96px; height: 96px; font-size: 36px; }
.wb-profile-hero h1 { font-size: var(--text-xl); font-weight: var(--font-bold); color: #101828; margin: 0 0 4px; letter-spacing: var(--tracking-snug); line-height: var(--leading-tight); }
.wb-profile-headline { color: #475467; font-size: var(--text-base); margin: 0 0 12px; line-height: var(--leading-snug); }
.wb-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wb-tag { background: #F0F2FF; color: #2337E0; border-radius: 100px;
  padding: 4px 12px; font-size: var(--text-sm); font-weight: var(--font-semibold); text-decoration: none; }
.wb-tag:hover { background: #E0E5FF; color: #2337E0; }
.wb-tag-grey { background: #F2F4F7; color: #475467; }

.wb-section { background: #fff; border: 1px solid #EAECF0; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.wb-section h2 { font-size: var(--text-md); font-weight: var(--font-bold); color: #101828; margin: 0 0 16px; line-height: var(--leading-snug); }
.wb-section h3 { font-size: var(--text-base); font-weight: var(--font-semibold); color: #101828; margin: 16px 0 8px; line-height: var(--leading-snug); }

.wb-locked {
  padding: 24px; border: 1px dashed #D0D5DD; border-radius: 8px;
  text-align: center; color: #667085; background: #F9FAFB;
}
.wb-locked a { color: #2337E0; font-weight: 600; }
.wb-contact-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #F2F4F7; font-size: var(--text-sm); line-height: var(--leading-snug); }
.wb-contact-row:last-child { border-bottom: 0; }
.wb-contact-row strong { color: #475467; font-weight: var(--font-semibold); }

.wb-experience-item { padding: 12px 0; border-bottom: 1px solid #F2F4F7; }
.wb-experience-item:last-child { border-bottom: 0; }
.wb-experience-title { font-weight: var(--font-semibold); color: #101828; font-size: var(--text-base); line-height: var(--leading-snug); }
.wb-experience-meta { font-size: var(--text-sm); color: #667085; margin-top: 2px; }

/* Two column with sidebar */
.wb-two-col { display: grid; grid-template-columns: 320px 1fr; gap: 24px; }
@media (max-width: 880px) { .wb-two-col { grid-template-columns: 1fr; } }

/* ============================================================ */
/* SEARCH / LISTING */
/* ============================================================ */
.wb-page-head { padding: 32px 0 16px; }
.wb-page-head h1 { font-size: var(--text-2xl); font-weight: var(--font-bold); color: #101828; margin: 0 0 8px; letter-spacing: var(--tracking-snug); line-height: var(--leading-tight); }
.wb-page-head p { color: #667085; margin: 0; font-size: var(--text-base); line-height: var(--leading-relaxed); max-width: var(--prose-width); }

.wb-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 24px; }
.wb-filters input, .wb-filters select {
  padding: 10px 12px; border: 1px solid #D0D5DD; border-radius: 8px;
  font-family: inherit; font-size: var(--text-sm); background: #fff; color: #101828;
}
.wb-filters input:focus, .wb-filters select:focus { outline: none; border-color: #2337E0; box-shadow: 0 0 0 3px rgba(35,55,224,.12); }

.wb-pagination { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; align-items: center; }
.wb-pagination a { display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px; border-radius: 6px;
  background: #fff; border: 1px solid #EAECF0; color: #475467; font-weight: 600; text-decoration: none; }
.wb-pagination a:hover { border-color: #2337E0; color: #2337E0; }
.wb-pagination a.active { background: #2337E0; border-color: #2337E0; color: #fff; }
.wb-page-ellipsis { color: #98A2B3; padding: 0 4px; }
.wb-page-info { color: #667085; font-size: var(--text-sm); margin-left: 12px; font-variant-numeric: tabular-nums; }

/* ============================================================ */
/* AUTH cards */
/* ============================================================ */
.wb-auth-card {
  max-width: 440px; margin: 48px auto; background: #fff;
  border: 1px solid #EAECF0; border-radius: 12px; padding: 32px;
  box-shadow: 0 4px 12px rgba(16,24,40,.05);
}
.wb-auth-card h1 { font-size: var(--text-xl); font-weight: var(--font-bold); margin: 0 0 8px; letter-spacing: var(--tracking-tight); line-height: var(--leading-tight); }
.wb-auth-card .wb-muted { color: #667085; margin: 0 0 24px; font-size: var(--text-sm); line-height: var(--leading-relaxed); }
.wb-form { display: flex; flex-direction: column; gap: 14px; }
.wb-form label { display: flex; flex-direction: column; gap: 6px; font-size: var(--text-sm); color: #344054; font-weight: var(--font-medium); line-height: var(--leading-snug); }
.wb-form input, .wb-form select, .wb-form textarea {
  padding: 10px 14px; border: 1px solid #D0D5DD; border-radius: 8px;
  font-family: inherit; font-size: var(--text-base); color: #101828; background: #fff;
}
.wb-form input:focus, .wb-form select:focus { outline: none; border-color: #2337E0; box-shadow: 0 0 0 3px rgba(35,55,224,.12); }
.wb-form .button-primary { width: 100%; }

.wb-divider { display: flex; align-items: center; gap: 12px; color: #98A2B3; font-size: var(--text-sm); margin: 16px 0; }
.wb-divider::before, .wb-divider::after { content: ''; flex: 1; height: 1px; background: #EAECF0; }

/* ============================================================ */
/* DASHBOARD / TABLES */
/* ============================================================ */
.wb-table { width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid #EAECF0; border-radius: 12px; overflow: hidden; font-size: var(--text-sm); }
.wb-table th, .wb-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #F2F4F7; line-height: var(--leading-snug); }
.wb-table th { background: #F9FAFB; color: #475467; font-weight: var(--font-semibold);
  font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--tracking-wide); }
.wb-table tr:last-child td { border-bottom: 0; }
.wb-table code { background: #F2F4F7; padding: 2px 6px; border-radius: 4px; font-size: var(--text-xs); font-family: var(--font-mono); }

.wb-stat-card { background: #fff; border: 1px solid #EAECF0; border-radius: 12px; padding: 20px; }
.wb-stat-label { font-size: var(--text-xs); text-transform: uppercase; color: #667085; font-weight: var(--font-semibold); letter-spacing: var(--tracking-wide); }
.wb-stat-value { font-size: var(--text-xl); font-weight: var(--font-bold); color: #101828; margin-top: 4px; font-variant-numeric: tabular-nums; line-height: var(--leading-tight); }
.wb-stat-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.wb-meter-bar { width: 140px; height: 8px; background: #EAECF0; border-radius: 999px; overflow: hidden; display: inline-block; vertical-align: middle; }
.wb-meter-bar-fill { height: 100%; background: #2337E0; }

.wb-side-nav { background: #fff; border: 1px solid #EAECF0; border-radius: 12px;
  padding: 8px; display: flex; flex-direction: column; gap: 2px; }
.wb-side-nav a { display: block; padding: 10px 14px; color: #475467; font-weight: var(--font-semibold);
  border-radius: 8px; text-decoration: none; font-size: var(--text-sm); line-height: var(--leading-snug); }
.wb-side-nav a:hover, .wb-side-nav a.active { background: #F0F2FF; color: #2337E0; }

.wb-h2 { font-size: var(--text-lg); font-weight: var(--font-bold); color: #101828; margin: 24px 0 12px; letter-spacing: var(--tracking-snug); line-height: var(--leading-snug); }

/* ============================================================ */
/* FOOTER (matches whitebridge.ai dark) */
/* ============================================================ */
.f-footer-small { background-color: #0c0e23; color: white; padding: 40px 0; font-size: var(--text-sm); line-height: var(--leading-relaxed); }
.f-container-large { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.f-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.f-footer-logo img { max-width: 100%; height: auto; }
.f-footer-social-row-large { display: flex; }
.f-footer-social-group { display: flex; gap: 15px; flex-wrap: wrap; }
.f-footer-social { background-color: rgba(255,255,255,.1); width: 40px; height: 40px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.f-footer-social:hover { background-color: rgba(255,255,255,.2); }
.f-footer-social-icon { width: 22px; height: 22px; display: block; background-color: currentColor;
  -webkit-mask-position: center; mask-position: center; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain; }
.f-footer-social-icon--facebook { -webkit-mask-image: url('/_assets/plugins/@tabler/icons/icons/filled/brand-facebook.svg'); mask-image: url('/_assets/plugins/@tabler/icons/icons/filled/brand-facebook.svg'); }
.f-footer-social-icon--x { -webkit-mask-image: url('/_assets/plugins/@tabler/icons/icons/filled/brand-x.svg'); mask-image: url('/_assets/plugins/@tabler/icons/icons/filled/brand-x.svg'); }
.f-footer-social-icon--linkedin { -webkit-mask-image: url('/_assets/plugins/@tabler/icons/icons/filled/brand-linkedin.svg'); mask-image: url('/_assets/plugins/@tabler/icons/icons/filled/brand-linkedin.svg'); }
.f-footer-horizontal-divider { height: 1px; background-color: rgba(255,255,255,.1); margin: 20px 0; }
.f-footer-detail { margin: 0; font-size: var(--text-sm); color: rgba(255,255,255,.7); line-height: var(--leading-relaxed); max-width: var(--prose-width); }
.f-footer-menu { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.f-footer-link { color: white; text-decoration: none; font-size: var(--text-sm); white-space: nowrap; line-height: var(--leading-relaxed); }
.f-footer-link:hover { color: #fff; text-decoration: underline; }

@media (max-width: 768px) {
  .f-footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .f-footer-menu { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 14px; }
}

/* ============================================================ */
/* Misc */
/* ============================================================ */
.wb-muted { color: #667085; }
.wb-error-code {
  font-size: clamp(3rem, 12vw, 4rem);
  font-weight: var(--font-extrabold);
  color: #2337E0;
  margin: 0;
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tight);
  font-variant-numeric: tabular-nums;
}
.wb-error-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin: 8px 0 16px;
  line-height: var(--leading-snug);
}
.wb-text-center { text-align: center; }
.wb-mt-3 { margin-top: 24px; }
.wb-mb-3 { margin-bottom: 24px; }

/* Responsive hero */
@media (max-width: 768px) {
  .hero-content h1 { font-size: clamp(1.75rem, 5vw + 0.5rem, 2.25rem); }
  .subtitle { font-size: var(--text-md); }
  .hero-content h1, .subtitle { overflow-wrap: break-word; }
  .search-input-wrapper {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }
  .search-icon { margin-right: 0; align-self: center; }
  #search-input, .wb-search-input { width: 100%; min-width: 0; margin-bottom: 0; }
  .search-button { width: 100%; grid-column: 1 / -1; }
  .stats-grid { flex-direction: column; }
  .get-started-section { flex-direction: column; }
  .alphabet-letter { width: 35px; height: 35px; font-size: var(--text-xs); }
  .profiles-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}
