/* ════════════════════════════════════════════════════════════════════
   GLOBAL SKILL BRIDGE — Main Stylesheet
   Edit colors, fonts, and spacing here to rebrand the entire site.
   ════════════════════════════════════════════════════════════════════ */

:root {
  /* Brand Palette */
  --dark:        #07111f;
  --navy:        #0d2847;
  --navy-2:      #0f2e4a;
  --card-bg:     #0f1f38;
  --teal:        #0891b2;
  --teal-2:      #06b6d4;
  --mint:        #2dd4bf;
  --offwhite:    #e8f4f8;
  --light:       #cbd5e1;
  --muted:       #94a3b8;
  --border:      rgba(8, 145, 178, 0.18);
  --border-2:    rgba(255, 255, 255, 0.08);
  --gold:        #f59e0b;
  --green:       #10b981;
  --red:         #ef4444;

  /* Spacing & layout */
  --maxw: 1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.25);
  --shadow-hover: 0 12px 30px rgba(8,145,178,0.18);
  --transition: 0.22s ease;
}

/* ── Reset ───────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark);
  color: var(--white, #fff);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--mint); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-2); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

:root { --white: #ffffff; }

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3, h4, h5, .display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
h3 { font-size: 1.15rem; font-family: 'DM Sans', sans-serif; font-weight: 700; }
h4 { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 700; }
p  { color: var(--light); }

.highlight   { color: var(--mint); }
.highlight-2 { color: var(--gold); }

/* ── Container ───────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 5%; }
.wrap-wide { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

/* ── Section ─────────────────────────────────────────── */
.section { padding: 6rem 5%; }
.section.tight { padding: 4rem 5%; }
.section-label {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--teal-2); text-transform: uppercase; margin-bottom: 0.7rem;
}
.section-label.gold { color: var(--gold); }
.section-label.mint { color: var(--mint); }
.section-label.center { text-align: center; }

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-sub {
  color: var(--muted); font-size: 1.02rem;
  max-width: 620px; line-height: 1.7;
}
.center .section-sub { margin-left: auto; margin-right: auto; }
.center { text-align: center; }

/* ── Nav ─────────────────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7, 17, 31, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-wrap.scrolled { background: rgba(7, 17, 31, 0.97); }
nav {
  max-width: var(--maxw); margin: 0 auto; padding: 0.9rem 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; text-decoration: none; color: var(--white);
  flex-shrink: 0;
}
.nav-logo .logo-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--mint) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-weight: 800;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.12);
}
.nav-logo .logo-mark svg { width: 20px; height: 20px; }
.nav-logo .logo-text { display: flex; align-items: baseline; }
.nav-logo .logo-text .tld { color: var(--mint); }

.nav-links { display: flex; gap: 1.3rem; align-items: center; flex-wrap: nowrap; }
.nav-links a {
  color: var(--light); text-decoration: none; font-size: 0.88rem;
  font-weight: 500; padding: 0.4rem 0; transition: color var(--transition);
  position: relative; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--mint); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--mint); border-radius: 1px;
}
.nav-cta {
  background: var(--teal); color: var(--white);
  padding: 0.6rem 1.3rem; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 600; font-size: 0.88rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-2); transform: translateY(-1px); color: var(--white); }
.nav-cta.ghost {
  background: transparent; color: var(--light); border: 1px solid var(--border-2);
}
.nav-cta.ghost:hover { color: var(--mint); border-color: var(--mint); background: transparent; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border-2);
  border-radius: 6px; padding: 0.4rem 0.6rem; color: var(--light);
  font-size: 1.1rem;
}

/* Mobile nav */
.mobile-menu {
  display: none; position: fixed; top: 0; right: 0; bottom: 0;
  width: 86%; max-width: 360px; background: var(--navy);
  border-left: 1px solid var(--border);
  padding: 5rem 1.5rem 2rem; z-index: 99;
  transform: translateX(100%); transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block; padding: 0.85rem 0; color: var(--light);
  border-bottom: 1px solid var(--border-2); text-decoration: none; font-size: 1rem;
}
.mobile-menu a:hover { color: var(--mint); }
.mobile-menu .btn-primary, .mobile-menu .btn-outline {
  display: block; text-align: center; margin-top: 1rem;
}
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 98; opacity: 0; transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; }
body.no-scroll { overflow: hidden; }
body.menu-open .mobile-overlay { display: block; }
body.menu-open .mobile-menu { display: block; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.85rem 1.7rem; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  border: none; cursor: pointer; transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 14px rgba(8,145,178,0.25);
}
.btn-primary:hover { background: var(--teal-2); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(8,145,178,0.4); color: var(--white); }
.btn-gold {
  background: var(--gold); color: var(--dark);
}
.btn-gold:hover { background: #fbbf24; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(245,158,11,0.4); color: var(--dark); }
.btn-outline {
  background: transparent; color: var(--mint); border: 1.5px solid var(--mint);
}
.btn-outline:hover { background: rgba(45,212,191,0.1); transform: translateY(-2px); color: var(--mint); }
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--light); border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--mint); }
.btn-block { display: block; width: 100%; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }

.btn-group { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 5% 4rem;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #0c1e36 50%, #081526 100%);
}
.hero-bg-glow {
  position: absolute; right: -8%; top: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.18) 0%, transparent 70%);
  animation: pulse 5s ease-in-out infinite;
  pointer-events: none;
}
.hero-bg-glow-2 {
  position: absolute; left: -5%; bottom: 5%;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,0.09) 0%, transparent 70%);
  animation: pulse 7s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.85} 50%{transform:scale(1.1);opacity:1} }

.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 3.5rem; align-items: center;
  position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(8,145,178,0.15); border: 1px solid rgba(8,145,178,0.4);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.78rem; color: var(--teal-2); font-weight: 600;
  letter-spacing: 0.05em; margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 { margin-bottom: 1.4rem; }
.hero-sub {
  font-size: 1.08rem; color: var(--light); line-height: 1.75;
  margin-bottom: 2.4rem; max-width: 580px;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-trust {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border-2);
}
.hero-trust .stat .num {
  font-family: 'DM Serif Display', serif; font-size: 2rem;
  color: var(--mint); line-height: 1;
}
.hero-trust .stat .lbl {
  font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem;
}

/* Hero visual: pre-vetted sample card */
.hero-visual { position: relative; }
.preview-card {
  background: linear-gradient(160deg, var(--card-bg) 0%, #112a47 100%);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 1.4rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative; z-index: 1;
}
.preview-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.preview-header h4 { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.preview-header .live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: var(--green); font-weight: 700;
}
.preview-header .live::before {
  content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: blink 2s infinite;
}

.worker-card-mini {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1rem; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-2); border-radius: 10px;
  margin-bottom: 0.7rem; transition: all 0.2s;
}
.worker-card-mini:hover { border-color: var(--teal); transform: translateX(4px); }
.worker-card-mini:last-child { margin-bottom: 0; }
.worker-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-weight: 800; font-size: 0.95rem; flex-shrink: 0;
}
.worker-card-mini .info { flex: 1; min-width: 0; }
.worker-card-mini .info .name { font-size: 0.92rem; font-weight: 700; color: var(--offwhite); }
.worker-card-mini .info .role { font-size: 0.78rem; color: var(--muted); margin-top: 0.1rem; }
.worker-card-mini .vetted {
  font-size: 0.68rem; font-weight: 700; padding: 0.18rem 0.5rem;
  border-radius: 4px; background: rgba(16,185,129,0.15); color: var(--green);
  white-space: nowrap;
}

.preview-progress {
  margin-top: 1.2rem; padding: 0.9rem 1rem;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25);
  border-radius: 10px;
}
.preview-progress .lbl {
  display: flex; justify-content: space-between; font-size: 0.78rem; margin-bottom: 0.5rem;
}
.preview-progress .lbl .pct { color: var(--gold); font-weight: 700; }
.progress-bar {
  height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden;
}
.progress-bar .fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--mint));
  width: 60%; border-radius: 3px;
}

.float-tag {
  position: absolute; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 0.7rem 1rem; box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; font-weight: 600;
  z-index: 2;
}
.float-tag .icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.float-tag.tl { top: -12px; left: -28px; }
.float-tag.tl .icon { background: rgba(16,185,129,0.15); color: var(--green); }
.float-tag.br { bottom: -16px; right: -20px; }
.float-tag.br .icon { background: rgba(8,145,178,0.18); color: var(--teal-2); }
@media (max-width: 1020px) {
  .float-tag.tl, .float-tag.br { display: none; }
}

/* ── Marquee ─────────────────────────────────────────── */
.marquee {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.95rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 2.5rem;
  animation: scroll 40s linear infinite; white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-size: 0.85rem; color: var(--light); font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.marquee-track .sep { color: var(--teal); }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── Page Hero (for inner pages) ─────────────────────── */
.page-hero {
  padding: 9rem 5% 4rem;
  background: linear-gradient(180deg, var(--dark) 0%, #0a1c33 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.page-hero .sub {
  color: var(--muted); max-width: 680px; margin: 0 auto 2rem; font-size: 1.08rem; line-height: 1.7;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb .sep { color: var(--border-2); }

/* ── Cards / Grids ───────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  transition: all var(--transition);
}
.card:hover { border-color: rgba(8,145,178,0.45); transform: translateY(-3px); }

.icon-box {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ── Two-column with image ───────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }
.two-col .col-img { position: relative; }
.two-col img { border-radius: var(--radius); }

/* ── Industry / Trade cards ──────────────────────────── */
.industry-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem; transition: all var(--transition);
}
.industry-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.industry-card .icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 10px;
  background: rgba(8,145,178,0.14); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.industry-card.green .icon { background: rgba(45,212,191,0.12); }
.industry-card.gold .icon { background: rgba(245,158,11,0.12); }
.industry-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.industry-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.industry-card .meta {
  margin-top: 0.7rem; font-size: 0.75rem; color: var(--teal-2); font-weight: 600;
}

/* ── Country / Market cards ──────────────────────────── */
.country-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem;
}
.country-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-2);
  border-radius: 10px; padding: 1rem 1.2rem; transition: all 0.2s;
}
.country-card:hover { border-color: var(--teal); background: rgba(8,145,178,0.06); transform: translateX(3px); }
.country-flag {
  width: 44px; height: 30px; border-radius: 4px; flex-shrink: 0; overflow: hidden;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1;
}
.country-info { flex: 1; min-width: 0; }
.country-info .name { font-weight: 600; font-size: 0.95rem; color: var(--offwhite); }
.country-info .detail { font-size: 0.78rem; color: var(--muted); margin-top: 0.1rem; line-height: 1.4; }
.country-badge {
  font-size: 0.68rem; font-weight: 700; padding: 0.18rem 0.55rem;
  border-radius: 20px; background: rgba(8,145,178,0.18); color: var(--teal-2);
  white-space: nowrap; letter-spacing: 0.04em;
}
.country-badge.mint { background: rgba(45,212,191,0.14); color: var(--mint); }
.country-badge.gold { background: rgba(245,158,11,0.14); color: var(--gold); }
.country-badge.muted { background: rgba(255,255,255,0.05); color: var(--muted); }

/* ── Talent / Worker cards (catalogue) ───────────────── */
.talent-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.talent-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.talent-head {
  padding: 1.4rem 1.4rem 1rem; display: flex; gap: 1rem; align-items: center;
  border-bottom: 1px solid var(--border-2);
}
.talent-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-weight: 800; font-size: 1.3rem; flex-shrink: 0;
  position: relative;
}
.talent-avatar .vetted-mark {
  position: absolute; bottom: -2px; right: -2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; border: 2px solid var(--card-bg);
}
.talent-head .meta { flex: 1; min-width: 0; }
.talent-head .name { font-weight: 700; color: var(--offwhite); font-size: 1.02rem; }
.talent-head .role { font-size: 0.85rem; color: var(--muted); margin-top: 0.1rem; }
.talent-head .origin { font-size: 0.75rem; color: var(--teal-2); margin-top: 0.25rem; }
.talent-body { padding: 1rem 1.4rem; flex: 1; }
.talent-skills { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.8rem; }
.skill-tag {
  font-size: 0.7rem; padding: 0.18rem 0.55rem; border-radius: 4px;
  background: rgba(8,145,178,0.15); color: var(--teal-2); font-weight: 600;
}
.skill-tag.mint { background: rgba(45,212,191,0.12); color: var(--mint); }
.skill-tag.gold { background: rgba(245,158,11,0.12); color: var(--gold); }
.talent-info { font-size: 0.83rem; color: var(--light); line-height: 1.5; }
.talent-info strong { color: var(--offwhite); }
.talent-foot {
  padding: 0.9rem 1.4rem; border-top: 1px solid var(--border-2);
  display: flex; justify-content: space-between; align-items: center; gap: 0.5rem;
}
.talent-foot .vetted-status {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.74rem; color: var(--green); font-weight: 600;
}
.talent-foot .vetted-status::before {
  content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}

.talent-cta-overlay {
  background: linear-gradient(160deg, rgba(8,145,178,0.06), rgba(45,212,191,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  text-align: center;
}
.talent-cta-overlay h3 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 1.4rem; margin-bottom: 0.5rem; }
.talent-cta-overlay p { color: var(--muted); margin-bottom: 1.2rem; font-size: 0.92rem; }

/* ── Pricing ─────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 1100px; margin: 3rem auto 0;
}
.price-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.2rem 1.8rem;
  transition: all var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--mint);
  background: linear-gradient(160deg, #0c2540 0%, #0f3052 100%);
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(45,212,191,0.15);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-3px); }
.featured-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--mint); color: var(--dark);
  font-size: 0.7rem; font-weight: 800; padding: 0.25rem 0.9rem;
  border-radius: 20px; letter-spacing: 0.08em;
}
.price-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.price-name { font-size: 1.1rem; font-weight: 700; color: var(--offwhite); }
.price-audience { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
.price-amount {
  font-family: 'DM Serif Display', serif; font-size: 2.8rem;
  color: var(--mint); line-height: 1; margin: 1rem 0 0.25rem;
}
.price-card:not(.featured) .price-amount { color: var(--teal-2); }
.price-amount .unit { font-size: 0.95rem; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.price-desc { color: var(--muted); font-size: 0.86rem; line-height: 1.55; margin: 0.5rem 0 1.5rem; }
.price-features { margin-bottom: 1.8rem; flex: 1; }
.price-features li {
  padding: 0.42rem 0; font-size: 0.86rem; color: var(--light);
  display: flex; align-items: flex-start; gap: 0.6rem;
  border-bottom: 1px solid var(--border-2);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: "✓"; color: var(--mint); font-weight: 700; flex-shrink: 0; }
.price-features li.no { color: var(--muted); }
.price-features li.no::before { content: "—"; color: var(--muted); }

/* ── Testimonial ─────────────────────────────────────── */
.testimonial {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.7rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 0.6rem; left: 1.2rem;
  font-family: 'DM Serif Display', serif; font-size: 4rem; color: var(--teal);
  opacity: 0.2; line-height: 1;
}
.testimonial .quote { font-size: 0.95rem; color: var(--light); line-height: 1.65; font-style: italic; }
.testimonial .author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial .author .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-weight: 800; font-size: 0.9rem;
}
.testimonial .author .info .name { font-weight: 700; color: var(--offwhite); font-size: 0.92rem; }
.testimonial .author .info .role { font-size: 0.78rem; color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 2.5rem auto 0; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--border-2);
  border-radius: 10px; margin-bottom: 0.7rem; overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--teal); }
.faq-q {
  width: 100%; padding: 1.1rem 1.3rem; background: transparent;
  border: none; color: var(--offwhite); font-size: 0.97rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  text-align: left; cursor: pointer;
}
.faq-q .toggle {
  width: 26px; height: 26px; border-radius: 50%; background: rgba(8,145,178,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--teal-2);
  flex-shrink: 0; transition: transform 0.2s; font-size: 1.1rem;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  color: var(--light); font-size: 0.92rem; line-height: 1.65;
}
.faq-a-inner { padding: 0 1.3rem 1.2rem; }

/* ── Forms ───────────────────────────────────────────── */
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 0.85rem; color: var(--light); font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group label .req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 0.9rem; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2); border-radius: 8px;
  color: var(--offwhite); font-size: 0.95rem; font-family: inherit;
  transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal); background: rgba(8,145,178,0.06);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--navy); }
.form-help { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }
.form-status { padding: 0.8rem 1rem; border-radius: 8px; margin-bottom: 1rem; font-size: 0.9rem; display: none; }
.form-status.success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3); color: var(--green); display: block; }
.form-status.error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; display: block; }

/* ── Banner / CTA sections ──────────────────────────── */
.cta-band {
  text-align: center; padding: 6rem 5%;
  background: linear-gradient(180deg, var(--dark) 0%, #06101f 100%);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,145,178,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .sub { color: var(--muted); max-width: 580px; margin: 0 auto 2.2rem; font-size: 1rem; line-height: 1.7; }
.cta-band .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .email-line { margin-top: 1.5rem; font-size: 0.85rem; color: var(--muted); }
.cta-band .email-line a { color: var(--teal-2); font-weight: 600; }

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: var(--navy); border-top: 1px solid var(--border);
  padding: 3.5rem 5% 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem;
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
.footer-brand p {
  font-size: 0.87rem; color: var(--muted); margin-top: 0.8rem;
  line-height: 1.65; max-width: 300px;
}
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700; color: var(--offwhite);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.86rem; color: var(--muted);
  text-decoration: none; margin-bottom: 0.5rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid var(--border-2); padding-top: 1.2rem;
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: var(--muted);
}
.footer-flags { font-size: 1rem; letter-spacing: 0.2rem; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: all 0.2s; margin-bottom: 0;
}
.footer-socials a:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

/* ── Process / Steps ─────────────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: flex; gap: 1.2rem; padding: 1.3rem 0;
  border-bottom: 1px solid var(--border-2);
  align-items: flex-start;
}
.step-row:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1.1rem; font-weight: 400;
  background: rgba(8,145,178,0.18); color: var(--teal-2);
}
.step-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.step-text p  { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── Vetting band ────────────────────────────────────── */
.vetting-band {
  background: linear-gradient(135deg, #061a30 0%, #0c2540 50%, #061a30 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 5%;
  text-align: center;
}
.vetting-band h2 { margin-bottom: 0.8rem; }
.vetting-band > p {
  color: var(--muted); max-width: 640px; margin: 0 auto 2.5rem; font-size: 1rem; line-height: 1.7;
}
.vetting-pipeline {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  max-width: 980px; margin: 0 auto;
}
.vetting-step {
  flex: 1; min-width: 140px; padding: 1.3rem 0.8rem; position: relative;
}
.vetting-step::after {
  content: '→'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  color: var(--teal); font-size: 1.3rem; font-weight: 700;
}
.vetting-step:last-child::after { display: none; }
.vetting-step .vs-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(8,145,178,0.15); border: 1px solid rgba(8,145,178,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 0.7rem;
}
.vetting-step h4 { font-size: 0.92rem; font-weight: 700; color: var(--offwhite); margin-bottom: 0.3rem; }
.vetting-step p { font-size: 0.78rem; color: var(--muted); line-height: 1.45; }
.vetting-note {
  display: inline-flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: center;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
  color: var(--gold); padding: 0.65rem 1.3rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-top: 2rem;
}

/* ── Stat block ──────────────────────────────────────── */
.stat-block {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem; padding: 2.5rem; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.stat-block .stat .num {
  font-family: 'DM Serif Display', serif; font-size: 2.4rem;
  color: var(--mint); line-height: 1; margin-bottom: 0.3rem;
}
.stat-block .stat .lbl { font-size: 0.85rem; color: var(--muted); }

/* ── Sponsor pathway diagram ─────────────────────────── */
.pathway { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.path-step {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.2rem; position: relative;
}
.path-step .num {
  position: absolute; top: -10px; left: 1rem;
  background: var(--teal); color: var(--white);
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800;
}
.path-step h4 { font-size: 0.95rem; margin: 0.5rem 0 0.4rem; }
.path-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ── Animations ──────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Coming Soon (Partner Job Board) ───────── */
.coming-soon-wrap {
  max-width: 880px; margin: 0 auto;
}
.coming-soon-card {
  position: relative;
  background: linear-gradient(160deg, var(--card-bg) 0%, rgba(8,145,178,0.08) 50%, rgba(45,212,191,0.06) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 3rem 2.4rem 2.5rem;
  text-align: center;
  overflow: hidden;
}
.coming-soon-card::before {
  content: '';
  position: absolute; top: -50%; left: -10%; width: 120%; height: 200%;
  background: radial-gradient(circle at 30% 0%, rgba(8,145,178,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.coming-soon-card > * { position: relative; z-index: 1; }
.coming-soon-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.08));
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--gold);
  padding: 0.4rem 1.1rem; border-radius: 50px;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}
.coming-soon-badge .cs-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: blink 1.6s infinite;
}
.coming-soon-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 0.8rem; color: var(--white);
}
.coming-soon-sub {
  color: var(--light); font-size: 1rem; line-height: 1.7;
  max-width: 580px; margin: 0 auto 2rem;
}
.coming-soon-sub strong { color: var(--mint); }
.coming-soon-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; max-width: 580px; margin: 0 auto 2.2rem;
  padding: 1.2rem;
  background: rgba(7, 17, 31, 0.4);
  border: 1px solid var(--border-2);
  border-radius: 12px;
}
.coming-soon-stats .cs-stat { text-align: center; }
.coming-soon-stats .cs-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem; color: var(--mint); line-height: 1;
  margin-bottom: 0.3rem;
}
.coming-soon-stats .cs-lbl {
  font-size: 0.75rem; color: var(--muted); line-height: 1.3;
}
.coming-soon-form {
  max-width: 480px; margin: 0 auto 1.8rem;
  text-align: left;
}
.cs-form-row {
  display: flex; gap: 0.5rem; margin-top: 0.5rem;
}
.cs-form-row input {
  flex: 1; min-width: 0;
  padding: 0.8rem 1rem;
  background: rgba(7, 17, 31, 0.5);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  color: var(--offwhite); font-size: 0.95rem; font-family: inherit;
  transition: all 0.2s;
}
.cs-form-row input:focus {
  outline: none; border-color: var(--teal);
  background: rgba(8, 145, 178, 0.06);
}
.cs-form-row .btn { white-space: nowrap; }
.cs-fine { font-size: 0.75rem; color: var(--muted); margin-top: 0.5rem; }
.coming-soon-actions {
  display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap;
  padding-top: 1.2rem; border-top: 1px solid var(--border-2);
}
@media (max-width: 600px) {
  .coming-soon-card { padding: 2.2rem 1.4rem 2rem; }
  .coming-soon-stats { grid-template-columns: 1fr; gap: 0.7rem; }
  .cs-form-row { flex-direction: column; }
  .cs-form-row .btn { width: 100%; }
}


/* ── Utilities ───────────────────────────────────────── */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-mint  { color: var(--mint); }
.text-gold  { color: var(--gold); }
.fw-700 { font-weight: 700; }
.gap-sm { gap: 0.5rem; } .gap-md { gap: 1rem; } .gap-lg { gap: 2rem; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta.ghost { display: none; }
  .section { padding: 4rem 5%; }
  .hero { padding: 7rem 5% 3rem; min-height: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vetting-pipeline { flex-direction: column; align-items: center; }
  .vetting-step::after { content: '↓'; right: auto; position: static; display: block; text-align: center; margin: -0.5rem 0; }
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
