/* =========================================
   SKRAPPY v5 — MARKETING SITE
   Satoshi · Dark-first · Teal accent
   ========================================= */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,800,700,500,400&display=swap');

/* ─── TOKENS ───────────────────────────── */
:root {
  --teal: #2DD4A8;
  --teal-hover: #22b990;
  --teal-dim: rgba(45, 212, 168, 0.12);
  --teal-border: rgba(45, 212, 168, 0.3);
  --deep: #0F1117;
  --charcoal: #1A1D23;
  --surface: #22262F;
  --surface-2: #2A2F3A;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray-mid: #9ca3af;
  --gray-dark: #4B5563;
  --text: #E8EAED;
  --text-muted: #9ca3af;
  --red-dim: rgba(255, 50, 50, 0.05);
  --red-border: rgba(255, 50, 50, 0.15);

  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.4rem, 1rem + 4vw, 4.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
  --content-max: 1200px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--deep);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.1; }
p, li { text-wrap: pretty; max-width: 68ch; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { text-decoration: none; color: inherit; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── UTILITIES ────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.teal { color: var(--teal); }

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-headline {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.section-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--space-12);
  max-width: 60ch;
}

.center { text-align: center; }
.center.section-sub { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: 0.75rem 1.75rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--deep);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-hover); border-color: var(--teal-hover); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-white {
  background: var(--white);
  color: var(--deep);
  border-color: var(--white);
}
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

.btn-dark {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep);
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-1px); }

.btn-sm { padding: 0.5rem 1.25rem; font-size: var(--text-xs); }
.btn-lg { padding: 1rem 2.25rem; font-size: var(--text-base); }

/* ─── NAV ──────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
  height: 68px;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-wordmark {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-left: var(--space-4);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--white); }

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-hamburger {
  display: none;
  margin-left: auto;
  color: var(--white);
  padding: var(--space-2);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-4) var(--space-8) var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.nav-mobile.open { display: flex; }

.nav-mobile-link {
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ─── HERO ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

#sparkleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.hero-content { max-width: 580px; }

.hero-eyebrow { margin-bottom: var(--space-6); }

.pill {
  display: inline-block;
  background: rgba(45, 212, 168, 0.1);
  border: 1px solid rgba(45, 212, 168, 0.3);
  color: var(--teal);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}

.hero-headline {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  max-width: 48ch;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
  cursor: pointer;
}
.toggle-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.toggle-btn.active {
  background: rgba(45, 212, 168, 0.12);
  border-color: rgba(45, 212, 168, 0.4);
  color: var(--teal);
}

/* ─── DEMO WINDOW ──────────────────────── */
.hero-demo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-window {
  width: 360px;
  background: var(--charcoal);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(45, 212, 168, 0.08);
  overflow: hidden;
}

.demo-titlebar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.demo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.demo-dot.red { background: #FF5F56; }
.demo-dot.yellow { background: #FFBD2E; }
.demo-dot.green { background: #27C93F; }

.demo-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: var(--space-2);
}

.demo-body {
  padding: var(--space-4);
  min-height: 280px;
  position: relative;
}

.demo-state {
  display: none;
  animation: fadeSlideIn 0.4s ease;
}
.demo-state.active { display: block; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.demo-topbar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  font-size: 0.7rem;
}

.demo-job-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
  transition: border-color var(--transition);
}
.demo-job-card.hot { border-color: rgba(45, 212, 168, 0.3); }
.demo-job-card:hover { border-color: rgba(45, 212, 168, 0.4); }

.demo-job-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: var(--space-1);
  letter-spacing: 0.06em;
}

.demo-job-title { font-size: 0.8rem; font-weight: 700; color: var(--white); margin-bottom: var(--space-1); }
.demo-job-meta { display: flex; gap: var(--space-3); font-size: 0.65rem; color: var(--text-muted); margin-bottom: var(--space-2); }
.demo-job-btn { font-size: 0.65rem; font-weight: 700; color: var(--teal); }

.demo-profile-header {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.demo-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #1a8f74);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: var(--deep);
  flex-shrink: 0;
}
.demo-avatar.sm { width: 28px; height: 28px; font-size: 0.6rem; }
.demo-rating { margin-left: auto; font-size: 0.75rem; font-weight: 700; color: var(--teal); }

.demo-badges-row { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-3); }
.demo-badge { font-size: 0.6rem; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-full); }
.demo-badge.verified { background: rgba(45,212,168,0.12); color: var(--teal); border: 1px solid rgba(45,212,168,0.3); }
.demo-badge.teal-badge { background: rgba(45,212,168,0.08); color: var(--teal); border: 1px solid rgba(45,212,168,0.2); }

.demo-video-thumb {
  display: flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,0.04); border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3); margin-bottom: var(--space-3);
  font-size: 0.7rem; color: var(--text-muted);
}

.demo-stat-row { display: flex; gap: var(--space-4); }
.demo-stat { text-align: center; flex: 1; }
.demo-stat-num { display: block; font-size: 1rem; font-weight: 800; color: var(--teal); }
.demo-stat span:last-child { font-size: 0.6rem; color: var(--text-muted); }

.demo-post-header {
  display: flex; align-items: center; gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.demo-match-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-3);
}
.demo-count { font-size: 0.75rem; font-weight: 700; color: var(--teal); }
.demo-worker-row {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.demo-hire-btn {
  background: var(--teal); color: var(--deep);
  font-size: 0.6rem; font-weight: 700; padding: 3px 10px;
  border-radius: var(--radius-full); cursor: pointer; border: none;
  transition: background var(--transition);
}
.demo-hire-btn:hover { background: var(--teal-hover); }

.demo-confirm { text-align: center; padding: var(--space-4) 0; }
.demo-confirm-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: var(--deep);
  font-size: 1.4rem; font-weight: 900; display: inline-flex; align-items: center;
  justify-content: center; margin-bottom: var(--space-3);
}

.demo-timeline { margin-top: var(--space-4); }
.demo-tl-item {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: 0.7rem; color: var(--text-muted); margin-bottom: var(--space-2);
}
.demo-tl-item.done { color: var(--text); }
.demo-tl-item.active { color: var(--teal); font-weight: 700; }
.demo-tl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15); flex-shrink: 0;
}
.demo-tl-item.done .demo-tl-dot { background: var(--teal); }
.demo-tl-item.active .demo-tl-dot { background: var(--teal); }
.demo-tl-dot.pulse {
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45,212,168,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(45,212,168,0); }
}

.demo-payment { text-align: center; padding: var(--space-4) 0 var(--space-3); }
.demo-amount { font-size: 2rem; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: var(--space-1); }
.demo-pay-btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(45,212,168,0.1); border: 1px solid rgba(45,212,168,0.3);
  color: var(--teal); font-size: 0.65rem; font-weight: 700;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  margin-top: var(--space-3);
}
.demo-rating-prompt {
  text-align: center; margin-top: var(--space-3); font-size: 0.75rem;
}
.demo-stars { color: var(--teal); font-size: 1rem; margin-top: var(--space-2); letter-spacing: 2px; }

.demo-dots {
  display: flex; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.demo-dot-nav {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.15); cursor: pointer;
  transition: background var(--transition);
}
.demo-dot-nav.active { background: var(--teal); width: 18px; border-radius: var(--radius-full); }

/* ─── STATS BAR ────────────────────────── */
.stats-bar {
  background: var(--teal);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.stats-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: flex;
  align-items: stretch;
}

.stats-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-4);
}

.stats-divider {
  width: 1px;
  background: rgba(0,0,0,0.15);
  align-self: stretch;
  margin: 0;
  flex-shrink: 0;
}

.stats-num {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--deep);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stats-label {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  text-align: center;
  font-weight: 500;
  max-width: 18ch;
  line-height: 1.3;
}

/* ─── TRADE TABS ───────────────────────── */
.trade-tabs {
  background: var(--deep);
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
}

.trade-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  justify-content: center;
}

.trade-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-7);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.trade-tab:hover {
  color: var(--white);
  border-color: rgba(45,212,168,0.35);
  background: rgba(45,212,168,0.06);
  box-shadow: 0 4px 16px rgba(45,212,168,0.12);
}
.trade-tab.active {
  background: rgba(45,212,168,0.12);
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 4px 20px rgba(45,212,168,0.22), 0 0 0 1px rgba(45,212,168,0.15);
  text-shadow: 0 0 20px rgba(45,212,168,0.4);
}

.trade-content-wrapper { position: relative; min-height: 320px; }

.trade-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  animation: fadeSlideIn 0.35s ease;
}
.trade-content.active { display: grid; }

.trade-screen {
  width: 100%;
}

.screen-chrome {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.screen-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.screen-dot:nth-child(1) { background: #FF5F56; }
.screen-dot:nth-child(2) { background: #FFBD2E; }
.screen-dot:nth-child(3) { background: #27C93F; }

.screen-url {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: var(--space-2);
}

.trade-screen-body {
  padding: var(--space-4);
}

.trade-job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  transition: border-color var(--transition);
}
.trade-job-item:last-child { margin-bottom: 0; }
.trade-job-item:hover { border-color: rgba(45,212,168,0.3); }

.trade-job-name { font-size: var(--text-sm); font-weight: 700; color: var(--white); margin-bottom: 2px; }
.trade-job-details { font-size: var(--text-xs); color: var(--text-muted); }

.trade-job-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.07);
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trade-job-badge.urgent { background: rgba(45,212,168,0.1); color: var(--teal); }
.trade-job-badge.gig { background: rgba(99,102,241,0.1); color: #a78bfa; }

.trade-info { padding-left: var(--space-4); }
.trade-info h3 { font-size: var(--text-xl); font-weight: 800; color: var(--white); margin-bottom: var(--space-4); }
.trade-info p { color: var(--text-muted); margin-bottom: var(--space-6); line-height: 1.6; }

.trade-features { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.trade-features li {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--text);
}

/* ─── ROSTER / BENCH SECTION ───────────── */
.roster-section {
  background: var(--gray-light);
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
  color: var(--charcoal);
  overflow: hidden;
}

.roster-section .section-eyebrow { color: var(--teal-hover); }
.roster-section .section-headline { color: var(--charcoal); }
.roster-section .section-sub { color: #555; max-width: 480px; }

/* Two-column Stripe-style layout */
.bench-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--space-12), 6vw, var(--space-20));
  align-items: center;
}

/* LEFT: Copy + Steps */
.bench-copy { max-width: 520px; }

.bench-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-10);
  border-left: 2px solid rgba(0,0,0,0.08);
  padding-left: var(--space-6);
  position: relative;
}

.bench-step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bench-step-indicator {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  margin-top: 4px;
  margin-left: calc(-1 * var(--space-6) - 5px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.bench-step-indicator.active {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(45,212,168,0.2);
}

.bench-step-body { flex: 1; }

.bench-step-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: #999;
  transition: color 0.3s ease;
  margin-bottom: 2px;
}

.bench-step.active-step .bench-step-title { color: var(--charcoal); }

.bench-step-desc {
  font-size: var(--text-sm);
  color: #bbb;
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, color 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.bench-step.active-step .bench-step-desc {
  max-height: 80px;
  color: #666;
  opacity: 1;
}

/* RIGHT: Animated Browser Demo */
.bench-demo {
  position: relative;
}

.bench-browser {
  background: white;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 20px 60px rgba(0,0,0,0.14),
    0 8px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.bench-browser:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.bench-browser-bar {
  background: #f3f4f6;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bench-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bench-url-bar {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  color: #666;
}

.bench-url-text {
  font-size: 11px;
  color: #555;
  font-weight: 500;
  font-family: ui-monospace, monospace;
}

/* Screens */
.bench-screen {
  display: none;
  animation: benchFadeIn 0.4s ease;
}
.bench-screen.active { display: block; }

@keyframes benchFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Inner nav */
.bs-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: #fafafa;
}
.bs-nav-logo {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 800; color: #1A1D23;
}
.bs-nav-active {
  font-size: 12px; font-weight: 600;
  color: #2DD4A8;
  background: rgba(45,212,168,0.1);
  padding: 3px 10px; border-radius: 20px;
}

/* Content area */
.bs-content { padding: 14px 16px; position: relative; min-height: 320px; }
.bs-page-title { font-size: 16px; font-weight: 800; color: #1A1D23; margin-bottom: 2px; }
.bs-subtitle { font-size: 11px; color: #888; margin-bottom: 12px; }

.bs-filters {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.bs-filter-pill {
  font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  color: #555; background: white; cursor: pointer;
}
.active-pill {
  background: #2DD4A8; color: #0F1117;
  border-color: #2DD4A8;
}

/* Worker cards in demo */
.bs-worker-card {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  margin-bottom: 8px;
  background: white;
  transition: all 0.2s ease;
}
.bs-card-highlight {
  border-color: rgba(45,212,168,0.5);
  box-shadow: 0 0 0 3px rgba(45,212,168,0.12);
}

.bs-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}

.bs-card-info { flex: 1; }
.bs-card-name { font-size: 12px; font-weight: 700; color: #1A1D23; display: flex; align-items: center; gap: 5px; }
.bs-card-trade { font-size: 10px; color: #777; margin: 1px 0; }
.bs-card-meta { display: flex; gap: 6px; font-size: 10px; color: #888; flex-wrap: wrap; }

.bs-badge {
  background: rgba(45,212,168,0.15); color: #1a8f74;
  font-size: 9px; font-weight: 700; padding: 1px 6px; border-radius: 10px;
}

.bs-save-btn {
  background: #2DD4A8; color: #0F1117;
  font-size: 10px; font-weight: 700;
  padding: 5px 10px; border-radius: 20px; border: none;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.bs-save-btn:hover { background: #1dbf96; }

.bs-save-btn-ghost {
  font-size: 10px; font-weight: 600;
  padding: 5px 10px; border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.12);
  background: white; color: #555; cursor: pointer;
  white-space: nowrap;
}

.bs-saved-btn {
  background: rgba(45,212,168,0.12); color: #1a8f74;
  font-size: 10px; font-weight: 700;
  padding: 5px 10px; border-radius: 20px; border: 1px solid rgba(45,212,168,0.3);
  cursor: default; white-space: nowrap;
}

/* Save to Roster modal */
.bs-modal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 20px;
  width: 240px;
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.08);
}
.bs-modal-icon { font-size: 24px; margin-bottom: 8px; }
.bs-modal-title { font-size: 14px; font-weight: 800; color: #1A1D23; margin-bottom: 2px; }
.bs-modal-sub { font-size: 11px; color: #888; margin-bottom: 12px; }

.bs-folder-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.bs-folder-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: 8px;
  font-size: 11px; font-weight: 600; color: #555;
  cursor: pointer; transition: background 0.2s;
}
.bs-folder-row:hover { background: #f3f4f6; }
.bs-folder-active {
  background: rgba(45,212,168,0.1) !important;
  color: #1A1D23;
  border: 1px solid rgba(45,212,168,0.3);
}
.bs-folder-count { margin-left: auto; font-size: 10px; color: #aaa; font-weight: 500; }

.bs-modal-confirm {
  width: 100%; padding: 9px;
  background: #2DD4A8; color: #0F1117;
  font-size: 12px; font-weight: 700;
  border: none; border-radius: 8px; cursor: pointer;
  transition: background 0.2s;
}
.bs-modal-confirm:hover { background: #1dbf96; }

/* Roster screen */
.bs-roster-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}
.bs-new-folder-btn {
  font-size: 10px; font-weight: 600;
  padding: 5px 10px; border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.12);
  background: white; color: #555; cursor: pointer;
  white-space: nowrap; margin-top: 4px;
}
.bs-breadcrumb { font-size: 10px; color: #999; margin-bottom: 10px; }
.bs-breadcrumb strong { color: #2DD4A8; }

.bs-folder-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; margin-bottom: 14px;
}
.bs-folder-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px; padding: 10px 8px;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; background: white; cursor: pointer;
  transition: all 0.2s;
}
.bs-folder-card:hover { border-color: rgba(45,212,168,0.4); }
.bs-folder-card-active {
  border-color: #2DD4A8;
  box-shadow: 0 0 0 3px rgba(45,212,168,0.15);
  background: rgba(45,212,168,0.04);
}
.bs-folder-name { font-size: 10px; font-weight: 700; color: #1A1D23; text-align: center; }
.bs-folder-workers { font-size: 9px; color: #aaa; }

.bs-roster-list { display: flex; flex-direction: column; gap: 6px; }
.bs-roster-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px; background: white;
}
.bs-row-new {
  border-color: rgba(45,212,168,0.4);
  box-shadow: 0 0 0 3px rgba(45,212,168,0.1);
  animation: rowPulse 1s ease 0.5s both;
}
@keyframes rowPulse {
  0% { transform: translateX(-6px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.bs-new-tag {
  background: #2DD4A8; color: #0F1117;
  font-size: 8px; font-weight: 800;
  padding: 1px 5px; border-radius: 8px; margin-left: 4px;
}
.bs-schedule-btn {
  background: #2DD4A8; color: #0F1117;
  font-size: 9px; font-weight: 700;
  padding: 4px 9px; border-radius: 20px; border: none;
  cursor: pointer; white-space: nowrap; margin-left: auto;
}

/* Toast */
.bs-toast {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1A1D23;
  color: white;
  font-size: 11px; font-weight: 600;
  padding: 7px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
  opacity: 0;
  white-space: nowrap;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.bs-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Progress dots */
.bench-progress {
  display: flex; justify-content: center;
  gap: 8px; margin-top: 16px;
}
.bench-prog-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer; transition: all 0.3s;
}
.bench-prog-dot.active {
  background: #2DD4A8;
  width: 20px; border-radius: 4px;
}

/* ─── GIG SECTION ──────────────────────── */
.gig-section {
  background: var(--deep);
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
}

.gig-steps { display: flex; flex-direction: column; gap: clamp(var(--space-16), 6vw, var(--space-24)); margin-top: var(--space-12); }

.gig-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.gig-step.reverse { direction: rtl; }
.gig-step.reverse > * { direction: ltr; }

.step-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: rgba(45,212,168,0.1);
  border: 1px solid rgba(45,212,168,0.25);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.gig-step-headline {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.gig-step-body {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 42ch;
}

/* Phone mockup */
.gig-phone { display: flex; justify-content: center; }

.phone-mockup {
  width: 260px;
  background: var(--charcoal);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(45,212,168,0.07);
  padding: var(--space-3) 0;
}

.phone-status {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px var(--space-4) var(--space-2);
  text-align: center;
}

.phone-content { padding: 0 var(--space-3) var(--space-3); }

.phone-search {
  display: flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-full); padding: var(--space-2) var(--space-3);
  font-size: 0.7rem; color: var(--text-muted); margin-bottom: var(--space-2);
}

.phone-filter-row { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-bottom: var(--space-3); }
.phone-filter {
  font-size: 0.65rem; font-weight: 700;
  padding: 2px 10px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05); color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.07);
}
.phone-filter.active { background: rgba(45,212,168,0.1); color: var(--teal); border-color: rgba(45,212,168,0.3); }

.phone-job {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-2);
}
.phone-job.hot { border-color: rgba(45,212,168,0.3); }
.phone-job-urgent { font-size: 0.6rem; font-weight: 700; color: var(--teal); margin-bottom: 2px; }
.phone-job-title { font-size: 0.75rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.phone-job-pay { font-size: 0.65rem; color: var(--text-muted); margin-bottom: var(--space-1); }
.phone-job-cta { font-size: 0.65rem; font-weight: 700; color: var(--teal); }

.phone-applied-header {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.phone-applied-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: var(--deep);
  font-size: 1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.phone-profile-preview {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
}

.phone-status-bar { display: flex; align-items: center; gap: var(--space-2); justify-content: center; }
.phone-status-item {
  font-size: 0.6rem; font-weight: 700; color: var(--text-muted);
  padding: 3px 8px; background: rgba(255,255,255,0.04); border-radius: var(--radius-full);
}
.phone-status-item.active { color: var(--teal); background: rgba(45,212,168,0.1); }
.phone-status-arrow { font-size: 0.6rem; color: rgba(255,255,255,0.2); }

.phone-pay-header { text-align: center; margin-bottom: var(--space-3); }
.phone-pay-amount { font-size: 2rem; font-weight: 900; color: var(--teal); line-height: 1; margin: var(--space-1) 0; }

.phone-stripe-badge {
  display: flex; align-items: center; gap: var(--space-2); justify-content: center;
  background: rgba(45,212,168,0.08); border: 1px solid rgba(45,212,168,0.2);
  color: var(--teal); font-size: 0.65rem; font-weight: 700;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.phone-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: var(--space-3); }
.phone-stars { font-size: 0.9rem; letter-spacing: 2px; color: var(--teal); }

/* ─── VERIFICATION SECTION ─────────────── */
.verification-section {
  background: var(--charcoal);
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.verify-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition);
}
.verify-card:hover { border-color: rgba(45,212,168,0.35); transform: translateY(-3px); }

.verify-icon {
  width: 52px; height: 52px;
  background: rgba(45,212,168,0.08);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}

.verify-card h4 { font-size: var(--text-base); font-weight: 800; color: var(--white); margin-bottom: var(--space-3); }
.verify-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }

/* ─── WORKER FEATURES GRID ─────────────── */
.worker-features {
  background: var(--deep);
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(45, 212, 168, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.feature-icon {
  margin-bottom: var(--space-4);
}

.feature-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.5;
  max-width: 100%;
}

.features-cta { text-align: center; }

/* ─── HOW IT WORKS ─────────────────────── */
.how-it-works {
  background: var(--charcoal);
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
}

.hiw-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: clamp(var(--space-16), 6vw, var(--space-24));
}
.hiw-step:last-child { margin-bottom: 0; }
.hiw-step.reverse { direction: rtl; }
.hiw-step.reverse > * { direction: ltr; }

.hiw-number {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--teal);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.04em;
}

.hiw-headline {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.hiw-body {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 44ch;
}

.hiw-screen-body { padding: var(--space-6); }

.form-mock { display: flex; flex-direction: column; gap: var(--space-4); }
.form-row { display: flex; flex-direction: column; gap: var(--space-2); }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }

.form-label { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); }
.form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  font-size: 0.8rem; color: var(--white);
}
.form-select { display: flex; justify-content: space-between; }

.form-pills { display: flex; gap: var(--space-2); }
.form-pill {
  font-size: 0.65rem; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05); color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.07);
}
.form-pill.active { background: rgba(45,212,168,0.1); color: var(--teal); border-color: var(--teal); }

.form-submit {
  background: var(--teal); color: var(--deep);
  font-size: 0.8rem; font-weight: 700;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-full);
  text-align: center;
  cursor: pointer;
}

.match-row {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2);
  background: rgba(255,255,255,0.02);
}
.match-row.top { border-color: rgba(45,212,168,0.3); background: rgba(45,212,168,0.03); }

.match-rank { font-size: 0.65rem; font-weight: 800; color: var(--teal); width: 20px; }
.match-info { flex: 1; }
.match-name { font-size: 0.75rem; font-weight: 700; color: var(--white); }
.match-meta { font-size: 0.65rem; color: var(--text-muted); }
.match-badges { display: flex; flex-wrap: wrap; gap: 4px; }
.mbadge {
  font-size: 0.55rem; font-weight: 700;
  padding: 2px 6px; border-radius: var(--radius-full);
  background: rgba(45,212,168,0.08); color: var(--teal);
  border: 1px solid rgba(45,212,168,0.2);
}

.offer-confirm { text-align: center; }
.offer-check {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal); color: var(--deep);
  font-size: 1.5rem; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
}
.offer-title { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: var(--space-2); }
.offer-worker { font-size: 0.75rem; color: var(--text-muted); }
.offer-time { font-size: 1.1rem; font-weight: 800; color: var(--teal); margin: var(--space-2) 0 var(--space-4); }
.offer-details { display: flex; flex-direction: column; gap: var(--space-2); }
.offer-detail {
  display: flex; justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  font-size: 0.7rem;
}
.offer-detail span:first-child { color: var(--text-muted); }
.offer-detail span:last-child { color: var(--white); font-weight: 700; }

/* ─── COMPARISON ───────────────────────── */
.comparison-section {
  background: var(--deep);
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

.comparison-card {
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.comparison-card.old {
  background: var(--red-dim);
  border: 1px solid var(--red-border);
}

.comparison-card.new {
  background: rgba(45, 212, 168, 0.06);
  border: 2px solid var(--teal);
}

.comparison-label {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 800;
  margin-bottom: var(--space-6);
}
.old-label { color: #f87171; }
.new-label { color: var(--teal); }

.comparison-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-4); }
.comparison-list li {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font-size: var(--text-sm); line-height: 1.5;
}

.x-icon { color: #f87171; font-weight: 800; flex-shrink: 0; }
.check-icon { color: var(--teal); font-weight: 800; flex-shrink: 0; }

/* ─── TRUST SECTION ────────────────────── */
.trust-section {
  background: var(--charcoal);
  padding: clamp(var(--space-16), 7vw, var(--space-24)) 0;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.trust-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition);
}
.trust-card:hover { border-color: rgba(45,212,168,0.3); transform: translateY(-3px); }

.trust-icon {
  width: 64px; height: 64px;
  background: rgba(45,212,168,0.08);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-5);
}

.trust-card h4 { font-size: var(--text-base); font-weight: 800; color: var(--white); margin-bottom: var(--space-3); }
.trust-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; margin-bottom: var(--space-4); max-width: 100%; }

.trust-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  background: rgba(45,212,168,0.1); color: var(--teal);
  border: 1px solid rgba(45,212,168,0.25);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

/* ─── FINAL CTA SPLIT ──────────────────── */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(var(--space-12), 6vw, var(--space-20));
}

.cta-panel.dark { background: var(--charcoal); }
.cta-panel.teal { background: var(--teal); }

.cta-panel-inner { max-width: 400px; }

.cta-eyebrow {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-3);
}
.cta-eyebrow.dark-text { color: rgba(0,0,0,0.5); }

.cta-headline {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}
.cta-headline.dark-text { color: var(--deep); }

.cta-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-8);
  max-width: 36ch;
}
.cta-sub.dark-text { color: rgba(0,0,0,0.65); }

/* ─── FOOTER ───────────────────────────── */
.footer {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(var(--space-12), 5vw, var(--space-16)) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
}

.footer-logo {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: 1.1rem; font-weight: 800; color: var(--white);
  margin-bottom: var(--space-4);
}

.footer-tagline { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-3); }
.footer-legal { font-size: var(--text-xs); color: var(--gray-dark); }

.footer-col-title {
  font-size: var(--text-xs); font-weight: 800; color: var(--white);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-link {
  display: block;
  font-size: var(--text-sm); color: var(--text-muted);
  margin-bottom: var(--space-3);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--teal); }

/* ─── SCROLL ANIMATIONS ────────────────── */
.reveal, .reveal-grid {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-grid.visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-grid.visible .feature-card {
  animation: cardReveal 0.5s ease forwards;
}
.reveal-grid.visible .feature-card:nth-child(1) { animation-delay: 0s; }
.reveal-grid.visible .feature-card:nth-child(2) { animation-delay: 0.06s; }
.reveal-grid.visible .feature-card:nth-child(3) { animation-delay: 0.12s; }
.reveal-grid.visible .feature-card:nth-child(4) { animation-delay: 0.18s; }
.reveal-grid.visible .feature-card:nth-child(5) { animation-delay: 0.24s; }
.reveal-grid.visible .feature-card:nth-child(6) { animation-delay: 0.30s; }
.reveal-grid.visible .feature-card:nth-child(7) { animation-delay: 0.36s; }
.reveal-grid.visible .feature-card:nth-child(8) { animation-delay: 0.42s; }

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ───────────────────────── */
@media (max-width: 1024px) {
  .verification-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-block: var(--space-12);
  }
  .hero-demo { display: none; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }

  .stats-inner { flex-direction: column; gap: var(--space-6); }
  .stats-divider { width: 100%; height: 1px; margin: 0; }
  .stats-col { padding: var(--space-2) 0; }

  .trade-content.active { grid-template-columns: 1fr; }
  .trade-info { padding-left: 0; }

  .roster-features { grid-template-columns: 1fr; }
  .bench-layout { grid-template-columns: 1fr; }
  .bench-browser { transform: none; }
  .bench-browser:hover { transform: none; }

  .gig-step { grid-template-columns: 1fr; gap: var(--space-8); }
  .gig-step.reverse { direction: ltr; }
  .gig-phone { order: -1; }

  .verification-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }

  .hiw-step, .hiw-step.reverse { grid-template-columns: 1fr; direction: ltr; gap: var(--space-8); }

  .comparison-grid { grid-template-columns: 1fr; }

  .trust-cards { grid-template-columns: 1fr; }

  .cta-split { grid-template-columns: 1fr; }
  .cta-panel.teal { order: -1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .footer-brand { grid-column: 1 / -1; }

  .container { padding: 0 var(--space-5); }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .demo-window { width: 100%; max-width: 320px; }
}

/* ─── FEATURE DEMO BUTTON ──────────────── */
.feature-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-4);
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s, gap 0.2s;
}
.feature-demo-btn:hover { opacity: 1; gap: 7px; }

/* ─── FEATURE DEMO MODALS ──────────────── */
.fdm-overlay {
  position: fixed; inset: 0;
  background: rgba(10,12,18,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.fdm-overlay.open { opacity: 1; pointer-events: all; }

.fdm {
  background: white; border-radius: 20px;
  width: 100%; max-width: 520px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 32px 80px rgba(0,0,0,0.35);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden; max-height: 90vh; overflow-y: auto;
}
.fdm-overlay.open .fdm { transform: translateY(0) scale(1); }

.fdm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky; top: 0; background: white; z-index: 1;
}
.fdm-title { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; color: #1A1D23; }
.fdm-close {
  width: 30px; height: 30px; border-radius: 50%;
  border: none; background: #f3f4f6; color: #555; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.fdm-close:hover { background: #e5e7eb; }
.fdm-body { padding: 16px 20px; }
.fdm-browser { background: white; border: 1px solid rgba(0,0,0,0.09); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.fdm-bar { background: #f3f4f6; border-bottom: 1px solid rgba(0,0,0,0.07); padding: 8px 12px; display: flex; align-items: center; gap: 6px; }
.fdm-dot { width: 9px; height: 9px; border-radius: 50%; }
.fdm-dot.r{background:#FF5F56} .fdm-dot.y{background:#FFBD2E} .fdm-dot.g{background:#27C93F}
.fdm-url { font-size:10px; font-weight:500; color:#666; font-family:ui-monospace,monospace; margin-left:4px; }
.fdm-screen { display: none; animation: fdmFadeIn 0.35s ease; }
.fdm-screen.active { display: block; }
@keyframes fdmFadeIn { from{opacity:0;transform:translateY(5px)} to{opacity:1;transform:translateY(0)} }
.fdm-step-labels { display:flex; gap:6px; flex-wrap:wrap; margin-top:12px; justify-content:center; }
.fdm-step-label { font-size:10px; font-weight:600; padding:4px 10px; border-radius:20px; background:#f3f4f6; color:#aaa; cursor:pointer; transition:all 0.2s; }
.fdm-step-label.active { background:rgba(45,212,168,0.12); color:#1a8f74; }
.fdm-footer { padding:14px 20px; border-top:1px solid rgba(0,0,0,0.06); background:#fafafa; }
.fdm-cta { display:inline-flex; align-items:center; background:#2DD4A8; color:#0F1117; font-size:13px; font-weight:700; padding:10px 20px; border-radius:10px; text-decoration:none; transition:background 0.2s; }
.fdm-cta:hover { background:#1dbf96; }
.fdm-section-title { font-size:14px; font-weight:800; color:#1A1D23; margin-bottom:10px; }
.fdm-profile-top { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.fdm-profile-shell { padding:14px 16px; }
.fdm-avatar-lg { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; flex-shrink:0; }
.fdm-avatar-sm { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:800; flex-shrink:0; }
.fdm-name { font-size:14px; font-weight:800; color:#1A1D23; }
.fdm-trade { font-size:11px; color:#777; margin:2px 0; }
.fdm-badges { display:flex; gap:5px; margin-top:4px; }
.fdm-badge { font-size:9px; font-weight:700; padding:2px 7px; border-radius:10px; background:rgba(45,212,168,0.12); color:#1a8f74; }
.fdm-action-btn { width:100%; padding:9px; background:#2DD4A8; color:#0F1117; font-size:12px; font-weight:700; border:none; border-radius:8px; cursor:pointer; transition:background 0.2s; }
.fdm-action-btn:hover { background:#1dbf96; }
/* Video */
.fdm-video-empty { border:2px dashed #e5e7eb; border-radius:10px; padding:20px; text-align:center; color:#bbb; font-size:12px; display:flex; flex-direction:column; align-items:center; gap:8px; }
.fdm-record-shell { background:#0F1117; padding:20px; text-align:center; min-height:180px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; }
.fdm-record-indicator { display:flex; align-items:center; gap:6px; font-size:11px; font-weight:700; color:#ff4444; letter-spacing:0.06em; }
.fdm-rec-dot { width:8px; height:8px; border-radius:50%; background:#ff4444; animation:recPulse 1s ease-in-out infinite; }
@keyframes recPulse{0%,100%{opacity:1}50%{opacity:0.3}}
.fdm-camera-view { width:80px; height:80px; border-radius:50%; background:#1e2129; border:2px solid #2DD4A8; display:flex; align-items:center; justify-content:center; }
.fdm-camera-face { font-size:20px; font-weight:800; color:#2DD4A8; }
.fdm-record-timer { font-size:13px; font-weight:700; color:white; }
.fdm-record-bar { width:100%; height:4px; background:rgba(255,255,255,0.1); border-radius:2px; }
.fdm-record-progress { height:100%; width:70%; background:#2DD4A8; border-radius:2px; animation:progFill 2.5s ease-in-out infinite alternate; }
@keyframes progFill{from{width:60%}to{width:78%}}
.fdm-video-preview { display:flex; gap:12px; align-items:center; background:#f9fafb; border-radius:10px; padding:12px; }
.fdm-video-thumb { width:80px; height:52px; border-radius:7px; background:linear-gradient(135deg,#1A1D23,#2DD4A8); display:flex; align-items:center; justify-content:center; flex-shrink:0; position:relative; }
.fdm-play-btn { width:24px; height:24px; border-radius:50%; background:white; display:flex; align-items:center; justify-content:center; font-size:10px; color:#1A1D23; }
.fdm-video-duration { position:absolute; bottom:4px; right:5px; font-size:8px; color:white; font-weight:700; background:rgba(0,0,0,0.5); padding:1px 4px; border-radius:3px; }
.fdm-video-label { font-size:12px; font-weight:700; color:#1A1D23; }
.fdm-video-stat { font-size:10px; color:#888; margin-top:3px; }
.fdm-employer-card { display:flex; align-items:center; gap:10px; padding:10px 12px; border:1px solid rgba(0,0,0,0.08); border-radius:10px; background:white; margin-bottom:10px; }
.fdm-card-glow { border-color:rgba(45,212,168,0.4); box-shadow:0 0 0 3px rgba(45,212,168,0.1); }
.fdm-expert-badge { font-size:9px; font-weight:700; padding:1px 6px; background:rgba(45,212,168,0.15); color:#1a8f74; border-radius:8px; }
.fdm-video-plays { display:flex; align-items:center; gap:6px; font-size:11px; color:#555; font-weight:500; padding:8px 10px; background:rgba(45,212,168,0.07); border-radius:8px; border:1px solid rgba(45,212,168,0.2); }
/* Resume */
.fdm-data-row { display:flex; justify-content:space-between; padding:6px 0; border-bottom:1px solid rgba(0,0,0,0.05); font-size:12px; }
.fdm-data-label { color:#aaa; font-weight:600; }
.fdm-data-val { color:#1A1D23; font-weight:700; }
.fdm-generating { padding:24px 20px; text-align:center; min-height:180px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; }
.fdm-ai-icon { width:52px; height:52px; background:rgba(45,212,168,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; animation:aiPulse 1.4s ease-in-out infinite; }
@keyframes aiPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.08)}}
.fdm-gen-title { font-size:13px; font-weight:700; color:#1A1D23; }
.fdm-gen-lines { display:flex; flex-direction:column; gap:6px; width:100%; }
.fdm-gen-line { height:8px; border-radius:4px; background:linear-gradient(90deg,#e5e7eb 25%,#d1fae5 50%,#e5e7eb 75%); background-size:200% 100%; animation:shimmer 1.4s ease-in-out infinite; }
@keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
.fdm-resume-preview { padding:14px 16px; }
.fdm-resume-header { border-bottom:2px solid #2DD4A8; padding-bottom:10px; margin-bottom:10px; }
.fdm-resume-name { font-size:16px; font-weight:900; color:#1A1D23; }
.fdm-resume-contact { font-size:10px; color:#888; margin-top:2px; }
.fdm-resume-section { margin-bottom:10px; }
.fdm-resume-section-title { font-size:8px; font-weight:800; letter-spacing:0.1em; color:#2DD4A8; text-transform:uppercase; margin-bottom:3px; }
.fdm-resume-text { font-size:10px; color:#555; line-height:1.5; }
.fdm-dl-btn { width:100%; padding:9px; background:#1A1D23; color:white; font-size:12px; font-weight:700; border:none; border-radius:8px; cursor:pointer; margin-top:10px; transition:background 0.2s; }
.fdm-dl-btn:hover{background:#2a2f3a}
/* BGC */
.fdm-bgc-items { display:flex; flex-direction:column; gap:8px; }
.fdm-bgc-item { display:flex; align-items:center; gap:10px; font-size:12px; font-weight:600; color:#555; }
.fdm-check-circle { width:18px; height:18px; border-radius:50%; background:rgba(45,212,168,0.15); border:1.5px solid rgba(45,212,168,0.4); flex-shrink:0; position:relative; }
.fdm-check-circle::after { content:'✓'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:10px; color:#2DD4A8; font-weight:800; }
.fdm-badge-earned { display:flex; align-items:center; gap:14px; background:rgba(45,212,168,0.08); border:1.5px solid rgba(45,212,168,0.3); border-radius:12px; padding:14px; margin-bottom:8px; }
.fdm-badge-title { font-size:14px; font-weight:800; color:#1A1D23; }
.fdm-badge-sub { font-size:10px; color:#888; margin-top:2px; }
/* Equipment */
.fdm-equip-list { display:flex; flex-direction:column; gap:8px; }
.fdm-equip-row { display:flex; align-items:center; gap:10px; padding:9px 12px; border:1px solid rgba(0,0,0,0.07); border-radius:8px; background:#fafafa; }
.fdm-equip-icon { font-size:18px; }
.fdm-equip-tag { font-size:9px; font-weight:700; background:rgba(45,212,168,0.12); color:#1a8f74; padding:2px 7px; border-radius:8px; }
.fdm-equip-note { display:flex; align-items:center; gap:6px; font-size:11px; color:#555; font-weight:500; margin-top:10px; padding:8px 10px; background:rgba(45,212,168,0.07); border-radius:8px; border:1px solid rgba(45,212,168,0.2); }
.fdm-stat-big { font-size:48px; font-weight:900; color:#2DD4A8; line-height:1; }
.fdm-mini-stats { display:flex; justify-content:center; gap:20px; }
.fdm-mini-stat { text-align:center; }
.fdm-mini-num { font-size:18px; font-weight:900; color:#1A1D23; }
.fdm-mini-label { font-size:10px; color:#888; margin-top:2px; }

/* ─── HERO TRUST BAR ───────────────────── */
.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-3);
  margin-bottom: 0;
}
.hero-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}
.hero-trust-bar svg {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero-trust-bar {
    gap: var(--space-3);
    flex-direction: column;
  }
}
/* v5-deploy-1776533633 */

/* ─── PRODUCT DEMO (HERO) — LARGE ──────────── */
.demo-window-lg {
  width: 100%;
  max-width: 560px;
  background: #1A1D23;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 24px 64px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* Override hero-demo to handle larger mockup */
.hero-demo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-window-lg .demo-titlebar {
  background: #14171d;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.demo-traffic-lights { display: flex; gap: 6px; align-items: center; }
.demo-url-bar {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 12px;
  flex: 1; max-width: 220px;
}
.demo-url-text {
  font-size: 11px; color: #9ca3af;
  font-family: ui-monospace, monospace; font-weight: 500;
}

/* Step bar */
.demo-step-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.demo-step-pill {
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  color: #6b7280;
  background: transparent;
  transition: all 0.3s;
}
.demo-step-pill.active {
  background: rgba(45,212,168,0.15);
  color: #2DD4A8;
}
.demo-step-arrow { color: #374151; font-size: 12px; }

/* Demo body */
.demo-window-lg .demo-body { position: relative; min-height: 320px; overflow: hidden; }

/* State transitions */
.demo-window-lg .demo-state {
  display: none;
  animation: pdFadeSlide 0.45s cubic-bezier(0.22,1,0.36,1);
  padding: 18px 20px;
}
.demo-window-lg .demo-state.active { display: block; }
@keyframes pdFadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── State 1: Job posting form ── */
.pd-section-title {
  font-size: 14px; font-weight: 800; color: white;
  margin-bottom: 14px;
}
.pd-form { display: flex; flex-direction: column; gap: 12px; }
.pd-field { display: flex; flex-direction: column; gap: 4px; }
.pd-label { font-size: 10px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; }
.pd-input {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px; padding: 8px 11px;
  font-size: 12px; color: white; font-weight: 600;
  min-height: 34px; display: flex; align-items: center;
}
.pd-input.pd-typing { border-color: rgba(45,212,168,0.5); box-shadow: 0 0 0 2px rgba(45,212,168,0.1); }
.pd-input.pd-prefilled { color: rgba(255,255,255,0.7); }
.pd-cursor { color: #2DD4A8; animation: blink 0.8s infinite; margin-left: 1px; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.pd-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pd-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.pd-chip {
  font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12); color: #9ca3af; cursor: pointer;
}
.pd-chip.active { background: #2DD4A8; color: #0F1117; border-color: #2DD4A8; }
.pd-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pd-tag {
  font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 4px;
  background: rgba(99,102,241,0.15); color: #818cf8; border: 1px solid rgba(99,102,241,0.2);
}
.pd-submit-btn {
  background: #2DD4A8; color: #0F1117;
  font-size: 12px; font-weight: 800;
  padding: 10px; border-radius: 8px; border: none; cursor: pointer;
  margin-top: 4px; width: 100%;
  transition: background 0.2s;
}
.pd-submit-btn:hover { background: #1dbf96; }

/* ── State 2: Worker matches ── */
.pd-match-header { margin-bottom: 14px; }
.pd-match-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 800; color: white; margin-bottom: 3px;
}
.pd-match-sub { font-size: 11px; color: #6b7280; }
.pd-worker-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 12px;
  margin-bottom: 8px;
  animation: cardSlideIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.pd-card-1 { animation-delay: 0.05s; }
.pd-card-2 { animation-delay: 0.18s; }
.pd-card-3 { animation-delay: 0.31s; }
@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.pd-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.pd-winfo { flex: 1; }
.pd-wname { font-size: 12px; font-weight: 700; color: white; display: flex; align-items: center; gap: 5px; }
.pd-bgc { font-size: 9px; font-weight: 700; background: rgba(45,212,168,0.15); color: #2DD4A8; padding: 1px 5px; border-radius: 4px; }
.pd-wmeta { font-size: 10px; color: #6b7280; margin: 2px 0; }
.pd-wbadges { display: flex; gap: 4px; }
.pd-wb { font-size: 9px; font-weight: 600; padding: 1px 6px; border-radius: 4px; background: rgba(255,255,255,0.07); color: #9ca3af; }
.pd-hire-btn {
  background: #2DD4A8; color: #0F1117;
  font-size: 10px; font-weight: 800;
  padding: 5px 12px; border-radius: 20px; border: none; cursor: pointer;
  white-space: nowrap;
}

/* ── State 3: Confirmed ── */
.pd-confirm-wrap {
  text-align: center; padding: 16px 0 18px;
}
.pd-confirm-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(45,212,168,0.12);
  border: 2px solid #2DD4A8;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  animation: confirmPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes confirmPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.pd-confirm-title { font-size: 11px; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.pd-confirm-name { font-size: 22px; font-weight: 900; color: white; line-height: 1.1; }
.pd-confirm-time { font-size: 15px; font-weight: 700; color: #2DD4A8; margin: 4px 0; }
.pd-confirm-job { font-size: 11px; color: #6b7280; }
.pd-timeline { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.pd-tl-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
}
.pd-tl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #374151; flex-shrink: 0;
}
.pd-tl-row.done .pd-tl-dot { background: #2DD4A8; }
.pd-tl-row.active .pd-tl-dot { background: #2DD4A8; }
.pd-tl-dot.pulse { animation: tlPulse 1.2s ease-in-out infinite; }
@keyframes tlPulse { 0%,100%{box-shadow:0 0 0 0 rgba(45,212,168,0.4)} 50%{box-shadow:0 0 0 5px rgba(45,212,168,0)} }
.pd-tl-text { flex: 1; color: #9ca3af; font-weight: 600; }
.pd-tl-row.done .pd-tl-text { color: #d1d5db; }
.pd-tl-time { color: #4b5563; font-size: 10px; font-weight: 500; }

/* Progress bar at bottom */
.demo-progress-bar {
  height: 3px; background: rgba(255,255,255,0.06);
}
.demo-progress-fill {
  height: 100%; background: #2DD4A8;
  width: 0%; transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}
/* deploy-1776535196 */
