/* ================================================================
   RemoteHerd Landing v2 — editorial redesign (v2 update)
   ================================================================ */

/* ── CSS VARIABLES ───────────────────────────────────────────── */
.lv2 {
  --ink:    #0B0A4E;
  --mint:   #56FFBD;
  --mint2:  #0BCF92;
  --white:  #FFFFFF;
  --off:    #F5F5F0;
  --gray:   #8A8FA8;
  --border: rgba(11,10,78,.10);
  --ease:   cubic-bezier(0.16,1,0.3,1);
}

/* ── NOISE TEXTURE ───────────────────────────────────────────── */
.lv2::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .02;
  pointer-events: none;
  z-index: 9999;
}

/* ── BASE ────────────────────────────────────────────────────── */
.lv2 a { text-decoration: none; color: inherit; }
.lv2 button { font-family: inherit; cursor: pointer; border: none; }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes lv2-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lv2-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes lv2-ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.lv2 .fade-up { opacity: 0; animation: lv2-fade-up .7s var(--ease) forwards; }
.lv2 .d1 { animation-delay: .05s; }
.lv2 .d2 { animation-delay: .15s; }
.lv2 .d3 { animation-delay: .25s; }
.lv2 .d4 { animation-delay: .35s; }
.lv2 .d5 { animation-delay: .50s; }

.lv2 .hv { transition: transform .3s var(--ease), box-shadow .3s; }
.lv2 .hv:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(11,10,78,.12); }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.lv2-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.lv2-italic-light { font-style: italic; font-weight: 300; }
.lv2-mint { color: var(--mint); }

/* ── SECTION LABELS / HEADERS ────────────────────────────────── */
.lv2-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--gray);
}
.lv2-section-label--mint   { color: rgba(86,255,189,.45); }
.lv2-section-label--ink-faint { color: rgba(86,255,189,.45); }

.lv2-section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
}
.lv2-section-title--white { color: #fff; }

.lv2-section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.lv2-section-desc { font-size: 15px; color: var(--gray); line-height: 1.75; }
.lv2-section-desc--right { max-width: 300px; text-align: right; }
.lv2-section-desc--white { color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.lv2-hero {
  background: var(--ink);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 48px 0 80px;
  overflow: hidden;
  position: relative;
}

.lv2-hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(86,255,189,.10);
}
.lv2-hero-circle--lg { width: 520px; height: 520px; top: -120px; right: -120px; }
.lv2-hero-circle--sm { width: 360px; height: 360px; top: -80px; right: -80px; border-color: rgba(86,255,189,.06); }

.lv2-section-num {
  position: absolute;
  bottom: 48px; left: 48px;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.25);
  letter-spacing: .15em; text-transform: uppercase;
}

.lv2-hero .lv2-container { width: 100%; }

.lv2-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Copy side — always left-aligned (override global h1 { text-align: center }) ── */
.lv2-hero-copy { text-align: left; }
.lv2 .lv2-hero-headline { text-align: left; }
.lv2 h1 { text-align: left; }

.lv2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(86,255,189,.10);
  border: 1px solid rgba(86,255,189,.22);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--mint);
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.lv2-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint); flex-shrink: 0;
}

.lv2-hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.lv2-hero-headline .lv2-italic-light { color: var(--mint); }
.lv2-hero-headline .lv2-mint { color: var(--mint); }

.lv2-hero-sub {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,.55);
  max-width: 480px; margin-bottom: 40px;
}

.lv2-search {
  display: flex; gap: 10px;
  max-width: 520px; margin-bottom: 40px;
}
.lv2-search-input {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center;
  padding: 0 16px; gap: 10px;
  backdrop-filter: blur(8px);
}
.lv2-search-icon { font-size: 14px; color: rgba(255,255,255,.35); flex-shrink: 0; }
.lv2-search-input input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #fff; font-size: 15px; font-family: inherit; padding: 14px 0;
}
.lv2-search-input input::placeholder { color: rgba(255,255,255,.35); }
.lv2-search-btn {
  background: var(--mint); color: var(--ink);
  padding: 0 24px; border-radius: 10px;
  font-weight: 700; font-size: 14px; white-space: nowrap;
  transition: filter .2s; cursor: pointer;
}
.lv2-search-btn:hover { filter: brightness(1.08); }

.lv2-hero-stats { display: flex; gap: 32px; }
.lv2-hero-stat-n { font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.lv2-hero-stat-l { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; font-weight: 500; }

/* ── Job pills side ── */
.lv2-hero-jobs { position: relative; display: flex; flex-direction: column; gap: 12px; }
.lv2-deco-num {
  position: absolute; top: -40px; right: -20px;
  font-size: 200px; font-weight: 900;
  color: rgba(86,255,189,.04);
  line-height: 1; pointer-events: none; user-select: none; letter-spacing: -0.05em;
}

.lv2-job-pill {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 14px 18px;
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: background .25s, box-shadow .25s, transform .25s;
}
.lv2-job-pill:hover { background: rgba(255,255,255,.13); box-shadow: 0 12px 32px rgba(0,0,0,.2); }
.lv2-job-pill--offset { transform: translateX(32px); }
.lv2-job-pill--offset:hover { transform: translateX(32px) translateY(-4px); }

.lv2-pill-logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--mint); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--ink); flex-shrink: 0; text-transform: uppercase;
}
.lv2-pill-info { flex: 1; min-width: 0; }
.lv2-pill-role { font-size: 15px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lv2-pill-co   { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.lv2-pill-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.lv2-pill-salary {
  font-size: 13px; font-weight: 700; color: var(--mint);
  background: rgba(86,255,189,.12); padding: 3px 8px; border-radius: 6px;
}
.lv2-pill-loc { font-size: 11px; color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════════ */
.lv2-marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden; background: var(--off);
}
.lv2-marquee-track {
  display: flex; width: max-content;
  animation: lv2-marquee 28s linear infinite;
}
.lv2-marquee-track:hover { animation-play-state: paused; }
.lv2-marquee-item {
  display: inline-flex; align-items: center; gap: 32px;
  padding: 0 32px; font-size: 14px; font-weight: 600;
  color: var(--ink); opacity: .5; white-space: nowrap;
}
.lv2-marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--mint); display: inline-block; flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES — Interactive Spotlight (dark indigo bg)
   ═══════════════════════════════════════════════════════════════ */
.lv2-features {
  padding: 96px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
/* Dot grid background */
.lv2-features::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(86,255,189,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86,255,189,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.lv2-features .lv2-container { position: relative; z-index: 1; }

.lv2-feat-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 56px; gap: 24px;
}

/* Left: accordion list */
.lv2-feat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.lv2-feat-list { display: flex; flex-direction: column; gap: 4px; }

.lv2-feat-item {
  border-radius: 16px;
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: all .3s var(--ease);
  overflow: hidden;
}
.lv2-feat-item--active {
  padding: 24px 28px;
  background: rgba(86,255,189,.08);
  border-color: rgba(86,255,189,.25);
}
.lv2-feat-item-top {
  display: flex; align-items: center; gap: 16;
}
.lv2-feat-num {
  font-size: 12px; font-weight: 800;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em; min-width: 28px;
  transition: color .3s;
}
.lv2-feat-item--active .lv2-feat-num { color: var(--mint); }

.lv2-feat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s; font-size: 16px;
  color: rgba(255,255,255,.3);
}
.lv2-feat-item--active .lv2-feat-icon {
  background: rgba(86,255,189,.15); color: var(--mint);
}

.lv2-feat-text { flex: 1; }
.lv2-feat-title {
  font-size: 16px; font-weight: 800;
  color: rgba(255,255,255,.5);
  margin-bottom: 2px; transition: color .3s;
}
.lv2-feat-item--active .lv2-feat-title { color: #fff; }

.lv2-feat-sub { font-size: 12px; color: rgba(255,255,255,.2); transition: color .3s; }
.lv2-feat-item--active .lv2-feat-sub { color: rgba(255,255,255,.45); }

.lv2-feat-arrow {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s;
  font-size: 10px; color: rgba(255,255,255,.2);
}
.lv2-feat-arrow i { transition: transform .3s; }
.lv2-feat-item--active .lv2-feat-arrow {
  background: var(--mint); color: var(--ink);
}
.lv2-feat-item--active .lv2-feat-arrow i { transform: rotate(-45deg); }

.lv2-feat-body {
  display: none;
  margin-top: 16px;
  padding-left: 44px;
  animation: lv2-fade-up .3s both;
}
.lv2-feat-item--active .lv2-feat-body { display: block; }
.lv2-feat-body p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.lv2-feat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.lv2-feat-tag {
  font-size: 11px; font-weight: 700; color: var(--mint);
  background: rgba(86,255,189,.10);
  padding: 4px 10px; border-radius: 6px;
  border: 1px solid rgba(86,255,189,.15);
  letter-spacing: .03em;
}

/* Right: preview panel */
.lv2-feat-preview {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column;
  min-height: 480px;
  position: sticky; top: 80px;
}
.lv2-preview-chrome {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lv2-preview-dots { display: flex; gap: 6px; }
.lv2-preview-dot {
  width: 10px; height: 10px; border-radius: 50%; opacity: .7;
}
.lv2-preview-title {
  flex: 1; text-align: center;
  font-size: 11px; color: rgba(255,255,255,.25);
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.lv2-preview-body { flex: 1; position: relative; }

/* Preview panels — show/hide */
.lv2-pv { display: none; width: 100%; height: 100%; }
.lv2-pv--active { display: flex; flex-direction: column; gap: 10px; padding: 8px;
  animation: lv2-fade-up .3s both; }

/* small-co preview */
.lv2-pv-job {
  background: rgba(255,255,255,.06); border-radius: 12px;
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.08);
}
.lv2-pv-logo {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--mint); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--ink); flex-shrink: 0;
}
.lv2-pv-role { font-size: 13px; font-weight: 700; color: #fff; }
.lv2-pv-co-emp { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; }
.lv2-pv-salary { font-size: 13px; font-weight: 800; color: var(--mint); text-align: right; }
.lv2-pv-tag-sm { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 1px; text-align: right; }
.lv2-pv-footer {
  margin-top: 4px; padding: 10px 16px;
  background: rgba(86,255,189,.08); border-radius: 10px;
  border: 1px dashed rgba(86,255,189,.2);
  text-align: center; font-size: 12px;
  color: rgba(86,255,189,.7); font-weight: 600;
}

/* analytics preview */
.lv2-pv-skill-row { margin-bottom: 10px; }
.lv2-pv-skill-head { display: flex; justify-content: space-between; margin-bottom: 5px; }
.lv2-pv-skill-name { font-size: 13px; font-weight: 600; color: #fff; }
.lv2-pv-skill-delta { font-size: 11px; font-weight: 700; color: var(--mint); }
.lv2-pv-bar-track { height: 6px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden; }
.lv2-pv-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mint2), var(--mint));
  border-radius: 3px; transition: width .6s;
}

/* filters preview */
.lv2-pv-filter {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05); border-radius: 10px;
  padding: 10px 14px; border: 1px solid rgba(255,255,255,.07);
}
.lv2-pv-filter-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(86,255,189,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 12px; color: var(--mint);
}
.lv2-pv-filter-label { font-size: 10px; color: rgba(255,255,255,.35); margin-bottom: 2px; }
.lv2-pv-filter-value { font-size: 13px; font-weight: 600; color: #fff; }
.lv2-pv-check {
  width: 20px; height: 20px; border-radius: 5px;
  background: var(--mint); display: flex; align-items: center; justify-content: center;
  margin-left: auto; flex-shrink: 0; font-size: 9px; color: var(--ink);
}

/* alerts preview */
.lv2-pv-alert {
  display: flex; align-items: center; gap: 12px;
  border-radius: 12px; padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.04);
}
.lv2-pv-alert--hot {
  background: rgba(86,255,189,.09);
  border-color: rgba(86,255,189,.2);
}
.lv2-pv-alert-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); flex-shrink: 0;
}
.lv2-pv-alert--hot .lv2-pv-alert-dot {
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}
.lv2-pv-alert-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); }
.lv2-pv-alert--hot .lv2-pv-alert-text { color: #fff; }
.lv2-pv-alert-time { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 2px; }
.lv2-pv-alert i { font-size: 11px; color: rgba(255,255,255,.2); margin-left: auto; flex-shrink: 0; }
.lv2-pv-alert--hot i { color: var(--mint); }

/* api preview */
.lv2-pv-code {
  background: #0a0918; border-radius: 12px;
  padding: 16px 18px; height: 100%; overflow: hidden;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 12px; line-height: 1.7;
  border: 1px solid rgba(86,255,189,.15);
}
.lv2-pv-code-endpoint { color: rgba(255,255,255,.3); margin-bottom: 8px; font-size: 11px; }
.lv2-pv-code-str { color: rgba(86,255,189,.9); }
.lv2-pv-code-num { color: #7dd3fc; }
.lv2-pv-code-key { color: #c4b5fd; }
.lv2-pv-code-muted { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════════
   LIVE DATA SEPARATOR (mint strip)
   ═══════════════════════════════════════════════════════════════ */
.lv2-data-sep {
  background: var(--mint);
  padding: 0 48px; height: 56px;
  display: flex; align-items: center;
  justify-content: space-between; overflow: hidden;
}
.lv2-sep-left { display: flex; align-items: center; gap: 10px; }
.lv2-sep-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink); box-shadow: 0 0 0 3px rgba(11,10,78,.15);
}
.lv2-sep-label {
  font-size: 12px; font-weight: 800; color: var(--ink);
  letter-spacing: .12em; text-transform: uppercase;
}
.lv2-sep-regions { display: flex; gap: 24px; }
.lv2-sep-region { font-size: 12px; font-weight: 600; color: rgba(11,10,78,.5); }

/* ═══════════════════════════════════════════════════════════════
   LIVE NUMBERS — white bg with sparklines
   ═══════════════════════════════════════════════════════════════ */
.lv2-numbers {
  background: var(--white);
  padding: 80px 0 64px;
  position: relative; overflow: hidden;
}
.lv2-numbers-rule {
  position: absolute; top: 0; left: 48px; right: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.lv2-numbers-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 56px; gap: 24px;
}

.lv2-live-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink); border-radius: 12px; padding: 12px 20px;
  flex-shrink: 0;
}
.lv2-live-ping {
  position: relative; display: flex;
  width: 10px; height: 10px; flex-shrink: 0;
}
.lv2-live-ping-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: var(--mint); opacity: .5;
  animation: lv2-ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
.lv2-live-ping-dot {
  position: relative; width: 10px; height: 10px;
  border-radius: 50%; background: var(--mint); display: block;
}
.lv2-live-badge-text { font-size: 13px; font-weight: 700; color: #fff; }
.lv2-live-badge-sub { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 500; }

/* Stat cards grid */
.lv2-stat-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 40px; }

.lv2-stat-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px 28px 20px;
  background: #fff;
  transition: all .25s var(--ease);
  cursor: default;
}
.lv2-stat-card:hover {
  background: var(--off);
  box-shadow: 0 12px 32px rgba(11,10,78,.07);
}
.lv2-stat-card-label {
  font-size: 11px; font-weight: 700; color: var(--gray);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px;
}
.lv2-stat-card-num {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 900; color: var(--ink);
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px;
}
.lv2-stat-sparkline { margin: 0 -4px 16px; opacity: .55; transition: opacity .3s; }
.lv2-stat-card:hover .lv2-stat-sparkline { opacity: 1; }
.lv2-stat-sparkline svg { width: 100%; height: 48px; display: block; }

.lv2-stat-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.lv2-stat-trend-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(16,185,129,.10); color: #059669;
  padding: 4px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 700;
}
.lv2-stat-trend-badge i { font-size: 9px; }
.lv2-stat-period { font-size: 11px; color: var(--gray); }

/* Border color variants */
.lv2-stat-card--mint:hover  { border-color: var(--mint); }
.lv2-stat-card--blue:hover  { border-color: #7dd3fc; }
.lv2-stat-card--purple:hover { border-color: #c4b5fd; }

/* Category breakdown */
.lv2-cat-panel {
  border: 1px solid var(--border); border-radius: 16px;
  padding: 24px 28px; background: var(--off);
}
.lv2-cat-label {
  font-size: 11px; font-weight: 700; color: var(--gray);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
.lv2-cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px 32px; }
.lv2-cat-row-head {
  display: flex; justify-content: space-between; margin-bottom: 6px;
}
.lv2-cat-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.lv2-cat-count { font-size: 12px; font-weight: 700; color: var(--gray); }
.lv2-cat-bar-track { height: 5px; background: var(--border); border-radius: 3px; overflow: hidden; }
.lv2-cat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mint2), var(--mint));
  border-radius: 3px;
  transition: width .8s var(--ease);
}

/* ═══════════════════════════════════════════════════════════════
   JOBS SECTION
   ═══════════════════════════════════════════════════════════════ */
.lv2-jobs-section { padding: 96px 0; background: var(--off); }

.lv2-browse-all {
  font-size: 14px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 6px;
  opacity: .6; transition: opacity .2s;
}
.lv2-browse-all:hover { opacity: 1; }

.lv2-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.lv2-filter-pill {
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border);
  background: #fff; color: var(--ink);
  transition: background .2s, color .2s, border-color .2s; cursor: pointer;
}
.lv2-filter-pill--active,
.lv2-filter-pill:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.lv2-job-list { display: flex; flex-direction: column; gap: 12px; }

.lv2-job-row {
  display: flex; align-items: center; gap: 20px;
  background: #fff; border: 1px solid transparent;
  border-radius: 16px; padding: 20px 24px;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  box-shadow: 0 2px 8px rgba(11,10,78,.04);
}
.lv2-job-row:hover {
  border-color: var(--mint);
  box-shadow: 0 8px 32px rgba(11,10,78,.08);
  transform: translateY(-2px);
}
.lv2-job-row.hidden { display: none; }

.lv2-row-logo {
  width: 52px; height: 52px; border-radius: 13px;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; color: var(--mint);
  flex-shrink: 0; text-transform: uppercase;
  transition: background .25s, color .25s;
}
.lv2-job-row:hover .lv2-row-logo { background: var(--mint); color: var(--ink); }

.lv2-row-info { flex: 1; min-width: 0; }
.lv2-row-role { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lv2-row-meta { font-size: 13px; color: var(--gray); }

.lv2-row-tag { font-size: 12px; font-weight: 700; color: var(--ink); background: var(--off); padding: 5px 12px; border-radius: 6px; white-space: nowrap; }
.lv2-row-salary { font-size: 16px; font-weight: 800; color: var(--ink); min-width: 80px; text-align: right; white-space: nowrap; }
.lv2-row-arrow {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--off); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .25s; font-size: 13px; color: var(--ink);
}
.lv2-job-row:hover .lv2-row-arrow { background: var(--mint); }

/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.lv2-pricing { padding: 96px 0; background: var(--white); }
.lv2-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }

.lv2-plan {
  border-radius: 20px; overflow: hidden;
  border: 2px solid var(--border); cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  background: #fff;
}
.lv2-plan:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(11,10,78,.08); }
.lv2-plan--hot { background: var(--ink); border-color: var(--mint); }
.lv2-plan--hot:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(11,10,78,.25); }

.lv2-plan-badge { background: var(--mint); color: var(--ink); font-size: 11px; font-weight: 800; text-align: center; padding: 8px; letter-spacing: .08em; text-transform: uppercase; }
.lv2-plan-inner { padding: 32px 28px; }
.lv2-plan-desc  { font-size: 13px; font-weight: 700; color: var(--gray); margin-bottom: 8px; }
.lv2-plan--hot .lv2-plan-desc { color: rgba(255,255,255,.5); }
.lv2-plan-name  { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.lv2-plan--hot .lv2-plan-name { color: #fff; }

.lv2-plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px; }
.lv2-price-currency { font-size: 14px; font-weight: 700; color: var(--gray); align-self: flex-start; margin-top: 6px; }
.lv2-plan--hot .lv2-price-currency { color: var(--mint); }
.lv2-price-num { font-size: 56px; font-weight: 900; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.lv2-plan--hot .lv2-price-num { color: var(--mint); }
.lv2-price-per { font-size: 14px; color: var(--gray); margin-bottom: 4px; }
.lv2-plan--hot .lv2-price-per { color: rgba(255,255,255,.4); }

.lv2-plan-features { list-style: none; padding: 0; margin-bottom: 28px; }
.lv2-plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); padding: 8px 0; border-bottom: 1px solid var(--border); }
.lv2-plan--hot .lv2-plan-features li { color: rgba(255,255,255,.8); border-bottom-color: rgba(255,255,255,.07); }
.lv2-plan-features li i { font-size: 11px; color: var(--mint); flex-shrink: 0; }

.lv2-plan-btn,
.lv2 .lv2-plan-btn {
  display: block; width: 100%; padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-align: center;
  background: var(--ink); color: #fff !important;
  transition: filter .2s;
}
.lv2-plan-btn:hover,
.lv2 .lv2-plan-btn:hover { filter: brightness(1.12); color: #fff !important; }
.lv2-plan--hot .lv2-plan-btn,
.lv2 .lv2-plan--hot .lv2-plan-btn { background: var(--mint); color: var(--ink) !important; }

.lv2-pricing-note { text-align: center; margin-top: 32px; font-size: 13px; color: var(--gray); }
.lv2-pricing-note i { color: var(--mint); margin-right: 6px; }

/* ── Pricing compare table (design system) ── */
/* Wrapper handles the visual card shape; overflow:hidden on <table> is not reliable */
.lv2-pc-wrap {
  overflow: hidden;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 32px rgba(11,10,78,.06);
  overflow-x: auto; /* horizontal scroll on small screens */
}

.lv2-pc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 14px;
  min-width: 560px; /* prevent collapse on very narrow screens */
}

/* Header row */
.lv2-pc-header th {
  padding: 0;
  vertical-align: bottom;
  border-bottom: 1.5px solid var(--border);
  text-align: left;
}
.lv2-pc-header th:first-child {
  padding: 28px 28px 24px;
  background: #fff;
  vertical-align: bottom;
  border-radius: 20px 0 0 0; /* top-left corner of table */
}
.lv2-pc-header th:last-child { border-radius: 0 20px 0 0; } /* top-right corner */
.lv2-pc-row:last-child td:first-child { border-radius: 0 0 0 20px; }
.lv2-pc-row:last-child td:last-child  { border-radius: 0 0 20px 0; }
.lv2-pc-tl-label { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.lv2-pc-tl-sub   { font-size: 13px; color: var(--gray); font-weight: 400; }

.lv2-pc-head {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lv2-pc-head--hot { background: var(--ink); }

.lv2-pc-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink); background: var(--mint);
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: 6px; width: fit-content;
}
.lv2-pc-name          { font-size: 13px; font-weight: 700; color: var(--gray); margin-bottom: 2px; }
.lv2-pc-name--hot     { color: rgba(255,255,255,.5); }
.lv2-pc-price         { font-size: 26px; font-weight: 900; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.lv2-pc-price--hot    { color: #fff; }
.lv2-pc-period        { font-size: 12px; font-weight: 500; color: var(--gray); margin-top: 3px; }
.lv2-pc-period--hot   { color: rgba(255,255,255,.35); }

.lv2-pc-btn {
  display: block; margin-top: 14px;
  text-align: center; text-decoration: none;
  padding: 10px 14px; border-radius: 10px;
  font-size: 12px; font-weight: 700;
  transition: filter .15s, transform .15s;
}
.lv2-pc-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.lv2-pc-btn--ghost { border: 1.5px solid var(--border); color: var(--ink) !important; }
.lv2-pc-btn--ghost:hover { border-color: var(--ink); }
.lv2-pc-btn--mint  { background: var(--mint); color: var(--ink) !important; border: none; }
.lv2-pc-btn--ink   { background: var(--ink); color: #fff !important; border: none; }

/* Group header rows */
.lv2-pc-group td {
  padding: 12px 28px 8px;
  font-size: 10px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray); background: var(--off);
  border-top: 1.5px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lv2-pc-group td.lv2-pc-feat-col { background: rgba(11,10,78,.04); }

/* Feature rows */
.lv2-pc-row td {
  padding: 14px 20px;
  color: var(--ink);
  border-bottom: 1px solid rgba(11,10,78,.06);
  vertical-align: middle;
}
.lv2-pc-row td:first-child { padding-left: 28px; font-weight: 500; color: #3a3960; }
.lv2-pc-row td.lv2-pc-feat-col { background: rgba(11,10,78,.02); }
.lv2-pc-row--last td { border-bottom: none; }
.lv2-pc-c { text-align: center; }

/* Check / Cross */
.lv2-pc-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(11,185,130,.12);
  display: inline-flex; align-items: center; justify-content: center;
}
.lv2-pc-check svg { width: 12px; height: 12px; }
.lv2-pc-cross {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(11,10,78,.06);
  display: inline-flex; align-items: center; justify-content: center;
}
.lv2-pc-cross svg { width: 10px; height: 10px; }

/* Pills */
.lv2-pc-pill { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.lv2-pc-pill--dim  { background: rgba(11,10,78,.07); color: #5a5980; }
.lv2-pc-pill--mint { background: rgba(11,185,130,.12); color: var(--mint2); }

/* ═══════════════════════════════════════════════════════════════
   CTA — mint bg
   ═══════════════════════════════════════════════════════════════ */
.lv2-cta {
  background: var(--mint);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
/* Decorative elements (unused but kept for structure) */
.lv2-cta-glow-tl, .lv2-cta-glow-br, .lv2-cta-rule { display: none; }

/* Ghost text */
.lv2-cta-deco {
  position: absolute; bottom: -80px; right: -40px;
  font-size: 260px; font-weight: 900;
  color: rgba(11,10,78,.06);
  line-height: 1; letter-spacing: -0.06em;
  user-select: none; pointer-events: none;
}

.lv2-cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}

/* Left side */
.lv2-cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; color: var(--ink);
  letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 24px;
}
.lv2-cta-title .lv2-italic-light { color: var(--ink); }
.lv2-cta-sub {
  font-size: 17px; color: rgba(11,10,78,.6); line-height: 1.75; max-width: 420px; margin-bottom: 36px;
}

.lv2-cta-proof { display: flex; align-items: center; gap: 12px; }
.lv2-cta-avatars { display: flex; }
.lv2-cta-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--mint); overflow: hidden;
  background: var(--ink);
}
.lv2-cta-avatar:not(:first-child) { margin-left: -10px; }
.lv2-cta-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lv2-cta-proof-text { font-size: 13px; color: rgba(11,10,78,.5); font-weight: 500; }

/* Right side */
.lv2-cta-right { display: flex; flex-direction: column; gap: 16px; max-width: 400px; }
.lv2-cta-feature {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 12px;
  background: rgba(11,10,78,.07);
}
.lv2-cta-feature i { font-size: 16px; color: var(--ink); flex-shrink: 0; }
.lv2-cta-feature span { font-size: 15px; font-weight: 600; color: var(--ink); }

.lv2-cta-buttons { display: flex; gap: 12px; margin-top: 8px; }
.lv2-cta-btn-primary,
.lv2 .lv2-cta-btn-primary {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: #56FFBD !important;
  padding: 16px; border-radius: 12px; font-weight: 800; font-size: 16px;
  transition: filter .2s, transform .2s;
}
.lv2-cta-btn-primary:hover,
.lv2 .lv2-cta-btn-primary:hover { filter: brightness(1.2); transform: translateY(-2px); color: #56FFBD !important; }
.lv2-cta-btn-secondary,
.lv2 .lv2-cta-btn-secondary {
  padding: 16px 20px; border-radius: 12px;
  background: rgba(11,10,78,.10); color: #0B0A4E !important;
  font-weight: 600; font-size: 15px;
  transition: background .2s;
}
.lv2-cta-btn-secondary:hover,
.lv2 .lv2-cta-btn-secondary:hover { background: rgba(11,10,78,.18); color: #0B0A4E !important; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lv2-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .lv2-hero-jobs { display: none; }
  .lv2-feat-layout { grid-template-columns: 1fr; }
  .lv2-feat-preview { display: none; }
  .lv2-stat-cards { grid-template-columns: 1fr; }
  .lv2-cat-grid { grid-template-columns: 1fr 1fr; }
  .lv2-plans-grid { grid-template-columns: 1fr; max-width: 400px; }
  .lv2-cta-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .lv2-container { padding: 0 20px; }
  .lv2-hero { padding: 36px 0 56px; min-height: auto; }
  .lv2-features, .lv2-numbers, .lv2-jobs-section, .lv2-pricing, .lv2-cta { padding: 56px 0; }
  .lv2-section-head--split { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lv2-section-desc--right { text-align: left; max-width: 100%; }
  .lv2-feat-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lv2-numbers-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .lv2-cat-grid { grid-template-columns: 1fr; }
  .lv2-plans-grid { max-width: 100%; }
  .lv2-cta-rule { left: 20px; right: 20px; }
  .lv2-data-sep { padding: 0 20px; height: auto; padding-top: 14px; padding-bottom: 14px; }
  .lv2-sep-regions { display: none; }
  .lv2-job-row { flex-wrap: wrap; gap: 12px; }
  .lv2-row-tag { display: none; }
  .lv2-row-salary { min-width: auto; }
  .lv2-stat-cards { grid-template-columns: 1fr; }
  /* Hero headline */
  .lv2-hero-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .lv2-hero-sub { font-size: 16px; }
  .lv2-hero-stats { gap: 20px; }
  /* Search bar */
  .lv2-search { flex-direction: column; gap: 8px; }
  .lv2-search-btn { padding: 14px; }
  /* CTA grid */
  .lv2-cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .lv2-cta-right { max-width: 100%; }
  .lv2-cta-buttons { flex-direction: column; }
  .lv2-cta-btn-secondary { width: 100%; text-align: center; }
  /* Pricing compare table */
  .lv2-plan--hot { order: -1; }
  .lv2-pc-table { font-size: 12px; border-radius: 14px; }
  .lv2-pc-head  { padding: 16px 12px; }
  .lv2-pc-price { font-size: 20px; }
  .lv2-pc-btn   { font-size: 11px; padding: 8px 10px; }
  .lv2-pc-row td, .lv2-pc-group td { padding: 12px 10px; }
  .lv2-pc-row td:first-child { padding-left: 14px; }
  .lv2-pc-group td { padding-left: 14px; }
  /* Jobs */
  .lv2-job-row { padding: 16px; }
  .lv2-row-logo { width: 42px; height: 42px; border-radius: 10px; font-size: 16px; }
}

@media (max-width: 480px) {
  .lv2-container { padding: 0 16px; }
  .lv2-hero { padding: 28px 0 48px; }
  .lv2-hero-headline { font-size: clamp(2rem, 9vw, 2.8rem); }
  .lv2-hero-stats { gap: 16px; }
  .lv2-hero-stat-n { font-size: 20px; }
  .lv2-eyebrow { font-size: 11px; }
  .lv2-section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .lv2-cat-panel { padding: 20px; }
  .lv2-stat-card { padding: 20px; }
  .lv2-plan-inner { padding: 24px 20px; }
  .lv2-price-num { font-size: 44px; }
  .lv2-feat-item { padding: 14px 20px; }
  .lv2-feat-item--active { padding: 18px 20px; }
  .lv2-cta-title { font-size: clamp(2rem, 7vw, 3rem); }
  .lv2-data-sep { flex-direction: column; align-items: flex-start; gap: 6px; height: auto; padding: 14px 16px; }
}
